diff options
author | theunrealgeek <theunrealgeek@gmail.com> | 2020-06-04 18:39:37 -0700 |
---|---|---|
committer | theunrealgeek <theunrealgeek@gmail.com> | 2020-06-04 18:39:37 -0700 |
commit | 62b7a770e8a858e7c3c460922f1cf4fef360279c (patch) | |
tree | bc96b388490adce2f4bb3d5422dc10935b33f99d /pkg/domain/entities/play.go | |
parent | a338cd4e8a4c72dbdc1d460f3c19aff7871ee2c4 (diff) | |
download | podman-62b7a770e8a858e7c3c460922f1cf4fef360279c.tar.gz podman-62b7a770e8a858e7c3c460922f1cf4fef360279c.tar.bz2 podman-62b7a770e8a858e7c3c460922f1cf4fef360279c.zip |
Fix missing doc for field in PlayKubePod
Signed-off-by: Aditya Kamath <theunrealgeek@gmail.com>
Diffstat (limited to 'pkg/domain/entities/play.go')
-rw-r--r-- | pkg/domain/entities/play.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/domain/entities/play.go b/pkg/domain/entities/play.go index 58602d3f9..0823bc64e 100644 --- a/pkg/domain/entities/play.go +++ b/pkg/domain/entities/play.go @@ -26,8 +26,9 @@ type PlayKubeOptions struct { SeccompProfileRoot string } -// PlayKubePods represents a single pod and associated containers created by play kube +// PlayKubePod represents a single pod and associated containers created by play kube type PlayKubePod struct { + // ID - ID of the pod created as a result of play kube. ID string // Containers - the IDs of the containers running in the created pod. Containers []string |