1 개요[ | ]
- Kustomize ingress 호스트 패치
2 patchesJson6902[ | ]
2.1 별도 파일[ | ]
kustomization.yaml
yaml
Copy
patchesJson6902:
- target:
kind: Ingress
name: my-nginx
path: patch.yaml
patch.yaml
yaml
Copy
- op: replace
path: /spec/rules/0/host
value: foo.bar.com
2.2 인라인[ | ]
kustomization.yaml
yaml
Copy
patchesJSON6902:
- target:
kind: Ingress
name: minimal-ingress
patch: |
- op: replace
path: /spec/rules/0/host
value: foo.bar.com
3 같이 보기[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.