Externalize networking (welcome Wild Central!)
This commit is contained in:
@@ -3,10 +3,6 @@ kind: Ingress
|
||||
metadata:
|
||||
name: limesurvey
|
||||
namespace: limesurvey
|
||||
annotations:
|
||||
external-dns.alpha.kubernetes.io/target: {{ .externalDnsDomain }}
|
||||
external-dns.alpha.kubernetes.io/cloudflare-proxied: "false"
|
||||
external-dns.alpha.kubernetes.io/ttl: "60"
|
||||
spec:
|
||||
ingressClassName: traefik
|
||||
rules:
|
||||
@@ -20,7 +16,3 @@ spec:
|
||||
name: limesurvey
|
||||
port:
|
||||
number: 80
|
||||
tls:
|
||||
- hosts:
|
||||
- {{ .domain }}
|
||||
secretName: {{ .tlsSecretName }}
|
||||
|
||||
@@ -1,28 +1,26 @@
|
||||
version: 6.17.5-1
|
||||
version: 6.17.5-2
|
||||
requires:
|
||||
- name: postgres
|
||||
- name: smtp
|
||||
- name: postgres
|
||||
- name: smtp
|
||||
defaultConfig:
|
||||
namespace: limesurvey
|
||||
externalDnsDomain: "{{ .cloud.domain }}"
|
||||
domain: limesurvey.{{ .cloud.domain }}
|
||||
tlsSecretName: wildcard-wild-cloud-tls
|
||||
storage: 2Gi
|
||||
adminUser: admin
|
||||
adminEmail: "{{ .operator.email }}"
|
||||
adminEmail: '{{ .operator.email }}'
|
||||
db:
|
||||
host: "{{ .apps.postgres.host }}"
|
||||
port: "{{ .apps.postgres.port }}"
|
||||
host: '{{ .apps.postgres.host }}'
|
||||
port: '{{ .apps.postgres.port }}'
|
||||
name: limesurvey
|
||||
user: limesurvey
|
||||
smtp:
|
||||
host: "{{ .apps.smtp.host }}"
|
||||
port: "{{ .apps.smtp.port }}"
|
||||
from: "{{ .apps.smtp.from }}"
|
||||
user: "{{ .apps.smtp.user }}"
|
||||
host: '{{ .apps.smtp.host }}'
|
||||
port: '{{ .apps.smtp.port }}'
|
||||
from: '{{ .apps.smtp.from }}'
|
||||
user: '{{ .apps.smtp.user }}'
|
||||
defaultSecrets:
|
||||
- key: adminPassword
|
||||
- key: dbPassword
|
||||
- key: smtpPassword
|
||||
- key: adminPassword
|
||||
- key: dbPassword
|
||||
- key: smtpPassword
|
||||
requiredSecrets:
|
||||
- postgres.password
|
||||
- postgres.password
|
||||
|
||||
Reference in New Issue
Block a user