chore: changed command order

This commit is contained in:
sujiba 2025-05-11 18:06:52 +02:00
parent a3295a348d
commit 2de514c837
Signed by: sujiba
SSH key fingerprint: SHA256:4xWvKa5MUmI0bdA2d8S5iZCIOxO5FGXYxJDrSVoFOyk

View file

@ -136,16 +136,16 @@ cilium hubble disable
```
## ArgoCD
Create argocd namespace and install the application
Create argocd namespace and install the application.
```bash
kubectl create ns argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
```
Port forward the web interface of argocd and get the initial login password
Get the initial admin login password and port forward the web interface of argocd.
```bash
kubectl port-forward svc/argocd-server -n argocd 8080:443
kubectl get secret argocd-initial-admin-secret -n argocd -o jsonpath='{.data}'
kubectl port-forward svc/argocd-server -n argocd 8080:443
```
Open your browser and go to `https://localhost:8080`. Log in with `admin` and the `argocd-initial-admin-secret`. Click on User-Info -> Update Password and change the password. You can then delete the secret.