Skip to content

Commit

Permalink
Fix tests with new binary repo URL
Browse files Browse the repository at this point in the history
  • Loading branch information
ananace committed Sep 16, 2024
1 parent f1af11d commit 9dbaf16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/defines/binary_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@
is_expected.to contain_file("/opt/k8s/1.0/#{binary}").with(
ensure: 'present',
mode: '0755',
source: "https://storage.googleapis.com/kubernetes-release/release/v1.0/bin/linux/amd64/#{binary}"
source: "https://dl.k8s.io/release/v1.0/bin/linux/amd64/#{binary}"
)
end
when 'hyperkube'
it do
is_expected.to contain_file('/opt/k8s/1.0/hyperkube').with(
ensure: 'present',
mode: '0755',
source: 'https://storage.googleapis.com/kubernetes-release/release/v1.0/bin/linux/amd64/hyperkube'
source: 'https://dl.k8s.io/release/v1.0/bin/linux/amd64/hyperkube'
)
end
end
Expand Down

0 comments on commit 9dbaf16

Please sign in to comment.