mirror of https://github.com/kubernetes/kops.git
Fix merge problems from tenancy
I tried a manual conflict resolve in github; it went _ok_
This commit is contained in:
parent
113b94ca05
commit
9f3d7c3636
|
@ -81,7 +81,7 @@ type InstanceGroupSpec struct {
|
|||
// Currently only applies to AWS.
|
||||
Tenancy string `json:"tenancy,omitempty"`
|
||||
|
||||
// Kubelet overrides kubelet config from the ClusterSpec
|
||||
// Kubelet overrides kubelet config from the ClusterSpec
|
||||
Kubelet *KubeletConfigSpec `json:"kubelet,omitempty"`
|
||||
|
||||
// Taints indicates the kubernetes taints for nodes in this group
|
||||
|
|
|
@ -1040,8 +1040,8 @@ func autoConvert_kops_KubeAPIServerConfig_To_v1alpha1_KubeAPIServerConfig(in *ko
|
|||
out.EtcdServersOverrides = in.EtcdServersOverrides
|
||||
out.AdmissionControl = in.AdmissionControl
|
||||
out.ServiceClusterIPRange = in.ServiceClusterIPRange
|
||||
out.ClientCAFile = in.ClientCAFile
|
||||
out.BasicAuthFile = in.BasicAuthFile
|
||||
out.ClientCAFile = in.ClientCAFile
|
||||
out.TLSCertFile = in.TLSCertFile
|
||||
out.TLSPrivateKeyFile = in.TLSPrivateKeyFile
|
||||
out.TokenAuthFile = in.TokenAuthFile
|
||||
|
|
|
@ -84,11 +84,11 @@ type InstanceGroupSpec struct {
|
|||
// NodeLabels indicates the kubernetes labels for nodes in this group
|
||||
NodeLabels map[string]string `json:"nodeLabels,omitempty"`
|
||||
|
||||
// Describes the tenancy of the instance group. Can be either default or dedicated.
|
||||
// Describes the tenancy of the instance group. Can be either default or dedicated.
|
||||
// Currently only applies to AWS.
|
||||
Tenancy string `json:"tenancy,omitempty"`
|
||||
|
||||
// Kubelet overrides kubelet config from the ClusterSpec
|
||||
// Kubelet overrides kubelet config from the ClusterSpec
|
||||
Kubelet *KubeletConfigSpec `json:"kubelet,omitempty"`
|
||||
|
||||
// Taints indicates the kubernetes taints for nodes in this group
|
||||
|
|
|
@ -1138,8 +1138,8 @@ func autoConvert_kops_KubeAPIServerConfig_To_v1alpha2_KubeAPIServerConfig(in *ko
|
|||
out.EtcdServersOverrides = in.EtcdServersOverrides
|
||||
out.AdmissionControl = in.AdmissionControl
|
||||
out.ServiceClusterIPRange = in.ServiceClusterIPRange
|
||||
out.ClientCAFile = in.ClientCAFile
|
||||
out.BasicAuthFile = in.BasicAuthFile
|
||||
out.ClientCAFile = in.ClientCAFile
|
||||
out.TLSCertFile = in.TLSCertFile
|
||||
out.TLSPrivateKeyFile = in.TLSPrivateKeyFile
|
||||
out.TokenAuthFile = in.TokenAuthFile
|
||||
|
|
Loading…
Reference in New Issue