Skip to content

Commit f180d3c

Browse files
author
Jake Sanders
authored
Merge pull request #9 from KingEmet/master
remove b., bucket., and beta.gcr.io from list of supported repos
2 parents e2579a4 + a429e91 commit f180d3c

File tree

4 files changed

+0
-13
lines changed

4 files changed

+0
-13
lines changed

cli/configure-docker_unit_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,8 @@ func expectedAuthConfigs() map[string]types.AuthConfig {
3434
"https://us.gcr.io": {},
3535
"https://eu.gcr.io": {},
3636
"https://asia.gcr.io": {},
37-
"https://b.gcr.io": {},
38-
"https://bucket.gcr.io": {},
3937
"https://appengine.gcr.io": {},
4038
"https://gcr.kubernetes.io": {},
41-
"https://beta.gcr.io": {},
4239
}
4340
}
4441

config/const.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ package config
1717

1818
import (
1919
"golang.org/x/oauth2"
20-
//"golang.org/x/oauth2/google"
2120
)
2221

2322
const (
@@ -52,11 +51,8 @@ var SupportedGCRRegistries = map[string]bool{
5251
"us.gcr.io": true,
5352
"eu.gcr.io": true,
5453
"asia.gcr.io": true,
55-
"b.gcr.io": true,
56-
"bucket.gcr.io": true,
5754
"appengine.gcr.io": true,
5855
"gcr.kubernetes.io": true,
59-
"beta.gcr.io": true,
6056
}
6157

6258
// SupportedGCRTokenSources maps config keys to plain english explanations for

credhelper/helper_integration_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,8 @@ var expectedGcrHosts = [...]string{
3232
"us.gcr.io",
3333
"eu.gcr.io",
3434
"asia.gcr.io",
35-
"b.gcr.io",
36-
"bucket.gcr.io",
3735
"appengine.gcr.io",
3836
"gcr.kubernetes.io",
39-
"beta.gcr.io",
4037
}
4138

4239
var testCredStorePath = filepath.Clean("helper_test_cred_store.json")

credhelper/helper_unit_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,8 @@ var gcrHosts = [...]string{
4040
"us.gcr.io",
4141
"eu.gcr.io",
4242
"asia.gcr.io",
43-
"b.gcr.io",
44-
"bucket.gcr.io",
4543
"appengine.gcr.io",
4644
"gcr.kubernetes.io",
47-
"beta.gcr.io",
4845
}
4946
var otherHosts = [...]string{"docker.io", "otherrepo.com"}
5047

0 commit comments

Comments
 (0)