github.com/kubevela/workflow@v0.6.0/pkg/features/controller_features.go (about) 1 /* 2 Copyright 2021 The KubeVela Authors. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 */ 16 17 package features 18 19 import ( 20 "k8s.io/apimachinery/pkg/util/runtime" 21 "k8s.io/apiserver/pkg/util/feature" 22 "k8s.io/component-base/featuregate" 23 ) 24 25 const ( 26 // EnableSuspendOnFailure enable suspend on workflow failure 27 EnableSuspendOnFailure featuregate.Feature = "EnableSuspendOnFailure" 28 // EnableBackupWorkflowRecord enable backup workflow record 29 EnableBackupWorkflowRecord featuregate.Feature = "EnableBackupWorkflowRecord" 30 // EnablePatchStatusAtOnce enable patch status at once 31 EnablePatchStatusAtOnce featuregate.Feature = "EnablePatchStatusAtOnce" 32 // EnableWatchEventListener enable watch event listener 33 EnableWatchEventListener featuregate.Feature = "EnableWatchEventListener" 34 ) 35 36 var defaultFeatureGates = map[featuregate.Feature]featuregate.FeatureSpec{ 37 EnableSuspendOnFailure: {Default: false, PreRelease: featuregate.Alpha}, 38 EnableBackupWorkflowRecord: {Default: false, PreRelease: featuregate.Alpha}, 39 EnablePatchStatusAtOnce: {Default: false, PreRelease: featuregate.Alpha}, 40 EnableWatchEventListener: {Default: false, PreRelease: featuregate.Alpha}, 41 } 42 43 func init() { 44 runtime.Must(feature.DefaultMutableFeatureGate.Add(defaultFeatureGates)) 45 }