Skip to content

Commit

Permalink
Migrate from bintray to cloudsmith (#170)
Browse files Browse the repository at this point in the history
Jfrog is sunsetting bintray on May 1st, 2021
https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/

Use Cloudsmith (https://cloudsmith.io/) instead to host binaries

Signed-off-by: Arko Dasgupta <arko@tetrate.io>
Co-authored-by: Denis Zaitcev <denis@tetrate.io>
  • Loading branch information
arkodg and oktocat committed Apr 22, 2021
1 parent f5bfcd4 commit 18ec725
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pkg/cmd/root_test.go
Expand Up @@ -149,9 +149,9 @@ func TestGetEnvoyManifest(t *testing.T) {

tests := []testCase{ // we don't test default as that depends on the runtime env
{
name: "default is https://tetrate.bintray.com/getenvoy/manifest.json",
name: "default is https://dl.getenvoy.io/public/raw/files/manifest.json",
setup: emptySetup,
expected: "https://tetrate.bintray.com/getenvoy/manifest.json",
expected: "https://dl.getenvoy.io/public/raw/files/manifest.json",
},
{
name: "GETENVOY_MANIFEST_URL env",
Expand Down
4 changes: 2 additions & 2 deletions pkg/manifest/locate.go
Expand Up @@ -34,8 +34,8 @@ var (
// manifestURL defines location of the GetEnvoy manifest.
manifestURL = &url.URL{
Scheme: "https",
Host: "tetrate.bintray.com",
Path: "/getenvoy/manifest.json",
Host: "dl.getenvoy.io",
Path: "/public/raw/files/manifest.json",
}
)

Expand Down

0 comments on commit 18ec725

Please sign in to comment.