Skip to content

Commit

Permalink
Merge pull request #558 from acend/fix/helm-tls
Browse files Browse the repository at this point in the history
fix tls in helm lab
  • Loading branch information
sybnex authored Oct 2, 2023
2 parents 089fae8 + 99499b8 commit e7434c3
Showing 1 changed file with 6 additions and 2 deletions.
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

0 comments on commit e7434c3

Please sign in to comment.