Skip to content

Commit 33beb75

Browse files
committed
add the ability to specify OS_CACERT for self-signed APIs
Signed-off-by: Niclas Schad <[email protected]>
1 parent 0ef9a51 commit 33beb75

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

helm/designate-certmanager-webhook/templates/secret.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ data:
4040
{{- if .Values.openstack.domain_name }}
4141
OS_DOMAIN_NAME: {{ .Values.openstack.domain_name | b64enc | quote }}
4242
{{- end }}
43+
{{- if .Values.openstack.ca_cert }}
44+
OS_CACERT: {{ .Values.openstack.ca_cert | b64enc | quote }}
45+
{{- end }}
4346
{{- if .Values.openstack.auth_type }}
4447
OS_AUTH_TYPE: {{ .Values.openstack.auth_type | b64enc | quote }}
4548
{{- end }}

helm/designate-certmanager-webhook/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ openstack:
3737
region_name: ""
3838
auth_url: ""
3939
domain_name: ""
40+
ca_cert: ""
4041

4142
nameOverride: ""
4243
fullnameOverride: ""

0 commit comments

Comments
 (0)