mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-30 01:46:23 +00:00
17 lines
292 B
Go
17 lines
292 B
Go
// Copyright 2019 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package build
|
|
|
|
import (
|
|
"github.com/spf13/pflag"
|
|
)
|
|
|
|
func AddFlagEnablePlugins(set *pflag.FlagSet) {
|
|
set.BoolVar(
|
|
&theFlags.enable.plugins,
|
|
"enable-alpha-plugins",
|
|
false,
|
|
"enable kustomize plugins")
|
|
}
|