Terminal · Infra

ArgoCD

Documentação oficial
login

Autentica no servidor do ArgoCD

ArgoCD
argocd login localhost:9000 --username admin --password <PASSWORD> --insecure
repo add (helm/OCI)

Registra um repositório Helm/OCI como fonte de charts

ArgoCD
argocd repo add <REGISTRY HOST> --type helm --name stable --enable-oci --username <REGISTRY USER> --password <REGISTRY PASSWORD>
repo add (git)

Registra um repositório Git como fonte de manifests

ArgoCD
argocd repo add [email protected]:<OWNER>/<REPO>.git --name GitHub --ssh-private-key-path <SSH KEY PATH> --server localhost:9000 --insecure