argo workflows 설치

1 min read

argo workflows 설치

로컬에서 테스트 하기 위해 마니쿠베를 인스톨 한다.

argo workflows release 최신 릴리즈 버전을 인스톨 한다


kubectl create namespace argo
kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v3.3.10/install.yaml

kubectl patch deployment \
  argo-server \
  --namespace argo \
  --type='json' \
  -p='[{"op": "replace", "path": "/spec/template/spec/containers/0/args", "value": [
  "server",
  "--auth-mode=server"
]}]'

아래처럼 포트 포워딩후에 https://localhost:2746/ 접속한다.

kubectl -n argo port-forward deployment/argo-server 2746:2746

참조