apiVersion: apps/v1 kind: Deployment metadata: name: {{ include "rollout-operator.fullname" . }} labels: {{- include "rollout-operator.labels" . | nindent 4 }} spec: replicas: 1 minReadySeconds: {{ .Values.minReadySeconds }} selector: matchLabels: {{- include "rollout-operator.selectorLabels" . | nindent 6 }} strategy: rollingUpdate: maxSurge: 0 maxUnavailable: 1 template: metadata: {{- with .Values.podAnnotations }} annotations: {{- toYaml . | nindent 8 }} {{- end }} labels: {{- include "rollout-operator.selectorLabels" . | nindent 8 }} {{- with .Values.podLabels }} {{- toYaml . | nindent 8 }} {{- end }} spec: {{- with .Values.priorityClassName }} priorityClassName: {{ . }} {{- end }} {{- with .Values.imagePullSecrets }} imagePullSecrets: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.hostAliases }} hostAliases: {{- toYaml . | nindent 8 }} {{- end }} serviceAccountName: {{ include "rollout-operator.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} containers: - name: rollout-operator securityContext: {{- toYaml .Values.securityContext | nindent 12 }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} args: - -kubernetes.namespace={{ .Release.Namespace }} ports: - name: http-metrics containerPort: 8001 protocol: TCP readinessProbe: httpGet: path: /ready port: http-metrics initialDelaySeconds: 5 timeoutSeconds: 1 resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.affinity }} affinity: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.tolerations }} tolerations: {{- toYaml . | nindent 8 }} {{- end }}