From 973b8054aca2f1acb91dd0b5179057e360c4c564 Mon Sep 17 00:00:00 2001 From: Backstage Automation Date: Fri, 20 Jan 2023 08:31:35 -0500 Subject: [PATCH] omit wrong var name --- ndustrial/deployment/Chart.yaml | 4 ++-- ndustrial/deployment/templates/deployment.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ndustrial/deployment/Chart.yaml b/ndustrial/deployment/Chart.yaml index 85954a3..d632f67 100644 --- a/ndustrial/deployment/Chart.yaml +++ b/ndustrial/deployment/Chart.yaml @@ -13,5 +13,5 @@ maintainers: - email: devops@ndustrial.io 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 diff --git a/ndustrial/deployment/templates/deployment.yaml b/ndustrial/deployment/templates/deployment.yaml index 6d23cc7..2d5a049 100644 --- a/ndustrial/deployment/templates/deployment.yaml +++ b/ndustrial/deployment/templates/deployment.yaml @@ -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: @@ -156,7 +156,7 @@ 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: @@ -164,7 +164,7 @@ spec: 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 }}