File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -3,3 +3,5 @@ This chart can be used to create a new namespace and two secrets for the cluster
33```
44helm upgrade -i <tenant>-credentials -n <tenant> --create-namespace https://github.com/SovereignCloudStack/openstack-csp-helper/releases/latest/download/openstack-csp-helper.tgz -f clouds.yaml
55```
6+
7+ If OpenStack API is protected by the certificate issued by custom CA, add ` --set cacert="$(cat /path/to/cacert)" ` to the helm command.
Original file line number Diff line number Diff line change 11apiVersion : v1
22kind : Secret
33metadata :
4- name : {{ include "cloud_name" . }}
4+ name : {{ include "cloud_name" . }}
55data :
66 cloudName : {{ include "cloud_name" . | b64enc }}
77 clouds.yaml : {{ toYaml .Values | b64enc }}
8+ {{- if .Values.cacert }}
9+ cacert : {{ .Values.cacert | b64enc }}
10+ {{- end }}
811type : Opaque
You can’t perform that action at this time.
0 commit comments