Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

plume: update GCS URL to bincache URL #371

Merged
merged 2 commits into from
Sep 12, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
plume/release: update GCS URL to bincache URL.
Signed-off-by: Mathieu Tortuyaux <[email protected]>
  • Loading branch information
tormath1 committed Sep 9, 2022
commit 856eb57825f19094af5fd35dc23352737ec0a4ee
12 changes: 6 additions & 6 deletions cmd/plume/containerlinux.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ var (

specs = map[string]channelSpec{
"alpha": channelSpec{
BaseURL: "gs://flatcar-jenkins/alpha/boards",
BaseURL: "http://bincache.flatcar-linux.net/images",
Boards: []string{"amd64-usr", "arm64-usr"},
Destinations: []storageSpec{},
GCE: newGceSpec("alpha", alpha_desc),
Expand All @@ -111,7 +111,7 @@ var (
AWS: newAWSSpec(),
},
"beta": channelSpec{
BaseURL: "gs://flatcar-jenkins/beta/boards",
BaseURL: "http://bincache.flatcar-linux.net/images",
Boards: []string{"amd64-usr", "arm64-usr"},
Destinations: []storageSpec{},
GCE: newGceSpec("beta", beta_desc),
Expand All @@ -120,7 +120,7 @@ var (
AWS: newAWSSpec(),
},
"stable": channelSpec{
BaseURL: "gs://flatcar-jenkins/stable/boards",
BaseURL: "http://bincache.flatcar-linux.net/images",
Boards: []string{"amd64-usr", "arm64-usr"},
Destinations: []storageSpec{},
GCE: newGceSpec("stable", stable_desc),
Expand All @@ -129,7 +129,7 @@ var (
AWS: newAWSSpec(),
},
"edge": channelSpec{
BaseURL: "gs://flatcar-jenkins/edge/boards",
BaseURL: "http://bincache.flatcar-linux.net/images",
Boards: []string{"amd64-usr", "arm64-usr"},
Destinations: []storageSpec{},
GCE: newGceSpec("edge", edge_desc),
Expand All @@ -138,7 +138,7 @@ var (
AWS: newAWSSpec(),
},
"lts": channelSpec{
BaseURL: "gs://flatcar-jenkins/lts/boards",
BaseURL: "http://bincache.flatcar-linux.net/images",
Boards: []string{"amd64-usr", "arm64-usr"},
Destinations: []storageSpec{},
GCE: newGceSpec("lts", lts_desc),
Expand All @@ -147,7 +147,7 @@ var (
AWS: newAWSSpec(),
},
"developer": channelSpec{
BaseURL: "gs://flatcar-jenkins/developer/developer/boards",
BaseURL: "http://bincache.flatcar-linux.net/images",
Boards: []string{"amd64-usr", "arm64-usr"},
Destinations: []storageSpec{},
GCE: gceSpec{},
Expand Down