Skip to content

Commit

Permalink
feature: Fix ingress class problem in argo helm example
Browse files Browse the repository at this point in the history
  • Loading branch information
g1raffi committed Sep 25, 2024
1 parent fdf8417 commit d2ac27c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions content/en/docs/05/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-<namespace>.{{% param appDomain %}}
- host: helm-<username>.{{% param appDomain %}}
paths:
- path: /
tls: []
tls:
- hosts:
- helm-<username>.{{% param appDomain %}}
secretName: acend-wildcard
...
```

Expand Down Expand Up @@ -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-<namespace>-prod.{{% param appDomain %}}
- host: helm-<username>-prod.{{% param appDomain %}}
paths:
- path: /
tls: []
tls:
- hosts:
- helm-<username>-prod.{{% param appDomain %}}
secretName: acend-wildcard
...
```

Expand Down

0 comments on commit d2ac27c

Please sign in to comment.