diff options
author | theunrealgeek <theunrealgeek@gmail.com> | 2020-05-17 00:37:58 -0700 |
---|---|---|
committer | theunrealgeek <theunrealgeek@gmail.com> | 2020-06-02 20:33:16 -0700 |
commit | ce7a9f03146da33007656ded64be3148d6ec8d77 (patch) | |
tree | 6d240193f465a9482cfa71b51b80c753088931f5 /pkg/domain/entities | |
parent | 95ea39edf34e4de4450c1674721ab02a7cf6a327 (diff) | |
download | podman-ce7a9f03146da33007656ded64be3148d6ec8d77.tar.gz podman-ce7a9f03146da33007656ded64be3148d6ec8d77.tar.bz2 podman-ce7a9f03146da33007656ded64be3148d6ec8d77.zip |
supporting k8s Deployment objects
Signed-off-by: Aditya Kamath <theunrealgeek@gmail.com>
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/play.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/domain/entities/play.go b/pkg/domain/entities/play.go index 4f485cbee..fff86daf9 100644 --- a/pkg/domain/entities/play.go +++ b/pkg/domain/entities/play.go @@ -28,8 +28,8 @@ type PlayKubeOptions struct { // PlayKubeReport contains the results of running play kube. type PlayKubeReport struct { - // Pod - the ID of the created pod. - Pod string + // Pods - the IDs of the created pods. + Pods []string // Containers - the IDs of the containers running in the created pod. Containers []string // Logs - non-fatal erros and log messages while processing. |