proper-website-2/.drone/helm/staging-val.yaml

24 lines
740 B
YAML
Raw Normal View History

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