Last active
November 25, 2020 22:05
-
-
Save rogerwelin/281f6bf526d95ec88001888eeb7e14d2 to your computer and use it in GitHub Desktop.
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
$ kind create cluster --config kind-config.yaml | |
# install the Nginx ingress | |
$ kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/master/deploy/static/provider/kind/deploy.yaml | |
# install ArgoCD | |
$ kubectl create namespace argocd | |
$ kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml | |
# use port-forwarding to access the ArgoCD UI | |
$ kubectl port-forward --address 0.0.0.0 svc/argocd-server -n argocd 8080:443 | |
# get the admin password | |
$ kubectl get pods -n argocd -l app.kubernetes.io/name=argocd-server -o name | cut -d'/' -f 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment