File tree Expand file tree Collapse file tree 1 file changed +13
-7
lines changed
roles/openstack_helm_ingress Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -7,18 +7,24 @@ with Atmosphere, you can simply configure it as follows;
7
7
8
8
1 . Create a Kubernetes TLS secret using your wildcard certificate, you can refer
9
9
to the [ Kubernetes documentation] ( https://kubernetes.io/docs/concepts/configuration/secret/#tls-secrets )
10
- for more details.
10
+ for more details.
11
11
12
- ``` shell
13
- kubectl -n openstack create secret tls wildcard-certs --key=/path/to/tls.key --cert=/path/to/tls.crt
14
- ```
12
+ ``` shell
13
+ kubectl -n openstack create secret tls wildcard-certs --key=/path/to/tls.key --cert=/path/to/tls.crt
14
+ ```
15
+
16
+ > ** Note**
17
+ >
18
+ > If you have a certificate that needs to be combined with an intermediate
19
+ > certificate, you can combine them all to a single file with the certificate
20
+ > first, followed by the intermediate certificate, followed by the root.
15
21
16
22
2 . Update the ` openstack_helm_ingress_secret_name ` to point towards the name
17
23
of the secret you created in step 1.
18
24
19
- ` ` ` yaml
20
- openstack_helm_ingress_secret_name: wildcard-certs
21
- ` ` `
25
+ ``` yaml
26
+ openstack_helm_ingress_secret_name : wildcard-certs
27
+ ` ` `
22
28
23
29
> **Note**
24
30
>
You can’t perform that action at this time.
0 commit comments