36 lines
797 B
YAML
36 lines
797 B
YAML
# Values for gitops-status-server Helm chart
|
|
# Serves a static status.json file via nginx with an optional API for dynamic updates
|
|
|
|
# Number of replicas
|
|
replicaCount: 1
|
|
|
|
# Container image configuration
|
|
image:
|
|
repository: nginxinc/nginx-unprivileged
|
|
tag: "1.25-alpine"
|
|
pullPolicy: IfNotPresent
|
|
|
|
# API backend configuration (Flask server for status updates)
|
|
api:
|
|
image:
|
|
repository: python
|
|
tag: "3.11-alpine"
|
|
pullPolicy: IfNotPresent
|
|
pip_packages: "Flask==2.3.2"
|
|
|
|
# Service configuration
|
|
service:
|
|
type: ClusterIP
|
|
port: 80
|
|
targetPort: 8080
|
|
annotations: {}
|
|
|
|
# Status JSON content - customize with your actual GitOps status information
|
|
statusJson:
|
|
repo: "observability-stack"
|
|
server: "rsyslog-lab"
|
|
sync_status: "UNKNOWN"
|
|
drift_count: 0
|
|
files: []
|
|
last_check: ""
|