...
1# Adds namespace to all resources.
2namespace: redpanda-system
3
4# Value of this field is prepended to the
5# names of all resources, e.g. a deployment named
6# "wordpress" becomes "alices-wordpress".
7# Note that it should also match with the prefix (text before '-') of the namespace
8# field above.
9namePrefix: redpanda-
10
11# Labels to add to all resources and selectors.
12#commonLabels:
13# someName: someValue
14
15resources:
16- ../crd
17- ../rbac
18- ../manager
19# [WEBHOOK] To enable webhook, uncomment all the sections with [WEBHOOK] prefix including the one in
20# crd/kustomization.yaml
21- ../webhook
22# [CERTMANAGER] To enable cert-manager, uncomment all sections with 'CERTMANAGER'. 'WEBHOOK' components are required.
23- ../certmanager
24# [PROMETHEUS] To enable prometheus monitor, uncomment all sections with 'PROMETHEUS'.
25- ../prometheus
26
27patchesStrategicMerge:
28# Protect the /metrics endpoint by putting it behind auth.
29# If you want your controller-manager to expose the /metrics
30# endpoint w/o any authn/z, please comment the following line.
31- manager_auth_proxy_patch.yaml
32
33# Mount the controller config file for loading manager configurations
34# through a ComponentConfig type
35#- manager_config_patch.yaml
36
37# [WEBHOOK] To enable webhook, uncomment all the sections with [WEBHOOK] prefix including the one in
38# crd/kustomization.yaml
39- manager_webhook_patch.yaml
40
41# [CERTMANAGER] To enable cert-manager, uncomment all sections with 'CERTMANAGER'.
42# Uncomment 'CERTMANAGER' sections in crd/kustomization.yaml to enable the CA injection in the admission webhooks.
43# 'CERTMANAGER' needs to be enabled to use ca injection
44- webhookcainjection_patch.yaml
View as plain text