mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-29 17:41:13 +00:00
34 lines
1.1 KiB
Go
34 lines
1.1 KiB
Go
// Copyright 2021 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package build
|
|
|
|
import (
|
|
"github.com/spf13/pflag"
|
|
)
|
|
|
|
func AddFunctionBasicsFlags(set *pflag.FlagSet) {
|
|
set.BoolVar(
|
|
&theFlags.fnOptions.Network, "network", false,
|
|
"enable network access for functions that declare it")
|
|
set.StringVar(
|
|
&theFlags.fnOptions.NetworkName, "network-name", "bridge",
|
|
"the docker network to run the container in")
|
|
set.StringArrayVar(
|
|
&theFlags.fnOptions.Mounts, "mount", []string{},
|
|
"a list of storage options read from the filesystem")
|
|
set.StringArrayVarP(
|
|
&theFlags.fnOptions.Env, "env", "e", []string{},
|
|
"a list of environment variables to be used by functions")
|
|
set.BoolVar(
|
|
&theFlags.fnOptions.AsCurrentUser, "as-current-user", false,
|
|
"use the uid and gid of the command executor to run the function in the container")
|
|
}
|
|
|
|
func AddFunctionAlphaEnablementFlags(set *pflag.FlagSet) {
|
|
set.BoolVar(
|
|
&theFlags.fnOptions.EnableExec, "enable-exec", false,
|
|
"enable support for exec functions (raw executables); "+
|
|
"do not use for untrusted configs! (Alpha)")
|
|
}
|