Update NOTES.txt
Added Openshift specific commands for making server UI accessable.
This commit is contained in:
parent
3ca4a4eca0
commit
f11dde40e3
1 changed files with 8 additions and 0 deletions
|
@ -8,6 +8,14 @@ In order to access the server UI you have the following options:
|
||||||
- Add the annotation for ssl passthrough: https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/ingress.md#option-1-ssl-passthrough
|
- Add the annotation for ssl passthrough: https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/ingress.md#option-1-ssl-passthrough
|
||||||
- Add the `--insecure` flag to `server.extraArgs` in the values file and terminate SSL at your ingress: https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/ingress.md#option-2-multiple-ingress-objects-and-hosts
|
- Add the `--insecure` flag to `server.extraArgs` in the values file and terminate SSL at your ingress: https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/ingress.md#option-2-multiple-ingress-objects-and-hosts
|
||||||
|
|
||||||
|
In case you are deploying on openshift 4
|
||||||
|
3. You have to use the Openshift Routes. For that use folowing command:
|
||||||
|
|
||||||
|
oc create route passthrough YOUR_ROUTE_NAME --service=YOUR_POD --port=https --insecure-policy=Redirect
|
||||||
|
|
||||||
|
After that execute the following command to get the server UI link:
|
||||||
|
|
||||||
|
echo https://$(oc get routes argocd -o=jsonpath='{ .spec.host }')
|
||||||
|
|
||||||
After reaching the UI the first time you can login with username: admin and the random password generated during the installation. You can find the password by running:
|
After reaching the UI the first time you can login with username: admin and the random password generated during the installation. You can find the password by running:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue