github.com/argoproj/argo-events@v1.9.1/test/manifests/kustomization.yaml (about) 1 apiVersion: kustomize.config.k8s.io/v1beta1 2 kind: Kustomization 3 4 resources: 5 - ../../manifests/cluster-install 6 - ../../manifests/extensions/validating-webhook 7 8 patches: 9 - patch: |- 10 - op: replace 11 path: /spec/template/spec/containers/0/imagePullPolicy 12 value: IfNotPresent 13 target: 14 kind: Deployment 15 name: controller-manager 16 - patch: |- 17 - op: replace 18 path: /spec/template/spec/containers/0/imagePullPolicy 19 value: IfNotPresent 20 target: 21 kind: Deployment 22 name: events-webhook 23 - patch: |- 24 - op: add 25 path: /spec/template/spec/containers/0/env/- 26 value: 27 name: IMAGE_PULL_POLICY 28 value: IfNotPresent 29 target: 30 kind: Deployment 31 name: controller-manager 32 33 namespace: argo-events 34 35 labels: 36 - includeSelectors: true 37 pairs: 38 app.kubernetes.io/part-of: argo-events