1# helm-docs renders these comments into markdown. Use markdown formatting where
4# -- The number of Crossplane pod `replicas` to deploy.
6# -- The number of Crossplane ReplicaSets to retain.
7revisionHistoryLimit: null
8# -- The deployment strategy for the Crossplane and RBAC Manager pods.
9deploymentStrategy: RollingUpdate
11 # -- Repository for the Crossplane pod image.
12 repository: cgr.dev/chainguard-private/crossplane
13 # -- The Crossplane image tag. Defaults to the value of `appVersion` in `Chart.yaml`.
14 tag: 2.1@sha256:e5081bee231a93bb697c019d153001969d9aae371ef94be2f05269369afb6e0c
15 # -- The image pull policy used for Crossplane and RBAC Manager pods.
16 pullPolicy: IfNotPresent
17 # -- Do not use the {{ .image.tag }} value to compute the image uri.
19# -- Add `nodeSelectors` to the Crossplane pod deployment.
21# -- Add `tolerations` to the Crossplane pod deployment.
23# -- Add `affinities` to the Crossplane pod deployment.
25# -- Add `topologySpreadConstraints` to the Crossplane pod deployment.
26topologySpreadConstraints: []
27# -- Enable `hostNetwork` for the Crossplane deployment. Caution: enabling `hostNetwork` grants the Crossplane Pod access to the host network namespace. Consider setting `dnsPolicy` to `ClusterFirstWithHostNet`.
29# -- Specify the `dnsPolicy` to be used by the Crossplane pod.
31# -- Add custom `labels` to the Crossplane pod deployment.
33# -- Add custom `annotations` to the Crossplane pod deployment.
36 # -- Specifies whether Crossplane ServiceAccount should be created
38 # -- Provide the name of an already created Crossplane ServiceAccount. Required when `serviceAccount.create` is `false`
40 # -- Add custom `annotations` to the Crossplane ServiceAccount.
42# -- Enable [leader election](https://docs.crossplane.io/latest/concepts/pods/#leader-election) for the Crossplane pod.
44# -- Add custom arguments to the Crossplane pod.
47 # -- A list of Provider packages to install.
49 # -- Define entries for the default managed resource activation policy. If defined, a default MRAP will contain these activations.
50 defaultActivations: ["*"]
52 # -- A list of Configuration packages to install.
55 # -- A list of Function packages to install
57# -- The imagePullSecret names to add to the Crossplane ServiceAccount.
59registryCaBundleConfig:
60 # -- The ConfigMap name containing a custom CA bundle to enable fetching packages from registries with unknown or untrusted certificates.
62 # -- The ConfigMap key containing a custom CA bundle to enable fetching packages from registries with unknown or untrusted certificates.
65 # -- Configure annotations on the service object. Only enabled when webhooks.enabled = true
68 # -- Enable webhooks for Crossplane and installed Provider packages.
70 # -- The port the webhook server listens on.
73 # -- Deploy the RBAC Manager pod and its required roles.
75 # -- Don't install aggregated Crossplane ClusterRoles.
76 skipAggregatedClusterRoles: false
77 # -- The number of RBAC Manager pod `replicas` to deploy.
79 # -- The number of RBAC Manager ReplicaSets to retain.
80 revisionHistoryLimit: null
81 # -- Enable [leader election](https://docs.crossplane.io/latest/concepts/pods/#leader-election) for the RBAC Manager pod.
83 # -- Add custom arguments to the RBAC Manager pod.
85 # -- Add `nodeSelectors` to the RBAC Manager pod deployment.
87 # -- Add `tolerations` to the RBAC Manager pod deployment.
89 # -- Add `affinities` to the RBAC Manager pod deployment.
91 # -- Add `topologySpreadConstraints` to the RBAC Manager pod deployment.
92 topologySpreadConstraints: []
93# -- The PriorityClass name to apply to the Crossplane and RBAC Manager pods.
95# -- The runtimeClassName name to apply to the Crossplane and RBAC Manager pods.
99 # -- CPU resource limits for the Crossplane pod.
101 # -- Memory resource limits for the Crossplane pod.
104 # -- CPU resource requests for the Crossplane pod.
106 # -- Memory resource requests for the Crossplane pod.
108securityContextCrossplane:
109 # -- The user ID used by the Crossplane pod.
111 # -- The group ID used by the Crossplane pod.
113 # -- Enable `allowPrivilegeEscalation` for the Crossplane pod.
114 allowPrivilegeEscalation: false
115 # -- Set the Crossplane pod root file system as read-only.
116 readOnlyRootFilesystem: true
118 # -- Set to `Memory` to hold the package cache in a RAM backed file system. Useful for Crossplane development.
120 # -- The size limit for the package cache. If medium is `Memory` the `sizeLimit` can't exceed Node memory.
122 # -- The name of a PersistentVolumeClaim to use as the package cache. Disables the default package cache `emptyDir` Volume.
124 # -- The name of a ConfigMap to use as the package cache. Disables the default package cache `emptyDir` Volume.
127 # -- Set to `Memory` to hold the function cache in a RAM backed file system. Useful for Crossplane development.
129 # -- The size limit for the function cache. If medium is `Memory` the `sizeLimit` can't exceed Node memory.
131 # -- The name of a PersistentVolumeClaim to use as the function cache. Disables the default function cache `emptyDir` Volume.
135 # -- CPU resource limits for the RBAC Manager pod.
137 # -- Memory resource limits for the RBAC Manager pod.
140 # -- CPU resource requests for the RBAC Manager pod.
142 # -- Memory resource requests for the RBAC Manager pod.
144securityContextRBACManager:
145 # -- The user ID used by the RBAC Manager pod.
147 # -- The group ID used by the RBAC Manager pod.
149 # -- Enable `allowPrivilegeEscalation` for the RBAC Manager pod.
150 allowPrivilegeEscalation: false
151 # -- Set the RBAC Manager pod root file system as read-only.
152 readOnlyRootFilesystem: true
154 # -- Enable Prometheus path, port and scrape annotations and expose port 8080 for both the Crossplane and RBAC Manager pods.
156 # -- The port the metrics server listens on.
159 # -- The port the readyz server listens on.
161# -- Add custom environmental variables to the Crossplane pod deployment init container.
162# Replaces any `.` in a variable name with `_`. For example, `SAMPLE.KEY=value1` becomes `SAMPLE_KEY=value1`.
163extraEnvVarsCrossplaneInit: {}
164# -- Add custom environmental variables to the Crossplane pod deployment application container.
165# Replaces any `.` in a variable name with `_`. For example, `SAMPLE.KEY=value1` becomes `SAMPLE_KEY=value1`.
166extraEnvVarsCrossplane: {}
167# -- Add custom environmental variables to the RBAC Manager pod deployment.
168# Replaces any `.` in a variable name with `_`. For example, `SAMPLE.KEY=value1` becomes `SAMPLE_KEY=value1`.
169extraEnvVarsRBACManager: {}
170# -- Add a custom `securityContext` to the Crossplane pod.
171podSecurityContextCrossplane: {}
172# -- Add a custom `securityContext` to the RBAC Manager pod.
173podSecurityContextRBACManager: {}
174# -- Add custom `volumes` to the Crossplane pod.
175extraVolumesCrossplane: {}
176# -- Add custom `volumeMounts` to the Crossplane pod.
177extraVolumeMountsCrossplane: {}
178# -- To add arbitrary Kubernetes Objects during a Helm Install