Skip to content

Commit

Permalink
ci: fix kubectl download url (#1178)
Browse files Browse the repository at this point in the history
  • Loading branch information
aramase committed May 18, 2023
1 parent c4d70d7 commit 30f4760
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pipelines/templates/e2e-test-azure.yaml
Expand Up @@ -35,7 +35,7 @@ jobs:
- script: |
# Download kubectl
curl -LO https://dl.k8s.io/release/`curl -s https://dl.k8s.io/release/stable.txt`/bin/linux/amd64/kubectl
curl -LO https://dl.k8s.io/release/`curl -sL https://dl.k8s.io/release/stable.txt`/bin/linux/amd64/kubectl
chmod +x kubectl
sudo mv kubectl /usr/local/bin/
displayName: 'Install kubectl'
Expand Down
2 changes: 1 addition & 1 deletion .pipelines/templates/soak-test.yaml
Expand Up @@ -21,7 +21,7 @@ jobs:
- script: |
# Download kubectl
echo "Installing kubectl..."
curl -LO https://dl.k8s.io/release/`curl -s https://dl.k8s.io/release/stable.txt`/bin/linux/amd64/kubectl
curl -LO https://dl.k8s.io/release/`curl -sL https://dl.k8s.io/release/stable.txt`/bin/linux/amd64/kubectl
chmod +x kubectl
sudo mv kubectl /usr/local/bin/
displayName: "Install kubectl"
Expand Down

0 comments on commit 30f4760

Please sign in to comment.