1
0
mirror of https://github.com/rancher/types.git synced 2025-07-06 02:06:13 +00:00

AlwaysPullImages generated

This commit is contained in:
Jason Greathouse 2019-01-02 10:44:41 -06:00 committed by Alena Prokharchyk
parent 17e2c13330
commit a6037e6ab7

View File

@ -2,6 +2,7 @@ package client
const (
KubeAPIServiceType = "kubeAPIService"
KubeAPIServiceFieldAlwaysPullImages = "always_pull_images"
KubeAPIServiceFieldExtraArgs = "extraArgs"
KubeAPIServiceFieldExtraBinds = "extraBinds"
KubeAPIServiceFieldExtraEnv = "extraEnv"
@ -12,6 +13,7 @@ const (
)
type KubeAPIService struct {
AlwaysPullImages bool `json:"always_pull_images,omitempty" yaml:"always_pull_images,omitempty"`
ExtraArgs map[string]string `json:"extraArgs,omitempty" yaml:"extraArgs,omitempty"`
ExtraBinds []string `json:"extraBinds,omitempty" yaml:"extraBinds,omitempty"`
ExtraEnv []string `json:"extraEnv,omitempty" yaml:"extraEnv,omitempty"`