mirror of https://github.com/kubernetes/kops.git
missing DisableSecurityGroupIngress from api files
This commit is contained in:
parent
02fa859b20
commit
1aaf973607
|
@ -668,6 +668,8 @@ type CloudConfiguration struct {
|
|||
Multizone *bool `json:"multizone,omitempty"`
|
||||
NodeTags *string `json:"nodeTags,omitempty"`
|
||||
NodeInstancePrefix *string `json:"nodeInstancePrefix,omitempty"`
|
||||
// AWS cloud-config options
|
||||
DisableSecurityGroupIngress *bool `json:"disableSecurityGroupIngress,omitempty"`
|
||||
|
||||
// vSphere cloud-config specs
|
||||
VSphereUsername *string `json:"vSphereUsername,omitempty"`
|
||||
|
|
|
@ -304,6 +304,7 @@ func autoConvert_v1alpha1_CloudConfiguration_To_kops_CloudConfiguration(in *Clou
|
|||
out.Multizone = in.Multizone
|
||||
out.NodeTags = in.NodeTags
|
||||
out.NodeInstancePrefix = in.NodeInstancePrefix
|
||||
out.DisableSecurityGroupIngress = in.DisableSecurityGroupIngress
|
||||
out.VSphereUsername = in.VSphereUsername
|
||||
out.VSpherePassword = in.VSpherePassword
|
||||
out.VSphereServer = in.VSphereServer
|
||||
|
@ -322,6 +323,7 @@ func autoConvert_kops_CloudConfiguration_To_v1alpha1_CloudConfiguration(in *kops
|
|||
out.Multizone = in.Multizone
|
||||
out.NodeTags = in.NodeTags
|
||||
out.NodeInstancePrefix = in.NodeInstancePrefix
|
||||
out.DisableSecurityGroupIngress = in.DisableSecurityGroupIngress
|
||||
out.VSphereUsername = in.VSphereUsername
|
||||
out.VSpherePassword = in.VSpherePassword
|
||||
out.VSphereServer = in.VSphereServer
|
||||
|
|
|
@ -297,6 +297,8 @@ type CloudConfiguration struct {
|
|||
Multizone *bool `json:"multizone,omitempty"`
|
||||
NodeTags *string `json:"nodeTags,omitempty"`
|
||||
NodeInstancePrefix *string `json:"nodeInstancePrefix,omitempty"`
|
||||
// AWS cloud-config options
|
||||
DisableSecurityGroupIngress *bool `json:"disableSecurityGroupIngress,omitempty"`
|
||||
|
||||
// vSphere cloud-config specs
|
||||
VSphereUsername *string `json:"vSphereUsername,omitempty"`
|
||||
|
|
|
@ -330,6 +330,7 @@ func autoConvert_v1alpha2_CloudConfiguration_To_kops_CloudConfiguration(in *Clou
|
|||
out.Multizone = in.Multizone
|
||||
out.NodeTags = in.NodeTags
|
||||
out.NodeInstancePrefix = in.NodeInstancePrefix
|
||||
out.DisableSecurityGroupIngress = in.DisableSecurityGroupIngress
|
||||
out.VSphereUsername = in.VSphereUsername
|
||||
out.VSpherePassword = in.VSpherePassword
|
||||
out.VSphereServer = in.VSphereServer
|
||||
|
@ -348,6 +349,7 @@ func autoConvert_kops_CloudConfiguration_To_v1alpha2_CloudConfiguration(in *kops
|
|||
out.Multizone = in.Multizone
|
||||
out.NodeTags = in.NodeTags
|
||||
out.NodeInstancePrefix = in.NodeInstancePrefix
|
||||
out.DisableSecurityGroupIngress = in.DisableSecurityGroupIngress
|
||||
out.VSphereUsername = in.VSphereUsername
|
||||
out.VSpherePassword = in.VSpherePassword
|
||||
out.VSphereServer = in.VSphereServer
|
||||
|
|
Loading…
Reference in New Issue