Skip to content

Commit 54fe9ad

Browse files
Merge pull request #364 from abays/OSPRH-19163
[OSPRH-19163] Remove deprecated Kustomize fields config dir
2 parents 76ceb18 + 9a5e957 commit 54fe9ad

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

config/crd/kustomization.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ resources:
1313

1414
#+kubebuilder:scaffold:crdkustomizeresource
1515

16-
patchesStrategicMerge:
16+
patches:
1717
# [WEBHOOK] To enable webhook, uncomment all the sections with [WEBHOOK] prefix.
1818
# patches here are for enabling the conversion webhook for each CRD
19-
#- patches/webhook_in_designateapis.yaml
19+
#- path: patches/webhook_in_designateapis.yaml
2020
#+kubebuilder:scaffold:crdkustomizewebhookpatch
2121

2222
# [CERTMANAGER] To enable cert-manager, uncomment all the sections with [CERTMANAGER] prefix.
2323
# patches here are for enabling the CA injection for each CRD
24-
#- patches/cainjection_in_designateapis.yaml
24+
#- path: patches/cainjection_in_designateapis.yaml
2525
#+kubebuilder:scaffold:crdkustomizecainjectionpatch
2626

2727
# the following config is for teaching kustomize how to do kustomization for CRDs.

config/default/kustomization.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namePrefix: designate-operator-
1212
#commonLabels:
1313
# someName: someValue
1414

15-
bases:
15+
resources:
1616
- ../crd
1717
- ../rbac
1818
- ../manager
@@ -24,27 +24,27 @@ bases:
2424
# [PROMETHEUS] To enable prometheus monitor, uncomment all sections with 'PROMETHEUS'.
2525
#- ../prometheus
2626

27-
patchesStrategicMerge:
27+
patches:
2828
# Protect the /metrics endpoint by putting it behind auth.
2929
# If you want your controller-manager to expose the /metrics
3030
# endpoint w/o any authn/z, please comment the following line.
31-
- manager_auth_proxy_patch.yaml
31+
- path: manager_auth_proxy_patch.yaml
3232

3333
# Mount the controller config file for loading manager configurations
3434
# through a ComponentConfig type
3535
#- manager_config_patch.yaml
3636

3737
# [WEBHOOK] To enable webhook, uncomment all the sections with [WEBHOOK] prefix including the one in
3838
# crd/kustomization.yaml
39-
- manager_webhook_patch.yaml
39+
- path: manager_webhook_patch.yaml
4040

4141
# [CERTMANAGER] To enable cert-manager, uncomment all sections with 'CERTMANAGER'.
4242
# Uncomment 'CERTMANAGER' sections in crd/kustomization.yaml to enable the CA injection in the admission webhooks.
4343
# 'CERTMANAGER' needs to be enabled to use ca injection
44-
#- webhookcainjection_patch.yaml
44+
#- path: webhookcainjection_patch.yaml
4545

4646
# Injects our custom images (ENV variable settings)
47-
- manager_default_images.yaml
47+
- path: manager_default_images.yaml
4848

4949
# the following config is for teaching kustomize how to do var substitution
5050
vars:

config/manifests/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ resources:
99
# [WEBHOOK] To enable webhooks, uncomment all the sections with [WEBHOOK] prefix.
1010
# Do NOT uncomment sections with prefix [CERTMANAGER], as OLM does not support cert-manager.
1111
# These patches remove the unnecessary "cert" volume and its manager container volumeMount.
12-
#patchesJson6902:
12+
#patches:
1313
#- target:
1414
# group: apps
1515
# version: v1

config/scorecard/kustomization.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
resources:
22
- bases/config.yaml
3-
patchesJson6902:
3+
patches:
44
- path: patches/basic.config.yaml
55
target:
66
group: scorecard.operatorframework.io
@@ -13,4 +13,4 @@ patchesJson6902:
1313
version: v1alpha3
1414
kind: Configuration
1515
name: config
16-
#+kubebuilder:scaffold:patchesJson6902
16+
#+kubebuilder:scaffold:patches

0 commit comments

Comments
 (0)