File tree Expand file tree Collapse file tree 3 files changed +24
-15
lines changed
Expand file tree Collapse file tree 3 files changed +24
-15
lines changed Original file line number Diff line number Diff line change @@ -860,6 +860,7 @@ spec:
860860 - --leader-elect
861861 - --metrics-bind-address=:7443
862862 - --external-address=catalogd-service.openshift-catalogd.svc
863+ - --feature-gates=APIV1MetasHandler=true
863864 - --tls-cert=/var/certs/tls.crt
864865 - --tls-key=/var/certs/tls.key
865866 - --v=${LOG_VERBOSITY}
Original file line number Diff line number Diff line change 22# This is a YAML-formatted file.
33# Declare variables to be passed into your templates.
44
5+ options :
56# List of enabled experimental features for operator-controller
6- # Use with {{- if has "FeatureGate" .Value.operatorControllerFeatures }}
7+ # Use with {{- if has "FeatureGate" .Value.operatorController.features.enabled }}
78# to pull in resources or additions
8- operatorControllerFeatures :
9- - WebhookProviderOpenshiftServiceCA
10- - SingleOwnNamespaceInstallSupport
11- - PreflightPermissions
12-
13- # Not yet supported
14- # - HelmChartSupport
15- # - BoxcutterRuntime
16-
9+ operatorController :
10+ features :
11+ enabled :
12+ - WebhookProviderOpenshiftServiceCA
13+ - SingleOwnNamespaceInstallSupport
14+ - PreflightPermissions
15+ disabled :
16+ - WebhookProviderCertManager
17+ - HelmChartSupport
18+ - BoxcutterRuntime
1719# List of enabled experimental features for catalogd
18- # Use with {{- if has "FeatureGate" .Value.catalogdFeatures }}
20+ # Use with {{- if has "FeatureGate" .Value.catalogd.features.enabled }}
1921# to pull in resources or additions
20- catalogdFeatures :
21- - APIV1MetasHandler
22-
22+ catalogd :
23+ features :
24+ enabled :
25+ - APIV1MetasHandler
2326# This can be one of: standard or experimental
24- options :
2527 featureSet : experimental
Original file line number Diff line number Diff line change @@ -1213,6 +1213,12 @@ spec:
12131213 - --health-probe-bind-address=:8081
12141214 - --metrics-bind-address=:8443
12151215 - --leader-elect
1216+ - --feature-gates=WebhookProviderOpenshiftServiceCA=true
1217+ - --feature-gates=SingleOwnNamespaceInstallSupport=true
1218+ - --feature-gates=PreflightPermissions=true
1219+ - --feature-gates=WebhookProviderCertManager=false
1220+ - --feature-gates=HelmChartSupport=false
1221+ - --feature-gates=BoxcutterRuntime=false
12161222 - --tls-cert=/var/certs/tls.crt
12171223 - --tls-key=/var/certs/tls.key
12181224 - --catalogd-cas-dir=/var/ca-certs
You can’t perform that action at this time.
0 commit comments