mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-11 17:12:51 +00:00
Merge pull request #2909 from Shell32-Natsu/remove-flags
remove --fn-user and --fn-env flags
This commit is contained in:
@@ -65,11 +65,6 @@ func GetRunFnRunner(name string) *RunFnRunner {
|
|||||||
r.Command.Flags().StringArrayVar(
|
r.Command.Flags().StringArrayVar(
|
||||||
&r.Mounts, "mount", []string{},
|
&r.Mounts, "mount", []string{},
|
||||||
"a list of storage options read from the filesystem")
|
"a list of storage options read from the filesystem")
|
||||||
r.Command.Flags().StringVar(
|
|
||||||
&r.User, "fn-user", "nobody", "the username/uid used to run function in container")
|
|
||||||
r.Command.Flags().StringArrayVar(
|
|
||||||
&r.Env, "fn-env", []string{},
|
|
||||||
"a list of environment variables that will be exposed to container. Each item can be key=value pair or a key name of exported env.")
|
|
||||||
return r
|
return r
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -96,8 +91,6 @@ type RunFnRunner struct {
|
|||||||
Network bool
|
Network bool
|
||||||
NetworkName string
|
NetworkName string
|
||||||
Mounts []string
|
Mounts []string
|
||||||
User string
|
|
||||||
Env []string
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *RunFnRunner) runE(c *cobra.Command, args []string) error {
|
func (r *RunFnRunner) runE(c *cobra.Command, args []string) error {
|
||||||
@@ -312,8 +305,6 @@ func (r *RunFnRunner) preRunE(c *cobra.Command, args []string) error {
|
|||||||
EnableExec: r.EnableExec,
|
EnableExec: r.EnableExec,
|
||||||
StorageMounts: storageMounts,
|
StorageMounts: storageMounts,
|
||||||
ResultsDir: r.ResultsDir,
|
ResultsDir: r.ResultsDir,
|
||||||
User: runtimeutil.ContainerUser(r.User),
|
|
||||||
Env: r.Env,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// don't consider args for the function
|
// don't consider args for the function
|
||||||
|
|||||||
@@ -203,8 +203,6 @@ apiVersion: v1
|
|||||||
Path: "dir",
|
Path: "dir",
|
||||||
NetworkName: "bridge",
|
NetworkName: "bridge",
|
||||||
EnableStarlark: true,
|
EnableStarlark: true,
|
||||||
User: "nobody",
|
|
||||||
Env: []string{},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -258,8 +256,6 @@ apiVersion: v1
|
|||||||
Path: "dir",
|
Path: "dir",
|
||||||
NetworkName: "bridge",
|
NetworkName: "bridge",
|
||||||
ResultsDir: "foo/",
|
ResultsDir: "foo/",
|
||||||
User: "nobody",
|
|
||||||
Env: []string{},
|
|
||||||
},
|
},
|
||||||
expected: `
|
expected: `
|
||||||
metadata:
|
metadata:
|
||||||
@@ -287,48 +283,6 @@ apiVersion: v1
|
|||||||
args: []string{"run", "dir", "--image", "foo:bar", "--", "a=b", "c", "e=f"},
|
args: []string{"run", "dir", "--image", "foo:bar", "--", "a=b", "c", "e=f"},
|
||||||
err: "must have keys and values separated by",
|
err: "must have keys and values separated by",
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: "specify username",
|
|
||||||
args: []string{"run", "dir", "--fn-user", "root", "--image", "foo:bar"},
|
|
||||||
path: "dir",
|
|
||||||
expectedStruct: &runfn.RunFns{
|
|
||||||
Path: "dir",
|
|
||||||
NetworkName: "bridge",
|
|
||||||
User: "root",
|
|
||||||
Env: []string{},
|
|
||||||
},
|
|
||||||
expected: `
|
|
||||||
metadata:
|
|
||||||
name: function-input
|
|
||||||
annotations:
|
|
||||||
config.kubernetes.io/function: |
|
|
||||||
container: {image: 'foo:bar'}
|
|
||||||
data: {}
|
|
||||||
kind: ConfigMap
|
|
||||||
apiVersion: v1
|
|
||||||
`,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "specify env",
|
|
||||||
args: []string{"run", "dir", "--fn-env", "foo=bar", "--fn-env", "baz", "--image", "foo:bar"},
|
|
||||||
path: "dir",
|
|
||||||
expectedStruct: &runfn.RunFns{
|
|
||||||
Path: "dir",
|
|
||||||
NetworkName: "bridge",
|
|
||||||
User: "nobody",
|
|
||||||
Env: []string{"foo=bar", "baz"},
|
|
||||||
},
|
|
||||||
expected: `
|
|
||||||
metadata:
|
|
||||||
name: function-input
|
|
||||||
annotations:
|
|
||||||
config.kubernetes.io/function: |
|
|
||||||
container: {image: 'foo:bar'}
|
|
||||||
data: {}
|
|
||||||
kind: ConfigMap
|
|
||||||
apiVersion: v1
|
|
||||||
`,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for i := range tests {
|
for i := range tests {
|
||||||
|
|||||||
Reference in New Issue
Block a user