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
3
3
```
4
4
helm 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
5
5
```
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 1
1
apiVersion : v1
2
2
kind : Secret
3
3
metadata :
4
- name : {{ include "cloud_name" . }}
4
+ name : {{ include "cloud_name" . }}
5
5
data :
6
6
cloudName : {{ include "cloud_name" . | b64enc }}
7
7
clouds.yaml : {{ toYaml .Values | b64enc }}
8
+ {{- if .Values.cacert }}
9
+ cacert : {{ .Values.cacert | b64enc }}
10
+ {{- end }}
8
11
type : Opaque
You can’t perform that action at this time.
0 commit comments