30 lines
745 B
YAML
30 lines
745 B
YAML
# 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/dvirlabs/gitops-status-api
|
|
tag: "master-da13db9"
|
|
pullPolicy: Always
|
|
# Service configuration
|
|
service:
|
|
type: ClusterIP
|
|
port: 80
|
|
annotations: {}
|
|
# Resource limits
|
|
resources:
|
|
limits:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
requests:
|
|
cpu: 50m
|
|
memory: 64Mi
|