mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
472 B
15 lines
472 B
package release
|
|
|
|
import "time"
|
|
|
|
// Info describes release information.
|
|
type Info struct {
|
|
Status *Status `json:"status,omitempty"`
|
|
FirstDeployed time.Time `json:"first_deployed,omitempty"`
|
|
LastDeployed time.Time `json:"last_deployed,omitempty"`
|
|
// Deleted tracks when this object was deleted.
|
|
Deleted time.Time `json:"deleted,omitempty"`
|
|
// Description is human-friendly "log entry" about this release.
|
|
Description string `json:"Description,omitempty"`
|
|
}
|