Skip to content

Commit e26593e

Browse files
committed
feat(api/config): Add Lifecycle types into Config
Introducing lifecycle hooks into Deis workflow requires that these types be added to config. This change is required in order to make further changes to deiscli and in conjunction with deis/controller#1311
1 parent 5df54e3 commit e26593e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

api/config.go

+4
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ type Config struct {
3131
// (ex 1) or in milli units to reflect the number of CPU shares (ex 500m).
3232
CPU map[string]interface{} `json:"cpu,omitempty"`
3333
// Healthcheck is map of healthchecks for each process that the application uses.
34+
LifecyclePostStart map[string]interface{} `json:"lifecycle_post_start,omitempty"`
35+
// LifecyclePostStart is a map of lifecycle hook handlers for each process that the application uses.
36+
LifecyclePreStop map[string]interface{} `json:"lifecycle_pre_stop,omitempty"`
37+
// LifecyclePreStop is a map of lifecycle hook handlers for each process that the application uses.
3438
Healthcheck map[string]*Healthchecks `json:"healthcheck,omitempty"`
3539
// Tags restrict applications to run on k8s nodes with that label.
3640
Tags map[string]interface{} `json:"tags,omitempty"`

0 commit comments

Comments
 (0)