Skip to content

Commit

Permalink
omit wrong var name
Browse files Browse the repository at this point in the history
  • Loading branch information
ndustrial-devops committed Jan 20, 2023
1 parent d423e63 commit 973b805
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ndustrial/deployment/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ maintainers:
- email: [email protected]
name: DevOps
# Please make sure that version and appVersion are always the same.
version: 0.1.51
appVersion: 0.1.51
version: 0.1.52
appVersion: 0.1.52
6 changes: 3 additions & 3 deletions ndustrial/deployment/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ spec:
path: {{ .Values.startupProbe.path }}
port: http
{{- end }}
{{ omit .Values.startupProbe "enabled" "httpget" "path" | toYaml | nindent 12 }}
{{ omit .Values.startupProbe "enabled" "httpGet" "path" | toYaml | nindent 12 }}
{{- end }}
{{- if .Values.livenessProbe.enabled }}
livenessProbe:
Expand All @@ -156,15 +156,15 @@ spec:
path: {{ .Values.livenessProbe.path }}
port: http
{{- end }}
{{ omit .Values.livenessProbe "enabled" "httpget" "path" | toYaml | nindent 12 }}
{{ omit .Values.livenessProbe "enabled" "httpGet" "path" | toYaml | nindent 12 }}
{{- end }}
{{- if .Values.readinessProbe.enabled }}
readinessProbe:
{{- if .Values.readinessProbe.httpGet}}
httpGet:
path: {{ .Values.readinessProbe.path }}
port: http
{{ omit .Values.readinessProbe "enabled" "httpget" "path" | toYaml | nindent 12 }}
{{ omit .Values.readinessProbe "enabled" "httpGet" "path" | toYaml | nindent 12 }}
{{- end }}
{{- end }}
{{- end }}
Expand Down

0 comments on commit 973b805

Please sign in to comment.