Kustomize 패치

(Kustomize patches에서 넘어옴)

1 개요[ | ]

Kustomize patches
Kustomize 패치
  • 패치 메커니즘은 patchesStrategicMergepatchesJson6902의 두 종류가 있다.

2 예시: replicas 패치[ | ]

patchesStrategicMerge
patchesStrategicMerge:
- |
  apiVersion: apps/v1
  kind: Deployment
  metadata:
    name: my-nginx
  spec:
    replicas: 3
patchesJson6902
patchesJson6902:
- target:
    kind: Deployment
    name: my-nginx
  path: |
    - op: replace
      path: /spec/replicas
      value: 3

3 같이 보기[ | ]

4 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}