mirror of
https://github.com/rancher/rke.git
synced 2025-09-10 19:39:14 +00:00
Types updates
This commit is contained in:
@@ -28,4 +28,4 @@ github.com/matttproud/golang_protobuf_extensions c12348ce28de40eed0136aa2b644d0e
|
|||||||
github.com/mattn/go-colorable efa589957cd060542a26d2dd7832fd6a6c6c3ade
|
github.com/mattn/go-colorable efa589957cd060542a26d2dd7832fd6a6c6c3ade
|
||||||
github.com/mattn/go-isatty 6ca4dbf54d38eea1a992b3c722a76a5d1c4cb25c
|
github.com/mattn/go-isatty 6ca4dbf54d38eea1a992b3c722a76a5d1c4cb25c
|
||||||
github.com/rancher/norman ea122abac582d745a00dba0aaf946c29ee8d9d90
|
github.com/rancher/norman ea122abac582d745a00dba0aaf946c29ee8d9d90
|
||||||
github.com/rancher/types 3d66c9393f0e3472c8eaec8e5dbc41155155a021
|
github.com/rancher/types 4bcdbf31038d7ec8e0f5e4216cac9c56411eb894
|
||||||
|
11
vendor/github.com/rancher/types/apis/management.cattle.io/v3/cluster_types.go
generated
vendored
11
vendor/github.com/rancher/types/apis/management.cattle.io/v3/cluster_types.go
generated
vendored
@@ -20,6 +20,17 @@ func init() {
|
|||||||
type ClusterConditionType string
|
type ClusterConditionType string
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
ClusterActionGenerateKubeconfig = "generateKubeconfig"
|
||||||
|
ClusterActionImportYaml = "importYaml"
|
||||||
|
ClusterActionExportYaml = "exportYaml"
|
||||||
|
ClusterActionViewMonitoring = "viewMonitoring"
|
||||||
|
ClusterActionEditMonitoring = "editMonitoring"
|
||||||
|
ClusterActionEnableMonitoring = "enableMonitoring"
|
||||||
|
ClusterActionDisableMonitoring = "disableMonitoring"
|
||||||
|
ClusterActionBackupEtcd = "backupEtcd"
|
||||||
|
ClusterActionRestoreFromEtcdBackup = "restoreFromEtcdBackup"
|
||||||
|
ClusterActionRotateCertificates = "rotateCertificates"
|
||||||
|
|
||||||
// ClusterConditionReady Cluster ready to serve API (healthy when true, unhealthy when false)
|
// ClusterConditionReady Cluster ready to serve API (healthy when true, unhealthy when false)
|
||||||
ClusterConditionReady condition.Cond = "Ready"
|
ClusterConditionReady condition.Cond = "Ready"
|
||||||
ClusterConditionPending condition.Cond = "Pending"
|
ClusterConditionPending condition.Cond = "Pending"
|
||||||
|
8
vendor/github.com/rancher/types/apis/management.cattle.io/v3/rke_types.go
generated
vendored
8
vendor/github.com/rancher/types/apis/management.cattle.io/v3/rke_types.go
generated
vendored
@@ -16,9 +16,9 @@ type RancherKubernetesEngineConfig struct {
|
|||||||
// List of images used internally for proxy, cert downlaod and kubedns
|
// List of images used internally for proxy, cert downlaod and kubedns
|
||||||
SystemImages RKESystemImages `yaml:"system_images" json:"systemImages,omitempty"`
|
SystemImages RKESystemImages `yaml:"system_images" json:"systemImages,omitempty"`
|
||||||
// SSH Private Key Path
|
// SSH Private Key Path
|
||||||
SSHKeyPath string `yaml:"ssh_key_path" json:"sshKeyPath,omitempty"`
|
SSHKeyPath string `yaml:"ssh_key_path" json:"sshKeyPath,omitempty" norman:"nocreate,noupdate"`
|
||||||
// SSH Certificate Path
|
// SSH Certificate Path
|
||||||
SSHCertPath string `yaml:"ssh_cert_path" json:"sshCertPath,omitempty"`
|
SSHCertPath string `yaml:"ssh_cert_path" json:"sshCertPath,omitempty" norman:"nocreate,noupdate"`
|
||||||
// SSH Agent Auth enable
|
// SSH Agent Auth enable
|
||||||
SSHAgentAuth bool `yaml:"ssh_agent_auth" json:"sshAgentAuth"`
|
SSHAgentAuth bool `yaml:"ssh_agent_auth" json:"sshAgentAuth"`
|
||||||
// Authorization mode configuration used in the cluster
|
// Authorization mode configuration used in the cluster
|
||||||
@@ -504,8 +504,8 @@ type LoadBalancerOpenstackOpts struct {
|
|||||||
LBMethod string `json:"lb-method" yaml:"lb-method" ini:"lb-method,omitempty"` // default to ROUND_ROBIN.
|
LBMethod string `json:"lb-method" yaml:"lb-method" ini:"lb-method,omitempty"` // default to ROUND_ROBIN.
|
||||||
LBProvider string `json:"lb-provider" yaml:"lb-provider" ini:"lb-provider,omitempty"`
|
LBProvider string `json:"lb-provider" yaml:"lb-provider" ini:"lb-provider,omitempty"`
|
||||||
CreateMonitor bool `json:"create-monitor" yaml:"create-monitor" ini:"create-monitor,omitempty"`
|
CreateMonitor bool `json:"create-monitor" yaml:"create-monitor" ini:"create-monitor,omitempty"`
|
||||||
MonitorDelay int `json:"monitor-delay" yaml:"monitor-delay" ini:"monitor-delay,omitempty"`
|
MonitorDelay string `json:"monitor-delay" yaml:"monitor-delay" ini:"monitor-delay,omitempty"`
|
||||||
MonitorTimeout int `json:"monitor-timeout" yaml:"monitor-timeout" ini:"monitor-timeout,omitempty"`
|
MonitorTimeout string `json:"monitor-timeout" yaml:"monitor-timeout" ini:"monitor-timeout,omitempty"`
|
||||||
MonitorMaxRetries int `json:"monitor-max-retries" yaml:"monitor-max-retries" ini:"monitor-max-retries,omitempty"`
|
MonitorMaxRetries int `json:"monitor-max-retries" yaml:"monitor-max-retries" ini:"monitor-max-retries,omitempty"`
|
||||||
ManageSecurityGroups bool `json:"manage-security-groups" yaml:"manage-security-groups" ini:"manage-security-groups,omitempty"`
|
ManageSecurityGroups bool `json:"manage-security-groups" yaml:"manage-security-groups" ini:"manage-security-groups,omitempty"`
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user