Index
Software
Application
Networking
Cluster
Argocd

Argocd

Setup

https://argo-cd.readthedocs.io/en/stable/

kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml

# password for account "admin"
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d; echo

默认不提供暴露服务dashboard的选项,可以单独修改ArgoCD Service的配置文件为NodePort来实现。

Created by sine at 2022-03-27 19:03:24. Last modification: 2022-06-05 15:40:21
Software