2022-07-04 17:18:03 +02:00
|
|
|
baseURL: old.quenten.nl
|
2022-03-12 20:43:21 +01:00
|
|
|
name: newsite-prod
|
2022-05-14 18:24:19 +02:00
|
|
|
containerEnv:
|
|
|
|
- name: APIURL
|
|
|
|
value: https://api.quenten.nl/api
|
2022-03-12 20:43:21 +01:00
|
|
|
service:
|
2022-06-29 15:06:12 +02:00
|
|
|
name: "{{ .Values.name }}"
|
2022-03-12 20:43:21 +01:00
|
|
|
ingress:
|
2022-06-29 15:06:12 +02:00
|
|
|
name: "{{ .Values.name }}"
|
2022-03-12 20:43:21 +01:00
|
|
|
annotations:
|
2022-06-29 16:25:49 +02:00
|
|
|
cert-manager.io/cluster-issuer: "letsencrypt-prod"
|
2022-06-29 15:06:12 +02:00
|
|
|
external-dns.alpha.kubernetes.io/hostname: "{{ .Values.baseURL }}"
|
2022-04-20 14:45:04 +02:00
|
|
|
nginx.ingress.kubernetes.io/configuration-snippet: |
|
|
|
|
add_header Content-Security-Policy "frame-ancestors 'self' https://forestofunix.xyz";
|
|
|
|
proxy_hide_header X-Frame-Options ;
|
2022-03-12 20:43:21 +01:00
|
|
|
tls:
|
|
|
|
- hosts:
|
2022-06-29 15:06:12 +02:00
|
|
|
- "{{ .Values.baseURL }}"
|
|
|
|
secretName: "{{ .Values.name }}-tls"
|
2022-03-12 20:43:21 +01:00
|
|
|
hosts:
|
2022-06-29 15:06:12 +02:00
|
|
|
- host: "{{ .Values.baseURL }}"
|
2022-03-12 20:43:21 +01:00
|
|
|
paths:
|
|
|
|
- path: /
|
|
|
|
pathType: Prefix
|