...
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
20patchesStrategicMerge:
21# Protect the /metrics endpoint by putting it behind auth.
22# If you want your controller-manager to expose the /metrics
23# endpoint w/o any authn/z, please comment the following line.
24- manager_auth_proxy_patch.yaml
View as plain text