summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortheunrealgeek <theunrealgeek@gmail.com>2020-06-04 18:39:37 -0700
committertheunrealgeek <theunrealgeek@gmail.com>2020-06-04 18:39:37 -0700
commit62b7a770e8a858e7c3c460922f1cf4fef360279c (patch)
treebc96b388490adce2f4bb3d5422dc10935b33f99d
parenta338cd4e8a4c72dbdc1d460f3c19aff7871ee2c4 (diff)
downloadpodman-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>
-rw-r--r--pkg/domain/entities/play.go3
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