Skip to content

Commit

Permalink
fix services bug
Browse files Browse the repository at this point in the history
  • Loading branch information
bbengfort committed Aug 21, 2024
1 parent 1d4ce7d commit 4524e42
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/envoy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.16.0
version: 0.16.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
3 changes: 3 additions & 0 deletions charts/envoy/templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ You can reach your application via the following endpoints:
{{- if .Values.trisa.node.enabled }}
- TRISA Node: {{ .Values.trisa.endpoint }}
{{- end }}
{{- if .Values.trisa.trp.enabled }}
- TRP Endpoint: {{ .Values.trisa.trp.endpoint }}
{{- end }}

Your release is named {{ .Release.Name }} and your application is defined as:

Expand Down
2 changes: 1 addition & 1 deletion charts/envoy/templates/services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
selector:
{{- include "envoy.selectorLabels" . | nindent 4 }}
{{- end}}
{{- if .Values.services.trp.enabled -}}
{{ if .Values.services.trp.enabled -}}
---
apiVersion: v1
kind: Service
Expand Down
2 changes: 1 addition & 1 deletion charts/envoy/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ spec:
readinessProbe:
{{- toYaml .Values.readinessProbe | nindent 12 }}
{{- end }}
{{ include "envoy.volumes" . | nindent 6 }}
{{- include "envoy.volumes" . | nindent 6 }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down

0 comments on commit 4524e42

Please sign in to comment.