You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/master/software/install.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -132,6 +132,9 @@ Apply customizations with the command line or with a Helm _values_ file.
132
132
|`extraVolumeMountsCrossplane`| Add custom `volumeMounts` to the Crossplane pod. |`{}`|
133
133
|`extraVolumesCrossplane`| Add custom `volumes` to the Crossplane pod. |`{}`|
134
134
|`function.packages`| A list of Function packages to install |`[]`|
135
+
|`functionCache.medium`| Set to `Memory` to hold the function cache in a RAM backed file system. Useful for Crossplane development. |`""`|
136
+
|`functionCache.pvc`| The name of a PersistentVolumeClaim to use as the function cache. Disables the default function cache `emptyDir` Volume. |`""`|
137
+
|`functionCache.sizeLimit`| The size limit for the function cache. If medium is `Memory` the `sizeLimit` can't exceed Node memory. |`"512Mi"`|
135
138
|`hostNetwork`| Enable `hostNetwork` for the Crossplane deployment. Caution: enabling `hostNetwork` grants the Crossplane Pod access to the host network namespace. Consider setting `dnsPolicy` to `ClusterFirstWithHostNet`. |`false`|
136
139
|`image.pullPolicy`| The image pull policy used for Crossplane and RBAC Manager pods. |`"IfNotPresent"`|
137
140
|`image.repository`| Repository for the Crossplane pod image. |`"xpkg.crossplane.io/crossplane/crossplane"`|
@@ -145,7 +148,6 @@ Apply customizations with the command line or with a Helm _values_ file.
145
148
|`packageCache.medium`| Set to `Memory` to hold the package cache in a RAM backed file system. Useful for Crossplane development. |`""`|
146
149
|`packageCache.pvc`| The name of a PersistentVolumeClaim to use as the package cache. Disables the default package cache `emptyDir` Volume. |`""`|
147
150
|`packageCache.sizeLimit`| The size limit for the package cache. If medium is `Memory` the `sizeLimit` can't exceed Node memory. |`"20Mi"`|
148
-
|`packageManager.enableAutomaticDependencyDowngrade`| Enable automatic dependency version downgrades. This configuration is only used when `--enable-dependency-version-upgrades` flag is passed. |`false`|
149
151
|`podSecurityContextCrossplane`| Add a custom `securityContext` to the Crossplane pod. |`{}`|
150
152
|`podSecurityContextRBACManager`| Add a custom `securityContext` to the RBAC Manager pod. |`{}`|
151
153
|`priorityClassName`| The PriorityClass name to apply to the Crossplane and RBAC Manager pods. |`""`|
@@ -265,10 +267,12 @@ at the table below.
265
267
| Beta | `--enable-deployment-runtime-configs` | Enable support for DeploymentRuntimeConfigs. |
266
268
| Beta | `--enable-usages` | Enable support for Usages. |
267
269
| Beta | `--enable-ssa-claims` | Enable support for using server-side apply to sync claims with XRs. |
270
+
| Beta | `--enable-realtime-compositions` | Enable support for real time compositions. |
268
271
| Alpha | `--enable-external-secret-stores` | Enable support for External Secret Stores. |
269
-
| Alpha | `--enable-realtime-compositions` | Enable support for real time compositions. |
270
-
| Alpha | `--enable-dependency-version-upgrades ` | Enable automatic version upgrades of dependencies when updating packages. |
272
+
| Alpha | `--enable-dependency-version-upgrades` | Enable automatic version upgrades of dependencies when updating packages. |
273
+
| Alpha | `--enable-dependency-version-downgrades` | Enable automatic version downgrades of dependencies when updating packages. |
271
274
| Alpha | `--enable-signature-verification` | Enable support for package signature verification via ImageConfig API. |
275
+
| Alpha | `--enable-function-response-cache` | Enable support for caching composition function responses. |
Beginning with Crossplane version 1.20.0 Crossplane uses the [crossplane-contrib](https://github.com/orgs/crossplane-contrib/packages) GitHub Container Registry at `xpkg.crossplane.io` by default for downloading and
282
-
installing packages.
286
+
installing packages.
283
287
284
288
Change the default registry location during the Crossplane install with
0 commit comments