mirror of
https://gitlab.com/deepcypher/dc-kc.git
synced 2026-01-27 11:12:08 +00:00
11 lines
336 B
Bash
Executable File
11 lines
336 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
kubectl get all -n argocd
|
|
|
|
echo "admin password"
|
|
|
|
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d
|
|
echo ""
|
|
# kubectl get -n argocd pods -l app.kubernetes.io/name=argocd-server -o name | cut -d'/' -f 2
|
|
kubectl port-forward svc/argo-argocd-server -n argocd 8080:443
|