23 lines
384 B
YAML
23 lines
384 B
YAML
global:
|
|
test: templated-value
|
|
|
|
mode: deployment
|
|
resources:
|
|
limits:
|
|
cpu: 100m
|
|
memory: 200M
|
|
|
|
# Tests `tpl` function reference used in pod labels and
|
|
# ingress.hosts[*]
|
|
podLabels:
|
|
testLabel: "{{ .Values.global.test }}"
|
|
|
|
ingress:
|
|
enabled: true
|
|
hosts:
|
|
- host: "{{ .Values.global.test }}"
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
port: 4318
|