# Values for gitops-status-server Helm chart # Deploys a simple Flask API for storing and retrieving GitOps status JSON # Number of replicas replicaCount: 1 # Image pull secrets for Harbor registry imagePullSecrets: - name: harbor-regcred # API backend configuration (Flask server for status updates) api: image: # Use the gitops-status-api image from gitops-status-api repo # Built and pushed to Harbor or use local image repository: harbor.dvirlabs.com/my-apps/status-api tag: "latest" pullPolicy: IfNotPresent # Service configuration service: type: ClusterIP port: 80 annotations: {} # Resource limits resources: limits: cpu: 100m memory: 128Mi requests: cpu: 50m memory: 64Mi