No description
Find a file
2024-03-13 20:47:42 -05:00
apps no more argo nodeport 2024-03-13 20:43:24 -05:00
hello-world rollout v1 2024-03-13 20:47:42 -05:00
rollouts-app create argo-rollouts namespace 2024-03-12 13:23:10 -05:00
kind-config.yaml add the argo port 2024-03-13 20:02:52 -05:00
README.md readme 2024-03-13 20:24:03 -05:00

Learn Rollouts

kind create cluster --name rollout --config kind-config.yaml
# your first time through you need to add the argocd repo
helm repo add argo https://argoproj.github.io/argo-helm
helm repo update
# install argocd into the cluster
helm install argo argo/argo-cd --namespace argocd --create-namespace
# deploy the app of apps
kubectl apply -f apps/apps.yaml
# access the argocd server
kubectl port-forward service/argo-argocd-server -n argocd 8080:443
argocd admin initial-password -n argocd
argocd login localhost:8080
argocd account update-password --account admin --new-password password
argocd app list
argocd app create apps --repo https://github.com/waylonwalker/learn-rollouts --path apps --dest-server https://kubernetes.default.svc --dest-namespace argocd
argocd app list
argocd app sync apps
argocd app list