mirror of
https://github.com/rancher/rke.git
synced 2025-09-09 19:09:51 +00:00
vendor update
This commit is contained in:
@@ -24,4 +24,4 @@ github.com/coreos/go-semver e214231b295a8ea9479f11b70b35d5acf3556d9
|
|||||||
github.com/ugorji/go/codec ccfe18359b55b97855cee1d3f74e5efbda4869dc
|
github.com/ugorji/go/codec ccfe18359b55b97855cee1d3f74e5efbda4869dc
|
||||||
|
|
||||||
github.com/rancher/norman ff60298f31f081b06d198815b4c178a578664f7d
|
github.com/rancher/norman ff60298f31f081b06d198815b4c178a578664f7d
|
||||||
github.com/rancher/types 41ed2c450fa4d717f2a4d3652d87a35eb60aa061
|
github.com/rancher/types aa395f86d553756013766ca164fd01c91c645ac6
|
||||||
|
15
vendor/github.com/rancher/types/apis/management.cattle.io/v3/k8s_defaults.go
generated
vendored
15
vendor/github.com/rancher/types/apis/management.cattle.io/v3/k8s_defaults.go
generated
vendored
@@ -14,6 +14,11 @@ var (
|
|||||||
K8sV110: v110SystemImages,
|
K8sV110: v110SystemImages,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// K8sVersionServiceOptions - service options per k8s version
|
||||||
|
K8sVersionServiceOptions = map[string]KubernetesServicesOptions{
|
||||||
|
K8sV110: v110ServiceOptions,
|
||||||
|
}
|
||||||
|
|
||||||
// K8SVersionToSystemImages16 - images map for 1.6. Keeping it sepate in case we have to diverge
|
// K8SVersionToSystemImages16 - images map for 1.6. Keeping it sepate in case we have to diverge
|
||||||
K8SVersionToSystemImages16 = map[string]RKESystemImages{
|
K8SVersionToSystemImages16 = map[string]RKESystemImages{
|
||||||
K8sV18: v18SystemImages,
|
K8sV18: v18SystemImages,
|
||||||
@@ -136,4 +141,14 @@ var (
|
|||||||
Tiller: "rancher/tiller:v2.8.2",
|
Tiller: "rancher/tiller:v2.8.2",
|
||||||
Dashboard: "rancher/kubernetes-dashboard-amd64:v1.8.3",
|
Dashboard: "rancher/kubernetes-dashboard-amd64:v1.8.3",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// v110 service options
|
||||||
|
v110ServiceOptions = KubernetesServicesOptions{
|
||||||
|
KubeAPI: map[string]string{
|
||||||
|
"tls-cipher-suites": "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305",
|
||||||
|
},
|
||||||
|
Kubelet: map[string]string{
|
||||||
|
"tls-cipher-suites": "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305",
|
||||||
|
},
|
||||||
|
}
|
||||||
)
|
)
|
||||||
|
13
vendor/github.com/rancher/types/apis/management.cattle.io/v3/rke_types.go
generated
vendored
13
vendor/github.com/rancher/types/apis/management.cattle.io/v3/rke_types.go
generated
vendored
@@ -409,3 +409,16 @@ type FlannelNetworkProvider struct {
|
|||||||
|
|
||||||
type CanalNetworkProvider struct {
|
type CanalNetworkProvider struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type KubernetesServicesOptions struct {
|
||||||
|
// Additional options passed to KubeAPI
|
||||||
|
KubeAPI map[string]string `json:"kubeapi"`
|
||||||
|
// Additional options passed to Kubelet
|
||||||
|
Kubelet map[string]string `json:"kubelet"`
|
||||||
|
// Additional options passed to Kubeproxy
|
||||||
|
Kubeproxy map[string]string `json:"kubeproxy"`
|
||||||
|
// Additional options passed to KubeController
|
||||||
|
KubeController map[string]string `json:"kubeController"`
|
||||||
|
// Additional options passed to Scheduler
|
||||||
|
Scheduler map[string]string `json:"scheduler"`
|
||||||
|
}
|
||||||
|
55
vendor/github.com/rancher/types/apis/management.cattle.io/v3/zz_generated_deepcopy.go
generated
vendored
55
vendor/github.com/rancher/types/apis/management.cattle.io/v3/zz_generated_deepcopy.go
generated
vendored
@@ -388,6 +388,10 @@ func RegisterDeepCopies(scheme *runtime.Scheme) error {
|
|||||||
in.(*KubeproxyService).DeepCopyInto(out.(*KubeproxyService))
|
in.(*KubeproxyService).DeepCopyInto(out.(*KubeproxyService))
|
||||||
return nil
|
return nil
|
||||||
}, InType: reflect.TypeOf(&KubeproxyService{})},
|
}, InType: reflect.TypeOf(&KubeproxyService{})},
|
||||||
|
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||||
|
in.(*KubernetesServicesOptions).DeepCopyInto(out.(*KubernetesServicesOptions))
|
||||||
|
return nil
|
||||||
|
}, InType: reflect.TypeOf(&KubernetesServicesOptions{})},
|
||||||
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
conversion.GeneratedDeepCopyFunc{Fn: func(in interface{}, out interface{}, c *conversion.Cloner) error {
|
||||||
in.(*ListOpts).DeepCopyInto(out.(*ListOpts))
|
in.(*ListOpts).DeepCopyInto(out.(*ListOpts))
|
||||||
return nil
|
return nil
|
||||||
@@ -3260,6 +3264,57 @@ func (in *KubeproxyService) DeepCopy() *KubeproxyService {
|
|||||||
return out
|
return out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||||
|
func (in *KubernetesServicesOptions) DeepCopyInto(out *KubernetesServicesOptions) {
|
||||||
|
*out = *in
|
||||||
|
if in.KubeAPI != nil {
|
||||||
|
in, out := &in.KubeAPI, &out.KubeAPI
|
||||||
|
*out = make(map[string]string, len(*in))
|
||||||
|
for key, val := range *in {
|
||||||
|
(*out)[key] = val
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if in.Kubelet != nil {
|
||||||
|
in, out := &in.Kubelet, &out.Kubelet
|
||||||
|
*out = make(map[string]string, len(*in))
|
||||||
|
for key, val := range *in {
|
||||||
|
(*out)[key] = val
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if in.Kubeproxy != nil {
|
||||||
|
in, out := &in.Kubeproxy, &out.Kubeproxy
|
||||||
|
*out = make(map[string]string, len(*in))
|
||||||
|
for key, val := range *in {
|
||||||
|
(*out)[key] = val
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if in.KubeController != nil {
|
||||||
|
in, out := &in.KubeController, &out.KubeController
|
||||||
|
*out = make(map[string]string, len(*in))
|
||||||
|
for key, val := range *in {
|
||||||
|
(*out)[key] = val
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if in.Scheduler != nil {
|
||||||
|
in, out := &in.Scheduler, &out.Scheduler
|
||||||
|
*out = make(map[string]string, len(*in))
|
||||||
|
for key, val := range *in {
|
||||||
|
(*out)[key] = val
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubernetesServicesOptions.
|
||||||
|
func (in *KubernetesServicesOptions) DeepCopy() *KubernetesServicesOptions {
|
||||||
|
if in == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
out := new(KubernetesServicesOptions)
|
||||||
|
in.DeepCopyInto(out)
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
|
||||||
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
|
||||||
func (in *ListOpts) DeepCopyInto(out *ListOpts) {
|
func (in *ListOpts) DeepCopyInto(out *ListOpts) {
|
||||||
*out = *in
|
*out = *in
|
||||||
|
Reference in New Issue
Block a user