We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89fabb1 commit db934a9Copy full SHA for db934a9
chart/templates/ws-proxy-configmap.yaml
@@ -33,8 +33,13 @@ data:
33
},
34
"proxy": {
35
"https": {
36
+{{- if (and $.Values.certificatesSecret.chainName $.Values.certificatesSecret.keyName) }}
37
+ "crt": "/mnt/certificates/{{ $.Values.certificatesSecret.chainName }}",
38
+ "key": "/mnt/certificates/{{ $.Values.certificatesSecret.keyName }}"
39
+{{- else }}
40
"crt": "/mnt/certificates/tls.crt",
41
"key": "/mnt/certificates/tls.key"
42
+{{- end }}
43
44
"transportConfig": {
45
"connectTimeout": "10s",
chart/values.yaml
@@ -7,6 +7,9 @@ version:
7
hostname: localhost
8
certificatesSecret:
9
secretName: https-certificates
10
+ keyName: privkey.pem
11
+ chainName: chain.pem
12
+ fullChainName: fullchain.pem
13
14
imagePrefix: gcr.io/gitpod-io/self-hosted/
15
installation:
0 commit comments