This repository has been archived on 2026-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
haven-ops/SETUP.md
2026-08-28 15:02:26 -03:00

19 lines
426 B
Markdown

# Initial setup
```sh
# 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.