From 0f14c8b742d76d74cfc70781b0b906635aff78f5 Mon Sep 17 00:00:00 2001 From: Piyush Kumar Date: Sat, 14 Oct 2023 02:02:23 +0530 Subject: [PATCH] fixed proxy config stage order Signed-off-by: Piyush Kumar --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index cd386c1..60935bd 100644 --- a/main.go +++ b/main.go @@ -33,8 +33,8 @@ func clusterProvider(cluster clusterplugin.Cluster) yip.YipConfig { } preStage := []yip.Stage{ - stages.GetPreKubeadmCommandStages(), stages.GetPreKubeadmProxyStage(kubeadmConfig, cluster), + stages.GetPreKubeadmCommandStages(), stages.GetPreKubeadmImportCoreK8sImageStage(), stages.GetPreKubeadmStoreKubeadmVersionStage(), }