mirror of
https://github.com/rancher/rke.git
synced 2025-09-22 20:08:53 +00:00
vendor update
This commit is contained in:
@@ -25,4 +25,4 @@ github.com/ugorji/go/codec ccfe18359b55b97855cee1d3f74e5efbda4869d
|
||||
github.com/Microsoft/go-winio ab35fc04b6365e8fcb18e6e9e41ea4a02b10b175
|
||||
|
||||
github.com/rancher/norman ff60298f31f081b06d198815b4c178a578664f7d
|
||||
github.com/rancher/types 9f5225fa37e5cfe5e0e3321fa66514b4538412e4
|
||||
github.com/rancher/types 6e722de69b9aac5396dc410497890c0fabe5f558
|
||||
|
4
vendor/github.com/rancher/types/apis/management.cattle.io/v3/rke_types.go
generated
vendored
4
vendor/github.com/rancher/types/apis/management.cattle.io/v3/rke_types.go
generated
vendored
@@ -35,6 +35,8 @@ type RancherKubernetesEngineConfig struct {
|
||||
CloudProvider CloudProvider `yaml:"cloud_provider" json:"cloudProvider,omitempty"`
|
||||
// kubernetes directory path
|
||||
PrefixPath string `yaml:"prefix_path" json:"prefixPath,omitempty"`
|
||||
// Number of status check retries for addon deployment jobs
|
||||
AddonJobRetries int `yaml:"addon_job_retries" json:"addonJobRetries,omitempty" norman:"default=5"`
|
||||
}
|
||||
|
||||
type PrivateRegistry struct {
|
||||
@@ -291,6 +293,8 @@ type Process struct {
|
||||
Privileged bool `json:"privileged,omitempty"`
|
||||
// Process healthcheck
|
||||
HealthCheck HealthCheck `json:"healthCheck,omitempty"`
|
||||
// Process docker container Labels
|
||||
Labels map[string]string `json:"labels,omitempty"`
|
||||
}
|
||||
|
||||
type HealthCheck struct {
|
||||
|
@@ -5185,6 +5185,13 @@ func (in *Process) DeepCopyInto(out *Process) {
|
||||
copy(*out, *in)
|
||||
}
|
||||
out.HealthCheck = in.HealthCheck
|
||||
if in.Labels != nil {
|
||||
in, out := &in.Labels, &out.Labels
|
||||
*out = make(map[string]string, len(*in))
|
||||
for key, val := range *in {
|
||||
(*out)[key] = val
|
||||
}
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user