1
0
mirror of https://github.com/rancher/rke.git synced 2025-08-02 07:43:04 +00:00

Fix capitalization

This commit is contained in:
Darren Shepherd 2018-03-31 03:53:59 -07:00
parent d2c58fb8e6
commit a18ffa69c9

View File

@ -21,7 +21,7 @@ const (
)
func RunEtcdPlane(ctx context.Context, etcdHosts []*hosts.Host, etcdProcessHostMap map[*hosts.Host]v3.Process, localConnDialerFactory hosts.DialerFactory, prsMap map[string]v3.PrivateRegistry, updateWorkersOnly bool, alpineImage string) error {
log.Infof(ctx, "[%s] Building up Etcd Plane..", ETCDRole)
log.Infof(ctx, "[%s] Building up etcd plane..", ETCDRole)
for _, host := range etcdHosts {
if updateWorkersOnly {
continue
@ -34,12 +34,12 @@ func RunEtcdPlane(ctx context.Context, etcdHosts []*hosts.Host, etcdProcessHostM
return err
}
}
log.Infof(ctx, "[%s] Successfully started Etcd Plane..", ETCDRole)
log.Infof(ctx, "[%s] Successfully started etcd plane..", ETCDRole)
return nil
}
func RemoveEtcdPlane(ctx context.Context, etcdHosts []*hosts.Host, force bool) error {
log.Infof(ctx, "[%s] Tearing down Etcd Plane..", ETCDRole)
log.Infof(ctx, "[%s] Tearing down etcd plane..", ETCDRole)
for _, host := range etcdHosts {
err := docker.DoRemoveContainer(ctx, host.DClient, EtcdContainerName, host.Address)
if err != nil {
@ -62,7 +62,7 @@ func RemoveEtcdPlane(ctx context.Context, etcdHosts []*hosts.Host, force bool) e
}
}
log.Infof(ctx, "[%s] Successfully tore down Etcd Plane..", ETCDRole)
log.Infof(ctx, "[%s] Successfully tore down etcd plane..", ETCDRole)
return nil
}