# Configure the controller manager deployment manager: replicas: 1 image: repository: controller tag: latest pullPolicy: IfNotPresent # Arguments args: - --leader-elect # Environment variables env: - name: BUSYBOX_IMAGE value: busybox:1.36.1 - name: MEMCACHED_IMAGE value: memcached:1.6.26-alpine3.19 # Pod-level security settings podSecurityContext: runAsNonRoot: true seccompProfile: type: RuntimeDefault # Container-level security settings securityContext: allowPrivilegeEscalation: false capabilities: drop: - ALL readOnlyRootFilesystem: true # Resource limits and requests resources: limits: cpu: 500m memory: 128Mi requests: cpu: 10m memory: 64Mi # Essential RBAC permissions (required for controller operation) # These include ServiceAccount, controller permissions, leader election, and metrics access # Note: Essential RBAC is always enabled as it's required for the controller to function # Helper RBAC roles for managing custom resources # These provide convenient admin/editor/viewer roles for each CRD type # Useful for giving users different levels of access to your custom resources rbacHelpers: enable: false # Install convenience admin/editor/viewer roles for CRDs # Custom Resource Definitions crd: enable: true # Install CRDs with the chart keep: true # Keep CRDs when uninstalling # Controller metrics endpoint. # Enable to expose /metrics endpoint with RBAC protection. metrics: enable: true port: 8443 # Metrics server port # Cert-manager integration for TLS certificates. # Required for webhook certificates and metrics endpoint certificates. certManager: enable: true # Webhook server configuration webhook: enable: true port: 9443 # Webhook server port # Prometheus ServiceMonitor for metrics scraping. # Requires prometheus-operator to be installed in the cluster. prometheus: enable: false