This commit is contained in:
Waylon Walker 2024-03-13 20:24:03 -05:00
parent 9fabd6beec
commit 2d6e03dfe2
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4

View file

@ -1 +1,28 @@
# Learn Rollouts # Learn Rollouts
``` bash
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
```
``` bash
# 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
```
``` bash
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
```