-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
docs(argo-cd): Add Openshift 4 specific Route command to NOTES.txt #855
Closed
Closed
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
f11dde4
Update NOTES.txt
shshanmu f0f88fc
Merge branch 'argoproj:master' into master
shshanmu cfe3c59
Update charts/argo-cd/templates/NOTES.txt
shshanmu a063ece
Update NOTES.txt
shshanmu 54cf92c
feat(argo-cd): Bump default version to v2.0.5 (#844)
smcavallo d22212b
Update Chart.yaml
shshanmu 64be07a
fix(argo-cd): Deprecate the static assets flag passed to argocd-serve…
94d8e1e
argocd - update misc dependencies (#847)
smcavallo 9493915
fix(argo-cd): re-enable not yet deprecated staticassets flag (#849)
hairmare b3ac51e
Update charts/argo-cd/templates/NOTES.txt
shshanmu cfcedeb
Merge Chart.yaml
shabin100 521fbe0
Update Chart.yaml
shshanmu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -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 `--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_SERVICE --port=https --insecure-policy=Redirect | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why hardcoding a dummy name for service? You have access to helm templating here. Please use:
Suggested change
|
||||||
|
||||||
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: | ||||||
|
||||||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, we should use the conditional to not print this message on all non-OSE environments.