diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-10-09 06:01:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-09 06:01:50 -0400 |
commit | 953e16f31a3a6954198f93ff9e2179dd25c50d94 (patch) | |
tree | b2dbc3516a3d2ba3ff62f0a7d436cd7e40b200cd /pkg/domain/entities/play.go | |
parent | db684f970f7da056ac19655c1b254cbfc216fdcd (diff) | |
parent | 39dde9bcb7b3a01395522d51afe42a1cae92be15 (diff) | |
download | podman-953e16f31a3a6954198f93ff9e2179dd25c50d94.tar.gz podman-953e16f31a3a6954198f93ff9e2179dd25c50d94.tar.bz2 podman-953e16f31a3a6954198f93ff9e2179dd25c50d94.zip |
Merge pull request #7910 from EduardoVega/7567-podman-configmaps
Enable k8s configmaps as flags for play kube
Diffstat (limited to 'pkg/domain/entities/play.go')
-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 |