From 9dbaf161730ea36f89b4c55ba8a67a0800cee551 Mon Sep 17 00:00:00 2001 From: Alexander Olofsson Date: Mon, 16 Sep 2024 10:00:03 +0200 Subject: [PATCH] Fix tests with new binary repo URL --- spec/defines/binary_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/defines/binary_spec.rb b/spec/defines/binary_spec.rb index b725dc9..0189858 100644 --- a/spec/defines/binary_spec.rb +++ b/spec/defines/binary_spec.rb @@ -68,7 +68,7 @@ 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' @@ -76,7 +76,7 @@ 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