apiVersion: apps/v1 kind: Deployment metadata: name: cloudnative-pg namespace: cloudnative-pg labels: helm.sh/chart: cloudnative-pg-0.27.1 app.kubernetes.io/name: cloudnative-pg app.kubernetes.io/instance: cloudnative-pg app.kubernetes.io/version: "1.28.1" app.kubernetes.io/managed-by: Helm spec: replicas: 2 selector: matchLabels: app.kubernetes.io/name: cloudnative-pg app.kubernetes.io/instance: cloudnative-pg template: metadata: annotations: checksum/rbac: f56b7f8a804f170d0321013a76b6986d87676d3d2686ab6e516c78728c914633 checksum/config: a9a8db623df05650079bba7bb18a20557d311139de2c1115f8a80327aefa16b5 checksum/monitoring-config: 76f52b5d508cf7d22063ef07656ad78f7277ee177de83e23b5b06f7f54ebc924 labels: app.kubernetes.io/name: cloudnative-pg app.kubernetes.io/instance: cloudnative-pg spec: containers: - args: - controller - --leader-elect - --max-concurrent-reconciles=10 - --config-map-name=cnpg-controller-manager-config - --webhook-port=9443 command: - /manager env: - name: OPERATOR_IMAGE_NAME value: "ghcr.io/cloudnative-pg/cloudnative-pg:1.28.1" - name: OPERATOR_NAMESPACE valueFrom: fieldRef: fieldPath: metadata.namespace - name: MONITORING_QUERIES_CONFIGMAP value: "cnpg-default-monitoring" image: "ghcr.io/cloudnative-pg/cloudnative-pg:1.28.1" imagePullPolicy: IfNotPresent livenessProbe: httpGet: path: /readyz port: webhook-server scheme: HTTPS initialDelaySeconds: 3 name: manager ports: - containerPort: 8080 name: metrics protocol: TCP - containerPort: 9443 name: webhook-server protocol: TCP readinessProbe: httpGet: path: /readyz port: webhook-server scheme: HTTPS initialDelaySeconds: 3 resources: {} securityContext: allowPrivilegeEscalation: false capabilities: drop: - ALL readOnlyRootFilesystem: true runAsGroup: 10001 runAsUser: 10001 seccompProfile: type: RuntimeDefault startupProbe: failureThreshold: 6 httpGet: path: /readyz port: webhook-server scheme: HTTPS periodSeconds: 5 volumeMounts: - mountPath: /controller name: scratch-data - mountPath: /run/secrets/cnpg.io/webhook name: webhook-certificates securityContext: runAsNonRoot: true seccompProfile: type: RuntimeDefault serviceAccountName: cloudnative-pg terminationGracePeriodSeconds: 10 volumes: - emptyDir: {} name: scratch-data - name: webhook-certificates secret: defaultMode: 420 optional: true secretName: cnpg-webhook-cert