Skip to content
This repository was archived by the owner on Mar 25, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions apis/management.cattle.io/v3/rke_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -573,6 +573,8 @@ type VsphereCloudProvider struct {
type GlobalVsphereOpts struct {
User string `json:"user,omitempty" yaml:"user,omitempty" ini:"user,omitempty"`
Password string `json:"password,omitempty" yaml:"password,omitempty" ini:"password,omitempty" norman:"type=password"`
SecretName string `json:"secret-name,omitempty" yaml:"secret-name,omitempty" ini:"secret-name,omitempty"`
SecretNamespace string `json:"secret-namespace,omitempty" yaml:"secret-namespace,omitempty" ini:"secret-namespace,omitempty"`
VCenterIP string `json:"server,omitempty" yaml:"server,omitempty" ini:"server,omitempty"`
VCenterPort string `json:"port,omitempty" yaml:"port,omitempty" ini:"port,omitempty"`
InsecureFlag bool `json:"insecure-flag,omitempty" yaml:"insecure-flag,omitempty" ini:"insecure-flag,omitempty"`
Expand All @@ -588,6 +590,8 @@ type GlobalVsphereOpts struct {
type VirtualCenterConfig struct {
User string `json:"user,omitempty" yaml:"user,omitempty" ini:"user,omitempty"`
Password string `json:"password,omitempty" yaml:"password,omitempty" ini:"password,omitempty" norman:"type=password"`
SecretName string `json:"secret-name,omitempty" yaml:"secret-name,omitempty" ini:"secret-name,omitempty"`
SecretNamespace string `json:"secret-namespace,omitempty" yaml:"secret-namespace,omitempty" ini:"secret-namespace,omitempty"`
VCenterPort string `json:"port,omitempty" yaml:"port,omitempty" ini:"port,omitempty"`
Datacenters string `json:"datacenters,omitempty" yaml:"datacenters,omitempty" ini:"datacenters,omitempty"`
RoundTripperCount int `json:"soap-roundtrip-count,omitempty" yaml:"soap-roundtrip-count,omitempty" ini:"soap-roundtrip-count,omitempty"`
Expand Down
4 changes: 4 additions & 0 deletions client/management/v3/zz_generated_global_vsphere_opts.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ const (
GlobalVsphereOptsFieldInsecureFlag = "insecure-flag"
GlobalVsphereOptsFieldPassword = "password"
GlobalVsphereOptsFieldRoundTripperCount = "soap-roundtrip-count"
GlobalVsphereOptsFieldSecretName = "secret-name"
GlobalVsphereOptsFieldSecretNamespace = "secret-namespace"
GlobalVsphereOptsFieldUser = "user"
GlobalVsphereOptsFieldVCenterIP = "server"
GlobalVsphereOptsFieldVCenterPort = "port"
Expand All @@ -23,6 +25,8 @@ type GlobalVsphereOpts struct {
InsecureFlag bool `json:"insecure-flag,omitempty" yaml:"insecure-flag,omitempty"`
Password string `json:"password,omitempty" yaml:"password,omitempty"`
RoundTripperCount int64 `json:"soap-roundtrip-count,omitempty" yaml:"soap-roundtrip-count,omitempty"`
SecretName string `json:"secret-name,omitempty" yaml:"secret-name,omitempty"`
SecretNamespace string `json:"secret-namespace,omitempty" yaml:"secret-namespace,omitempty"`
User string `json:"user,omitempty" yaml:"user,omitempty"`
VCenterIP string `json:"server,omitempty" yaml:"server,omitempty"`
VCenterPort string `json:"port,omitempty" yaml:"port,omitempty"`
Expand Down
4 changes: 4 additions & 0 deletions client/management/v3/zz_generated_virtual_center_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ const (
VirtualCenterConfigFieldDatacenters = "datacenters"
VirtualCenterConfigFieldPassword = "password"
VirtualCenterConfigFieldRoundTripperCount = "soap-roundtrip-count"
VirtualCenterConfigFieldSecretName = "secret-name"
VirtualCenterConfigFieldSecretNamespace = "secret-namespace"
VirtualCenterConfigFieldUser = "user"
VirtualCenterConfigFieldVCenterPort = "port"
)
Expand All @@ -13,6 +15,8 @@ type VirtualCenterConfig struct {
Datacenters string `json:"datacenters,omitempty" yaml:"datacenters,omitempty"`
Password string `json:"password,omitempty" yaml:"password,omitempty"`
RoundTripperCount int64 `json:"soap-roundtrip-count,omitempty" yaml:"soap-roundtrip-count,omitempty"`
SecretName string `json:"secret-name,omitempty" yaml:"secret-name,omitempty"`
SecretNamespace string `json:"secret-namespace,omitempty" yaml:"secret-namespace,omitempty"`
User string `json:"user,omitempty" yaml:"user,omitempty"`
VCenterPort string `json:"port,omitempty" yaml:"port,omitempty"`
}