helm-charts/charts/library/common-test/ci/advanced-values.yaml
Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs 8bfc33eb8a
feat(common): Release v2.2.0 (#223)
2023-11-10 21:31:03 +01:00

82 lines
1.9 KiB
YAML

controllers:
main:
containers:
main:
image:
repository: ghcr.io/mendhak/http-https-echo
tag: 30
pullPolicy: IfNotPresent
env:
HTTP_PORT: 8887
HTTPS_PORT: 9997
probes:
liveness:
enabled: true
readiness:
enabled: true
startup:
enabled: true
a-container:
dependsOn:
- main
- third-container
image:
repository: ghcr.io/mendhak/http-https-echo
tag: 30
env:
HTTP_PORT: 8888
HTTPS_PORT: 9998
third-container:
dependsOn: main
image:
repository: ghcr.io/mendhak/http-https-echo
tag: 30
second-controller:
type: deployment
containers:
main:
image:
repository: ghcr.io/mendhak/http-https-echo
tag: 30
pullPolicy: IfNotPresent
env:
HTTP_PORT: 8889
HTTPS_PORT: 9999
ingress:
main:
enabled: true
configMaps:
config:
enabled: true
data:
test: value 1
persistence:
config:
enabled: true
data:
type: configMap
name: |-
{{- (include "bjw-s.common.lib.chart.names.fullname" $) -}}-config
advancedMounts:
main: # the controller with the "main" identifier
main: # the container with the "main" identifier
- path: /data/config.yaml
readOnly: false
subPath: config.yaml
second-container: # the container with the "second-container" identifier
- path: /appdata/config
readOnly: true
second-controller: # the controller with the "second-controller" identifier
main: # the container with the "main" identifier
- path: /data/config.yaml
readOnly: false
subPath: config.yaml