mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-06 09:27:16 +00:00
* Chore: remove legacy rollout & scope Signed-off-by: Somefive <yd219913@alibaba-inc.com> * remove outdated params Signed-off-by: Somefive <yd219913@alibaba-inc.com> * fix Signed-off-by: Somefive <yd219913@alibaba-inc.com> --------- Signed-off-by: Somefive <yd219913@alibaba-inc.com>
73 lines
4.0 KiB
Go
73 lines
4.0 KiB
Go
/*
|
|
Copyright 2021 The KubeVela Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package core_oam_dev
|
|
|
|
import (
|
|
"github.com/spf13/pflag"
|
|
|
|
"github.com/kubevela/workflow/pkg/cue/packages"
|
|
)
|
|
|
|
// Args args used by controller
|
|
type Args struct {
|
|
|
|
// RevisionLimit is the maximum number of revisions that will be maintained.
|
|
// The default value is 50.
|
|
RevisionLimit int
|
|
|
|
// AppRevisionLimit is the maximum number of application revisions that will be maintained.
|
|
// The default value is 10.
|
|
AppRevisionLimit int
|
|
|
|
// DefRevisionLimit is the maximum number of component/trait definition revisions that will be maintained.
|
|
// The default value is 20.
|
|
DefRevisionLimit int
|
|
|
|
// PackageDiscover used for CRD discovery in CUE packages, a K8s client is contained in it.
|
|
PackageDiscover *packages.PackageDiscover
|
|
|
|
// ConcurrentReconciles is the concurrent reconcile number of the controller
|
|
ConcurrentReconciles int
|
|
|
|
// AutoGenWorkloadDefinition indicates whether automatic generated workloadDefinition which componentDefinition refers to
|
|
AutoGenWorkloadDefinition bool
|
|
|
|
// EnableCompatibility indicates that will change some functions of controller to adapt to multiple platforms, such as asi.
|
|
EnableCompatibility bool
|
|
|
|
// IgnoreAppWithoutControllerRequirement indicates that application controller will not process the app without 'app.oam.dev/controller-version-require' annotation.
|
|
IgnoreAppWithoutControllerRequirement bool
|
|
|
|
// IgnoreDefinitionWithoutControllerRequirement indicates that trait/component/workflowstep definition controller will not process the definition without 'definition.oam.dev/controller-version-require' annotation.
|
|
IgnoreDefinitionWithoutControllerRequirement bool
|
|
}
|
|
|
|
// AddFlags adds flags to the specified FlagSet
|
|
func (a *Args) AddFlags(fs *pflag.FlagSet, c *Args) {
|
|
fs.IntVar(&a.RevisionLimit, "revision-limit", c.RevisionLimit,
|
|
"RevisionLimit is the maximum number of revisions that will be maintained. The default value is 50.")
|
|
fs.IntVar(&a.AppRevisionLimit, "application-revision-limit", c.AppRevisionLimit,
|
|
"application-revision-limit is the maximum number of application useless revisions that will be maintained, if the useless revisions exceed this number, older ones will be GCed first.The default value is 10.")
|
|
fs.IntVar(&a.DefRevisionLimit, "definition-revision-limit", c.DefRevisionLimit,
|
|
"definition-revision-limit is the maximum number of component/trait definition useless revisions that will be maintained, if the useless revisions exceed this number, older ones will be GCed first.The default value is 20.")
|
|
fs.BoolVar(&a.AutoGenWorkloadDefinition, "autogen-workload-definition", c.AutoGenWorkloadDefinition, "Automatic generated workloadDefinition which componentDefinition refers to.")
|
|
fs.IntVar(&a.ConcurrentReconciles, "concurrent-reconciles", c.ConcurrentReconciles, "concurrent-reconciles is the concurrent reconcile number of the controller. The default value is 4")
|
|
fs.BoolVar(&a.EnableCompatibility, "enable-asi-compatibility", c.EnableCompatibility, "enable compatibility for asi")
|
|
fs.BoolVar(&a.IgnoreAppWithoutControllerRequirement, "ignore-app-without-controller-version", c.IgnoreAppWithoutControllerRequirement, "If true, application controller will not process the app without 'app.oam.dev/controller-version-require' annotation")
|
|
fs.BoolVar(&a.IgnoreDefinitionWithoutControllerRequirement, "ignore-definition-without-controller-version", c.IgnoreDefinitionWithoutControllerRequirement, "If true, trait/component/workflowstep definition controller will not process the definition without 'definition.oam.dev/controller-version-require' annotation")
|
|
}
|