1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-24 21:07:32 +00:00

Add restart components to custom certs

This commit is contained in:
galal-hussein
2019-01-14 19:51:20 +02:00
committed by Alena Prokharchyk
parent 6d36ba86e9
commit 82fa8d6305
14 changed files with 103 additions and 18 deletions

View File

@@ -23,6 +23,6 @@ func removeKubeproxy(ctx context.Context, host *hosts.Host) error {
return docker.DoRemoveContainer(ctx, host.DClient, KubeproxyContainerName, host.Address)
}
func restartKubeproxy(ctx context.Context, host *hosts.Host) error {
func RestartKubeproxy(ctx context.Context, host *hosts.Host) error {
return docker.DoRestartContainer(ctx, host.DClient, KubeproxyContainerName, host.Address)
}