setup bootstrap

This commit is contained in:
2026-08-28 15:02:26 -03:00
parent 52a81b1663
commit 117a0bc7e2
2 changed files with 163 additions and 2 deletions
+15 -2
View File
@@ -1,6 +1,19 @@
# Initial setup
```sh
kubectl create ns argocd
# Create namespace
kubectl apply -f bootstrap/namespaces.yaml
# Install ArgoCD
kubectl apply -k bootstrap/argocd-install
# Apply root app
kubectl apply -f bootstrap/root-app.yaml
```
```
## Access ArgoCD
1. Get admin password
```sh
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d; echo
```
2. Access ArgoCD and login with `admin` / password from above.