From 4424fed1f1250ced19152cca01c650712812ab16 Mon Sep 17 00:00:00 2001 From: Pavel Kirilin <win10@list.ru> Date: Sun, 14 Jul 2024 23:56:33 +0200 Subject: [PATCH] Removed ports and probes. Signed-off-by: Pavel Kirilin <win10@list.ru> --- helm/templates/deployment.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/helm/templates/deployment.yaml b/helm/templates/deployment.yaml index c939e60..34d8178 100644 --- a/helm/templates/deployment.yaml +++ b/helm/templates/deployment.yaml @@ -39,14 +39,14 @@ spec: {{- toYaml .Values.securityContext | nindent 12 }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} - ports: - - name: http - containerPort: {{ .Values.service.port }} - protocol: TCP - livenessProbe: - {{- toYaml .Values.livenessProbe | nindent 12 }} - readinessProbe: - {{- toYaml .Values.readinessProbe | nindent 12 }} + {{/* ports: */}} + {{/* - name: http */}} + {{/* containerPort: {{ .Values.service.port }} */}} + {{/* protocol: TCP */}} + {{/* livenessProbe: */}} + {{/* {{- toYaml .Values.livenessProbe | nindent 12 }} */}} + {{/* readinessProbe: */}} + {{/* {{- toYaml .Values.readinessProbe | nindent 12 }} */}} resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.volumeMounts }} -- GitLab