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
|`operator.args.installV1CRD`| Whether to install the v1 version of the Materialize CRD and the conversion webhook that converts between v1 and v1alpha1. When false, only the v1alpha1 CRD version is installed and no webhook serving certificate or service is created. |``false``|
146
147
|`operator.args.startupLogFilter`| Log filtering settings for startup logs |``"INFO,mz_orchestratord=TRACE"``|
147
-
|`operator.args.webhookCertReloadInterval`| How often orchestratord reloads its webhook TLS certificate from disk and, when the CA changes, refreshes the conversion webhook's CA bundle. Must be shorter than the certificate's lifetime. Accepts a humantime duration (e.g. "1h", "30m"). Leave null to use the binary default. |``nil``|
148
+
|`operator.args.webhookCertReloadInterval`| How often orchestratord reloads its webhook TLS certificate from disk and, when the CA changes, refreshes the conversion webhook's CA bundle. Must be shorter than the certificate's lifetime. Accepts a humantime duration (e.g. "1h", "30m"). Leave null to use the binary default. Only used if `installV1CRD` is true. |``nil``|
148
149
|`operator.certificate.caDuration`| Lifetime of the root CA that signs the webhook serving certificate, when `source` is "cert-manager". The serving certificate is signed by this CA, so the CA outlives individual serving-certificate rotations. |``"87600h"``|
149
150
|`operator.certificate.caRenewBefore`| How long before the root CA expires to renew it. Must be less than `caDuration`. |``"8760h"``|
150
151
|`operator.certificate.secretName`| Name of a secret in the operator's namespace containing ca.crt, tls.crt, and tls.key entries. Only used if `source` is "secret". |``nil``|
151
-
|`operator.certificate.source`| Where to obtain the certificate for orchestratord. Valid values are 'cert-manager' and 'secret'. |``"cert-manager"``|
152
+
|`operator.certificate.source`| Where to obtain the certificate for orchestratord. Valid values are 'cert-manager' and 'secret'. Only used if `operator.args.installV1CRD` is true. |``"cert-manager"``|
152
153
|`operator.cloudProvider.providers.aws.accountID`| When using AWS, accountID is required |``""``|
Copy file name to clipboardExpand all lines: misc/helm-charts/operator/values.yaml
+9-2Lines changed: 9 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -24,11 +24,16 @@ operator:
24
24
enableInternalStatementLogging: true
25
25
# Newer versions ignore this setting and always enforce license key checks.
26
26
enableLicenseKeyChecks: false
27
+
# -- Whether to install the v1 version of the Materialize CRD and the
28
+
# conversion webhook that converts between v1 and v1alpha1. When false,
29
+
# only the v1alpha1 CRD version is installed and no webhook serving
30
+
# certificate or service is created.
31
+
installV1CRD: false
27
32
# -- (string) How often orchestratord reloads its webhook TLS certificate
28
33
# from disk and, when the CA changes, refreshes the conversion webhook's CA
29
34
# bundle. Must be shorter than the certificate's lifetime. Accepts a
30
35
# humantime duration (e.g. "1h", "30m"). Leave null to use the binary
31
-
# default.
36
+
# default. Only used if `installV1CRD` is true.
32
37
webhookCertReloadInterval: null
33
38
34
39
# -- Additional columns to display when printing the Materialize CRD in table format.
@@ -40,8 +45,10 @@ operator:
40
45
# priority: 2
41
46
# type: "string"
42
47
48
+
# Webhook serving certificate configuration. Only used if
49
+
# `operator.args.installV1CRD` is true.
43
50
certificate:
44
-
# -- (string) Where to obtain the certificate for orchestratord. Valid values are 'cert-manager' and 'secret'.
51
+
# -- (string) Where to obtain the certificate for orchestratord. Valid values are 'cert-manager' and 'secret'. Only used if `operator.args.installV1CRD` is true.
45
52
source: cert-manager
46
53
# -- (string) Name of a secret in the operator's namespace containing ca.crt, tls.crt, and tls.key entries. Only used if `source` is "secret".
0 commit comments