Skip to content
Open
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
18 changes: 17 additions & 1 deletion api/operator/v1alpha1/features.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,24 @@ var (
// For more details,
// https://github.com/openshift/enhancements/blob/master/enhancements/cert-manager/istio-csr-controller.md
FeatureIstioCSR featuregate.Feature = "IstioCSR"

// TrustManager enables the controller for trustmanagers.operator.openshift.io resource,
// which extends cert-manager-operator to deploy and manage the trust-manager operand.
// trust-manager provides a way to manage trust bundles in Kubernetes and OpenShift clusters.
// It takes a list of trusted certificate sources and combines them into a bundle which
// applications can trust directly.
//
// This feature requires both the operator feature gate to be enabled AND the OpenShift cluster
// to be configured with a TechPreview-compatible feature set (TechPreviewNoUpgrade,
// DevPreviewNoUpgrade, or CustomNoUpgrade). On MicroShift, only the operator feature gate
// is required.
//
// For more details,
// https://github.com/openshift/enhancements/blob/master/enhancements/cert-manager/trust-manager-controller.md
FeatureTrustManager featuregate.Feature = "TrustManager"
)

var OperatorFeatureGates = map[featuregate.Feature]featuregate.FeatureSpec{
FeatureIstioCSR: {Default: true, PreRelease: featuregate.GA},
FeatureIstioCSR: {Default: true, PreRelease: featuregate.GA},
FeatureTrustManager: {Default: false, PreRelease: featuregate.Alpha},
}
Loading