반응형
1. 목표
argocd ingress path를 "/"가 아닌 다른 것으로 사용
2. 설정
2.1 컨테이너 환경변수
--rootpath를 추가하고 ingress path를 입력해줍니다. helm에서 extraArgs에 설정하면 컨테이너 환경변수에 자동으로 추가됩니다.
2.2 ingress설정
환경변수에서 설정한 값과 동일하게 paths를 설정합니다.
▶ helm values.yaml: github.com/choisungwook/portfolio/blob/master/kubernetes/helm/argocd-charts/values.yaml
server:
extraArgs:
- --rootpath
- /argocd
ingress:
# change here
hosts:
- "helloworld.com"
# change here
paths:
- "/argocd"
반응형
'전공영역 공부 기록' 카테고리의 다른 글
jenkins helm: ingress path변경 (0) | 2021.01.11 |
---|---|
kibana helm: ingress path 변경 (0) | 2021.01.11 |
쿠버네티스 대시보드 helm의 ingress path 설정 (1) | 2021.01.11 |
도커 이미지 파일추출과 로드 (0) | 2021.01.03 |
쿠버네티스 대시보드 설치 (0) | 2021.01.03 |