diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-01-11 17:06:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-11 17:06:49 -0500 |
commit | 63d8f535ec93b5e83257e39b9d656747c4bedfcc (patch) | |
tree | a927d255621be74269f9406466f9f1b3b6adfe35 /pkg/domain/entities | |
parent | 20217f578941a207fadac92535f4b56bca99e424 (diff) | |
parent | 7e3fb33be85122d509756e197aac10c4cf9930b6 (diff) | |
download | podman-63d8f535ec93b5e83257e39b9d656747c4bedfcc.tar.gz podman-63d8f535ec93b5e83257e39b9d656747c4bedfcc.tar.bz2 podman-63d8f535ec93b5e83257e39b9d656747c4bedfcc.zip |
Merge pull request #8917 from mheon/actually_report_play_kube_errors
Ensure that `podman play kube` actually reports errors
Diffstat (limited to 'pkg/domain/entities')
-rw-r--r-- | pkg/domain/entities/play.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/domain/entities/play.go b/pkg/domain/entities/play.go index 0b42e1a3f..6883fe6c5 100644 --- a/pkg/domain/entities/play.go +++ b/pkg/domain/entities/play.go @@ -40,6 +40,9 @@ type PlayKubePod struct { Containers []string // Logs - non-fatal errors and log messages while processing. Logs []string + // ContainerErrors - any errors that occurred while starting containers + // in the pod. + ContainerErrors []string } // PlayKubeReport contains the results of running play kube. |