helm_website/values.yaml

81 lines
1.6 KiB
YAML

replicaCount: 1
image:
repository: glvx/php
pullPolicy: IfNotPresent
tag: "8.2a"
mysql:
enabled: false
postgresql:
enabled: false
updater:
image:
repository: glvx/web-updater
pullPolicy: IfNotPresent
tag: "241120-1"
url: "https://git.aquila-consortium.org/guilhem_lavaux/gl-website-deployer"
webhook-secret: ""
apiUsername: ""
apiPassword: ""
env:
plain: {}
ingress:
enabled: true
className: nginx
hosts:
- host: chart-example.local
paths:
- path: /
pathType: Prefix
# tls:
# enabled: true
# secretName: chart-example-tls
# hosts:
# - chart-example.local
# annotations: {}
# # kubernetes.io/ingress.class: nginx
# # kubernetes.io/tls-acme: "true"
# # cert-manager.io/cluster-issuer: "letsencrypt-prod"
persistence:
enabled: true
accessMode: ReadWriteOnce
size: 1Gi
storageClass: ""
# Environment variables to be passed to the container
env:
# Direct environment variables
plain:
- name: APP_NAME
value: "my-app"
- name: PORT
value: "8080"
# Environment variables from ConfigMaps
# configMapRefs:
# - name: app-config # Reference an existing ConfigMap
# optional: true # Make it optional
#
# configMapKeys:
# - name: CONFIG_KEY
# configMapName: app-config
# key: config.key
#
# # Environment variables from Secrets
# secretRefs:
# - name: app-secrets # Reference an existing Secret
# optional: true # Make it optional
#
# secretKeys:
# - name: API_KEY
# secretName: app-secrets
# key: api.key