init v1.0.0 (#129)
This commit is contained in:
parent
ed127ea795
commit
30889df476
64 changed files with 1909 additions and 933 deletions
|
|
@ -1,13 +1,15 @@
|
|||
In order to access the server UI you have the following options:
|
||||
|
||||
1. kubectl port-forward svc/argocd-server -n argocd 8080:443
|
||||
1. kubectl port-forward service/argo-cd-argocd-server -n argocd 8080:443
|
||||
|
||||
and then open the browser on http://localhost:8080 and accept the certificate
|
||||
|
||||
2. enable ingress and check the first option ssl passthrough:
|
||||
https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/ingress.md#option-1-ssl-passthrough
|
||||
2. enable ingress in the values file `service.ingress.enabled` and either
|
||||
- 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
|
||||
|
||||
|
||||
After reaching the UI the first time you can login with username: admin and the password will be the
|
||||
name of the server pod. You can get the pod name by running:
|
||||
|
||||
kubectl get pods -n argocd -l app.kubernetes.io/name={{ include "argo-cd.name" . }}-server -o name | cut -d'/' -f 2
|
||||
kubectl get pods -n argocd -l app.kubernetes.io/name={{ include "argo-cd.name" . }}-server -o name | cut -d'/' -f 2
|
||||
Loading…
Add table
Add a link
Reference in a new issue