17 lines
340 B
YAML
17 lines
340 B
YAML
|
---
|
||
|
## Test case: add ingress, also using tpl
|
||
|
global:
|
||
|
default:
|
||
|
hostname: "example.com"
|
||
|
|
||
|
server:
|
||
|
ingress:
|
||
|
enabled: true
|
||
|
ingressClassName: nginx
|
||
|
hosts:
|
||
|
- '{{ $.Values.global.default.hostname }}'
|
||
|
tls:
|
||
|
- secretName: ingress-tls-certificate
|
||
|
hosts:
|
||
|
- '{{ $.Values.global.default.hostname }}'
|