1
0
mirror of https://github.com/rancher/types.git synced 2025-06-30 15:31:48 +00:00

Add extra_env to service

This commit is contained in:
Sebastiaan van Steenis 2018-06-08 00:05:20 +02:00 committed by Alena Prokharchyk
parent 67eef838a7
commit fd8f9853de

View File

@ -229,6 +229,8 @@ type BaseService struct {
ExtraArgs map[string]string `yaml:"extra_args" json:"extraArgs,omitempty"`
// Extra binds added to the nodes
ExtraBinds []string `yaml:"extra_binds" json:"extraBinds,omitempty"`
// this is to provide extra env variable to the docker container running kubernetes service
ExtraEnv []string `yaml:"extra_env" json:"extraEnv,omitempty"`
}
type NetworkConfig struct {