1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-09 02:51:15 +00:00

Run rebuild cluster certs from clusterup

This commit is contained in:
galal-hussein
2018-12-21 00:01:42 +02:00
committed by Alena Prokharchyk
parent 918b4ad669
commit 3c6c7f1b7b
3 changed files with 9 additions and 4 deletions

View File

@@ -77,7 +77,7 @@ func rotateRKECertificatesFromCli(ctx *cli.Context) error {
if err := ClusterInit(context.Background(), rkeConfig, hosts.DialersOptions{}, externalFlags); err != nil {
return err
}
_, _, _, _, _, err = RebuildClusterWithRotatedCertificates(context.Background(), hosts.DialersOptions{}, externalFlags)
_, _, _, _, _, err = ClusterUp(context.Background(), hosts.DialersOptions{}, externalFlags)
return err
}
@@ -85,7 +85,7 @@ func showRKECertificatesFromCli(ctx *cli.Context) error {
return nil
}
func RebuildClusterWithRotatedCertificates(ctx context.Context,
func rebuildClusterWithRotatedCertificates(ctx context.Context,
dialersOptions hosts.DialersOptions,
flags cluster.ExternalFlags) (string, string, string, string, map[string]pki.CertificatePKI, error) {
var APIURL, caCrt, clientCert, clientKey string