argo workflows 설치

argo workflows 설치

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

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

1
2
3
4

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

1
2
3
4
5
6
7
8
9
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/ 접속한다.

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

참조