본문 바로가기

: IT/Kubernetes

[아르고CD] argoCD 설치, 삭제

반응형
# 아르고cd 삭제
kubectl delete -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml

 

# 네임스페이스 생성
kubectl create namespace argocd

# 아르고cd 설치
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml

 

 

 

반응형