diff --git a/scripts/openyurt-deployer/node.go b/scripts/openyurt-deployer/node.go index 6ec77d75d..548ae28f3 100644 --- a/scripts/openyurt-deployer/node.go +++ b/scripts/openyurt-deployer/node.go @@ -883,7 +883,7 @@ func (node *Node) YurtWorkerJoin(addr string, port string, token string) { var err error // Get yurt template from github - yurtTempFilePath, _ := node.DownloadToTmpDir("https://raw.githubusercontent.com/vhive-serverless/vHive/main/scripts/openyurt-deployer/configs/yurtTemplate.yaml") + yurtTempFilePath, _ := node.DownloadToTmpDir("https://raw.githubusercontent.com/vhive-serverless/vHive/openyurt/scripts/openyurt-deployer/configs/yurtTemplate.yaml") // Set up Yurthub utils.WaitPrintf("Setting up Yurthub") _, err = node.ExecShellCmd( @@ -895,7 +895,7 @@ func (node *Node) YurtWorkerJoin(addr string, port string, token string) { utils.CheckErrorWithMsg(err, "Failed to set up Yurthub!\n") // Get kubele template from github - kubletTempFilePath, _ := node.DownloadToTmpDir("https://raw.githubusercontent.com/vhive-serverless/vHive/main/scripts/openyurt-deployer/configs/kubeTemplate.yaml") + kubletTempFilePath, _ := node.DownloadToTmpDir("https://raw.githubusercontent.com/vhive-serverless/vHive/openyurt/scripts/openyurt-deployer/configs/kubeTemplate.yaml") // Configure Kubelet utils.WaitPrintf("Configuring kubelet") node.ExecShellCmd("sudo mkdir -p /var/lib/openyurt && cat '%s' | sudo tee /var/lib/openyurt/kubelet.conf", kubletTempFilePath)