diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-11-16 16:27:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-16 16:27:34 +0100 |
commit | f031bd23c6f5f790dde383d542c940bfe2dfaadd (patch) | |
tree | 34d460f57b3ecf7491ec92a296ebd68e233e8bf6 /pkg/domain/entities/pods.go | |
parent | 8430ffc72e74f1271174984674a1c2ee6118779e (diff) | |
parent | 44d1618dd7eeb2560571b14ba5cece69a93dcaff (diff) | |
download | podman-f031bd23c6f5f790dde383d542c940bfe2dfaadd.tar.gz podman-f031bd23c6f5f790dde383d542c940bfe2dfaadd.tar.bz2 podman-f031bd23c6f5f790dde383d542c940bfe2dfaadd.zip |
Merge pull request #12100 from rhatdan/env
Add option --unsetenv to remove default environment variables
Diffstat (limited to 'pkg/domain/entities/pods.go')
-rw-r--r-- | pkg/domain/entities/pods.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/domain/entities/pods.go b/pkg/domain/entities/pods.go index 70d2be1e6..b255785c2 100644 --- a/pkg/domain/entities/pods.go +++ b/pkg/domain/entities/pods.go @@ -248,6 +248,8 @@ type ContainerCreateOptions struct { TTY bool Timezone string Umask string + UnsetEnv []string + UnsetEnvAll bool UIDMap []string Ulimit []string User string |