Skip to content

Commit

Permalink
change github raw path
Browse files Browse the repository at this point in the history
  • Loading branch information
jchua99 committed Jan 22, 2024
1 parent 02a006b commit 11716eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/openyurt-deployer/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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)
Expand Down

0 comments on commit 11716eb

Please sign in to comment.