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

fix tls in helm lab #558

Merged
merged 2 commits into from
Oct 2, 2023
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
8 changes: 6 additions & 2 deletions content/en/docs/helm/simplechart.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,11 @@ Make sure to replace the `<namespace>` and `<appdomain>` accordingly.
ingress:
enabled: true
className: ""
# as we learned in previous labs, OpenShift uses Routes instead of Ingresses
# to let OpenShift automatically generate the corresponding Route, we need the following annotation. more information:
# https://docs.openshift.com/container-platform/latest/networking/routes/route-configuration.html#nw-ingress-creating-a-route-via-an-ingress_route-configuration
annotations:
route.openshift.io/termination: "edge"
hosts:
- host: mychart-<namespace>.<appdomain>
paths:
Expand Down Expand Up @@ -222,11 +226,11 @@ STATUS: deployed
REVISION: 2
NOTES:
1. Get the application URL by running these commands:
http://<namespace>.<appdomain>/
https://<namespace>.<appdomain>/
```

{{% onlyWhenNot customer %}}
Check whether the ingress was successfully deployed by accessing the URL `http://mychart-<namespace>.<appdomain>/`
Check whether the ingress was successfully deployed by accessing the URL `https://mychart-<namespace>.<appdomain>/`

{{% /onlyWhenNot %}}

Expand Down