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 @@ -1322,6 +1322,12 @@ spec:
13221322 - --health-probe-bind-address=:8081
13231323 - --metrics-bind-address=:8443
13241324 - --leader-elect
1325+ - --feature-gates=WebhookProviderOpenshiftServiceCA=true
1326+ - --feature-gates=SingleOwnNamespaceInstallSupport=true
1327+ - --feature-gates=PreflightPermissions=true
1328+ - --feature-gates=WebhookProviderCertManager=false
1329+ - --feature-gates=HelmChartSupport=false
1330+ - --feature-gates=BoxcutterRuntime=false
13251331 - --tls-cert=/var/certs/tls.crt
13261332 - --tls-key=/var/certs/tls.key
13271333 - --catalogd-cas-dir=/var/ca-certs
You can’t perform that action at this time.
0 commit comments