setup bootstrap
This commit is contained in:
@@ -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.
|
||||
Reference in New Issue
Block a user