diff --git a/charts/operator/templates/deployment.yaml b/charts/operator/templates/deployment.yaml index b788598..4846c9a 100644 --- a/charts/operator/templates/deployment.yaml +++ b/charts/operator/templates/deployment.yaml @@ -28,10 +28,6 @@ spec: - name: metrics containerPort: 8080 protocol: TCP - livenessProbe: - {{- toYaml .Values.livenessProbe | nindent 12 }} - startupProbe: - {{- toYaml .Values.startupProbe | nindent 12 }} resources: {{ toYaml .Values.resources | nindent 12 }} volumeMounts: - name: tmp diff --git a/charts/operator/values.yaml b/charts/operator/values.yaml index 8a22ef2..83236b8 100644 --- a/charts/operator/values.yaml +++ b/charts/operator/values.yaml @@ -6,22 +6,6 @@ image: imagePullSecrets: [] -# Liveness probe for the operator -livenessProbe: - httpGet: - path: /healthz - port: 8000 - periodSeconds: 10 - failureThreshold: 1 - -# Liveness probe for the operator -startupProbe: - httpGet: - path: /healthz - port: 8000 - periodSeconds: 10 - failureThreshold: 3 - # Pod-level security context podSecurityContext: runAsNonRoot: true