1
0
mirror of https://github.com/rancher/types.git synced 2025-07-19 07:46:25 +00:00

add stdout and stderr to app

This commit is contained in:
Daishan Peng 2018-03-30 15:05:39 -07:00 committed by Darren Shepherd
parent c1cf022f69
commit d8329e8b0e

View File

@ -31,6 +31,8 @@ var (
)
type AppStatus struct {
StdOutput []string `json:"stdOutput,omitempty"`
StdError []string `json:"stdError,omitempty"`
Releases []ReleaseInfo `json:"releases,omitempty"`
Conditions []AppCondition `json:"conditions,omitempty"`
}