Skip to content

Commit b343523

Browse files
committed
doc: add note about wildcard certs
1 parent 1cec107 commit b343523

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

roles/openstack_helm_ingress/README.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,24 @@ with Atmosphere, you can simply configure it as follows;
77

88
1. Create a Kubernetes TLS secret using your wildcard certificate, you can refer
99
to the [Kubernetes documentation](https://kubernetes.io/docs/concepts/configuration/secret/#tls-secrets)
10-
for more details.
10+
for more details.
1111

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.
1521
1622
2. Update the `openstack_helm_ingress_secret_name` to point towards the name
1723
of the secret you created in step 1.
1824

19-
```yaml
20-
openstack_helm_ingress_secret_name: wildcard-certs
21-
```
25+
```yaml
26+
openstack_helm_ingress_secret_name: wildcard-certs
27+
```
2228
2329
> **Note**
2430
>

0 commit comments

Comments
 (0)