Documentation ¶
Index ¶
- Constants
- func AddEtcdMember(ctx context.Context, toAddEtcdHost *hosts.Host, etcdHosts []*hosts.Host, ...) error
- func DownloadEtcdSnapshotFromBackupServer(ctx context.Context, etcdHost *hosts.Host, ...) error
- func DownloadEtcdSnapshotFromS3(ctx context.Context, etcdHost *hosts.Host, ...) error
- func GetEtcdConnString(hosts []*hosts.Host, hostAddress string) string
- func GetEtcdInitialCluster(hosts []*hosts.Host) string
- func GetEtcdSnapshotChecksum(ctx context.Context, etcdHost *hosts.Host, ...) (string, error)
- func GetHealthCheckURL(useTLS bool, port int) string
- func GetProcessConfig(process v3.Process) (*container.Config, *container.HostConfig, string)
- func IsEtcdMember(ctx context.Context, etcdHost *hosts.Host, etcdHosts []*hosts.Host, ...) (bool, error)
- func ReloadEtcdCluster(ctx context.Context, readyEtcdHosts []*hosts.Host, newHost *hosts.Host, ...) error
- func RemoveControlPlane(ctx context.Context, controlHosts []*hosts.Host, force bool) error
- func RemoveEtcdMember(ctx context.Context, etcdHost *hosts.Host, etcdHosts []*hosts.Host, ...) error
- func RemoveEtcdPlane(ctx context.Context, etcdHosts []*hosts.Host, force bool) error
- func RemoveWorkerPlane(ctx context.Context, workerHosts []*hosts.Host, force bool) error
- func RestartControlPlane(ctx context.Context, controlHosts []*hosts.Host) error
- func RestartEtcdPlane(ctx context.Context, etcdHosts []*hosts.Host) error
- func RestartKubeAPI(ctx context.Context, host *hosts.Host) error
- func RestartKubeController(ctx context.Context, host *hosts.Host) error
- func RestartKubelet(ctx context.Context, host *hosts.Host) error
- func RestartKubeproxy(ctx context.Context, host *hosts.Host) error
- func RestartNginxProxy(ctx context.Context, host *hosts.Host) error
- func RestartScheduler(ctx context.Context, host *hosts.Host) error
- func RestartWorkerPlane(ctx context.Context, workerHosts []*hosts.Host) error
- func RestoreEtcdSnapshot(ctx context.Context, etcdHost *hosts.Host, ...) error
- func RunControlPlane(ctx context.Context, controlHosts []*hosts.Host, ...) error
- func RunEtcdPlane(ctx context.Context, etcdHosts []*hosts.Host, ...) error
- func RunEtcdSnapshotRemove(ctx context.Context, etcdHost *hosts.Host, ...) error
- func RunEtcdSnapshotSave(ctx context.Context, etcdHost *hosts.Host, ...) error
- func RunWorkerPlane(ctx context.Context, allHosts []*hosts.Host, ...) error
- func StartBackupServer(ctx context.Context, etcdHost *hosts.Host, ...) error
- type RestartFunc
Constants ¶
View Source
const ( EtcdSnapshotPath = "/opt/rke/etcd-snapshots/" EtcdRestorePath = "/opt/rke/etcd-snapshots-restore/" EtcdDataDir = "/var/lib/rancher/etcd/" EtcdInitWaitTime = 10 EtcdSnapshotWaitTime = 5 EtcdSnapshotCompressedExtension = "zip" )
View Source
const ( HealthzAddress = "localhost" HealthzEndpoint = "/healthz" HTTPProtoPrefix = "http://" HTTPSProtoPrefix = "https://" )
View Source
const ( NginxProxyImage = "rancher/rke-nginx-proxy:0.1.0" NginxProxyEnvName = "CP_HOSTS" )
View Source
const ( ETCDRole = "etcd" ControlRole = "controlplane" WorkerRole = "worker" SidekickServiceName = "sidekick" RBACAuthorizationMode = "rbac" KubeAPIContainerName = "kube-apiserver" KubeletContainerName = "kubelet" KubeproxyContainerName = "kube-proxy" KubeControllerContainerName = "kube-controller-manager" SchedulerContainerName = "kube-scheduler" EtcdContainerName = "etcd" EtcdSnapshotContainerName = "etcd-rolling-snapshots" EtcdSnapshotOnceContainerName = "etcd-snapshot-once" EtcdSnapshotRemoveContainerName = "etcd-remove-snapshot" EtcdRestoreContainerName = "etcd-restore" EtcdDownloadBackupContainerName = "etcd-download-backup" EtcdServeBackupContainerName = "etcd-Serve-backup" EtcdChecksumContainerName = "etcd-checksum-checker" NginxProxyContainerName = "nginx-proxy" SidekickContainerName = "service-sidekick" LogLinkContainerName = "rke-log-linker" LogCleanerContainerName = "rke-log-cleaner" KubeAPIPort = 6443 SchedulerPort = 10251 KubeControllerPort = 10252 KubeletPort = 10248 KubeproxyPort = 10256 WorkerThreads = util.WorkerThreads )
Variables ¶
This section is empty.
Functions ¶
func AddEtcdMember ¶
func DownloadEtcdSnapshotFromBackupServer ¶ added in v0.2.0
func DownloadEtcdSnapshotFromS3 ¶ added in v0.2.0
func GetEtcdInitialCluster ¶ added in v0.1.2
func GetEtcdSnapshotChecksum ¶ added in v0.2.0
func GetHealthCheckURL ¶ added in v0.1.2
func GetProcessConfig ¶ added in v0.1.2
func IsEtcdMember ¶ added in v0.1.2
func ReloadEtcdCluster ¶
func RemoveControlPlane ¶
func RemoveEtcdMember ¶
func RemoveEtcdPlane ¶
func RemoveWorkerPlane ¶
func RestartControlPlane ¶ added in v0.1.18
func RestartEtcdPlane ¶ added in v0.2.0
func RestartKubeAPI ¶ added in v0.1.18
func RestartKubeController ¶ added in v0.1.18
func RestartKubelet ¶ added in v0.1.18
func RestartKubeproxy ¶ added in v0.1.18
func RestartNginxProxy ¶ added in v0.1.18
func RestartScheduler ¶ added in v0.1.18
func RestartWorkerPlane ¶ added in v0.1.18
func RestoreEtcdSnapshot ¶ added in v0.1.7
func RunControlPlane ¶
func RunControlPlane(ctx context.Context, controlHosts []*hosts.Host, localConnDialerFactory hosts.DialerFactory, prsMap map[string]v3.PrivateRegistry, cpNodePlanMap map[string]v3.RKEConfigNodePlan, updateWorkersOnly bool, alpineImage string, certMap map[string]pki.CertificatePKI) error
func RunEtcdPlane ¶
func RunEtcdPlane( ctx context.Context, etcdHosts []*hosts.Host, etcdNodePlanMap map[string]v3.RKEConfigNodePlan, localConnDialerFactory hosts.DialerFactory, prsMap map[string]v3.PrivateRegistry, updateWorkersOnly bool, alpineImage string, es v3.ETCDService, certMap map[string]pki.CertificatePKI) error
func RunEtcdSnapshotRemove ¶ added in v0.2.3
func RunEtcdSnapshotSave ¶ added in v0.1.7
func RunWorkerPlane ¶
func RunWorkerPlane(ctx context.Context, allHosts []*hosts.Host, localConnDialerFactory hosts.DialerFactory, prsMap map[string]v3.PrivateRegistry, workerNodePlanMap map[string]v3.RKEConfigNodePlan, certMap map[string]pki.CertificatePKI, updateWorkersOnly bool, alpineImage string) error
Types ¶
Click to show internal directories.
Click to hide internal directories.