Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 17 additions & 15 deletions openshift/helm/experimental.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,26 @@
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

options:
# List of enabled experimental features for operator-controller
# Use with {{- if has "FeatureGate" .Value.operatorControllerFeatures }}
# Use with {{- if has "FeatureGate" .Value.operatorController.features.enabled }}
# to pull in resources or additions
operatorControllerFeatures:
- WebhookProviderOpenshiftServiceCA
- SingleOwnNamespaceInstallSupport
- PreflightPermissions

# Not yet supported
# - HelmChartSupport
# - BoxcutterRuntime

operatorController:
features:
enabled:
- WebhookProviderOpenshiftServiceCA
- SingleOwnNamespaceInstallSupport
- PreflightPermissions
disabled:
- WebhookProviderCertManager
- HelmChartSupport
- BoxcutterRuntime
# List of enabled experimental features for catalogd
# Use with {{- if has "FeatureGate" .Value.catalogdFeatures }}
# Use with {{- if has "FeatureGate" .Value.catalogd.features.enabled }}
# to pull in resources or additions
catalogdFeatures:
- APIV1MetasHandler

catalogd:
features:
enabled:
- APIV1MetasHandler
# This can be one of: standard or experimental
options:
featureSet: experimental
3 changes: 3 additions & 0 deletions openshift/operator-controller/manifests-experimental.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1320,6 +1320,9 @@ spec:
- --feature-gates=WebhookProviderOpenshiftServiceCA=true
- --feature-gates=SingleOwnNamespaceInstallSupport=true
- --feature-gates=PreflightPermissions=true
- --feature-gates=WebhookProviderCertManager=false
- --feature-gates=HelmChartSupport=false
- --feature-gates=BoxcutterRuntime=false
- --tls-cert=/var/certs/tls.crt
- --tls-key=/var/certs/tls.key
- --catalogd-cas-dir=/var/ca-certs
Expand Down