diff options
author | Eduardo Vega <edvegavalerio@gmail.com> | 2020-09-24 08:27:01 -0600 |
---|---|---|
committer | Eduardo Vega <edvegavalerio@gmail.com> | 2020-10-07 08:54:24 -0600 |
commit | 39dde9bcb7b3a01395522d51afe42a1cae92be15 (patch) | |
tree | babbf92c39f06368eb807143eb3e2a900c9952f5 /pkg/domain/entities | |
parent | a7500e54a4646c7db477349e2530ac13df77b8fa (diff) | |
download | podman-39dde9bcb7b3a01395522d51afe42a1cae92be15.tar.gz podman-39dde9bcb7b3a01395522d51afe42a1cae92be15.tar.bz2 podman-39dde9bcb7b3a01395522d51afe42a1cae92be15.zip |
Enable k8s configmaps as flags for play kube
Signed-off-by: Eduardo Vega <edvegavalerio@gmail.com>
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/play.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/domain/entities/play.go b/pkg/domain/entities/play.go index 2ba369b83..356e6869d 100644 --- a/pkg/domain/entities/play.go +++ b/pkg/domain/entities/play.go @@ -24,6 +24,8 @@ type PlayKubeOptions struct { // SeccompProfileRoot - path to a directory containing seccomp // profiles. SeccompProfileRoot string + // ConfigMaps - slice of pathnames to kubernetes configmap YAMLs. + ConfigMaps []string } // PlayKubePod represents a single pod and associated containers created by play kube |