Kubernetes: Исследование с помощью Minikube - часть 4
Это продолжение третьей части. ArgoCD Let’s install argocd cli tool first brew install argocd Create new namespace for ArgoCD kubectl create namespace argocd Deploy ArgoCD manifest kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml Get admin password from pod kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d Authorize argocd cli app ARGO_PWD=$(kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d) argocd login localhost:8080 --username admin --password $ARGO_PWD --insecure Get access to UI via kubectl port-forward...