apiVersion: apps/v1 kind: Deployment metadata: name: container-mom-operator namespace: container-mom-system spec: replicas: 1 selector: matchLabels: app: container-mom-operator template: metadata: labels: app: container-mom-operator spec: serviceAccountName: container-mom containers: - name: operator image: ghcr.io/pfeifferj/container-mom-operator:latest imagePullPolicy: Always ports: - containerPort: 8081 name: http livenessProbe: httpGet: path: /healthz port: http initialDelaySeconds: 15 periodSeconds: 10 failureThreshold: 3 readinessProbe: httpGet: path: /readyz port: http initialDelaySeconds: 15 periodSeconds: 10 failureThreshold: 3 resources: limits: cpu: 500m memory: 512Mi requests: cpu: 100m memory: 128Mi