Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature: Fix ingress class problem in argo helm example fixes issue #335 #337

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading