diff --git a/content/en/docs/05/helm.md b/content/en/docs/05/helm.md index 5c275dc..3e7d7ca 100644 --- a/content/en/docs/05/helm.md +++ b/content/en/docs/05/helm.md @@ -128,14 +128,14 @@ Change the `helm/simple-example/values.yaml` file in your git repository ... ingress: enabled: true - annotations: {} - # kubernetes.io/ingress.class: nginx - # kubernetes.io/tls-acme: "true" hosts: - - host: helm-.{{% param appDomain %}} + - host: helm-.{{% param appDomain %}} paths: - path: / - tls: [] + tls: + - hosts: + - helm-.{{% param appDomain %}} + secretName: acend-wildcard ... ``` @@ -165,14 +165,14 @@ Change the host in the `helm/simple-example/values-production.yaml` to the produ ... ingress: enabled: true - annotations: {} - # kubernetes.io/ingress.class: nginx - # kubernetes.io/tls-acme: "true" hosts: - - host: helm--prod.{{% param appDomain %}} + - host: helm--prod.{{% param appDomain %}} paths: - path: / - tls: [] + tls: + - hosts: + - helm--prod.{{% param appDomain %}} + secretName: acend-wildcard ... ```