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: cluster/charts/crossplane/README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,6 +90,7 @@ and their default values.
90
90
|`packageCache.medium`| Set to `Memory` to hold the package cache in a RAM backed file system. Useful for Crossplane development. |`""`|
91
91
|`packageCache.pvc`| The name of a PersistentVolumeClaim to use as the package cache. Disables the default package cache `emptyDir` Volume. |`""`|
92
92
|`packageCache.sizeLimit`| The size limit for the package cache. If medium is `Memory` the `sizeLimit` can't exceed Node memory. |`"20Mi"`|
93
+
|`packageManager.enableAutomaticDependencyDowngrade`| Enable automatic dependency version downgrades. This configuration is only used when `--enable-dependency-version-upgrades` flag is passed. |`false`|
93
94
|`podSecurityContextCrossplane`| Add a custom `securityContext` to the Crossplane pod. |`{}`|
94
95
|`podSecurityContextRBACManager`| Add a custom `securityContext` to the RBAC Manager pod. |`{}`|
95
96
|`priorityClassName`| The PriorityClass name to apply to the Crossplane and RBAC Manager pods. |`""`|
Copy file name to clipboardExpand all lines: cmd/crossplane/core/core.go
+15-9Lines changed: 15 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,8 @@ type startCommand struct {
102
102
MaxReconcileRateint`default:"100" help:"The global maximum rate per second at which resources may checked for drift from the desired state."`
103
103
MaxConcurrentPackageEstablishersint`default:"10" help:"The the maximum number of goroutines to use for establishing Providers, Configurations and Functions."`
AutomaticDependencyDowngradeEnabledbool`default:"false" env:"AUTOMATIC_DEPENDENCY_DOWNGRADE_ENABLED" help:"Enable automatic dependency version downgrades. This configuration requires the 'EnableDependencyVersionUpgrades' feature flag to be enabled."`
106
107
107
108
TLSServerSecretNamestring`env:"TLS_SERVER_SECRET_NAME" help:"The name of the TLS Secret that will store Crossplane's server certificate."`
108
109
TLSServerCertsDirstring`env:"TLS_SERVER_CERTS_DIR" help:"The path of the folder which will store TLS server certificate of Crossplane."`
0 commit comments