@@ -28,6 +28,7 @@ import (
28
28
type RegistryList struct {
29
29
DockerLibraryRegistry string `yaml:"dockerLibraryRegistry"`
30
30
E2eRegistry string `yaml:"e2eRegistry"`
31
+ EtcdRegistry string `yaml:"etcdRegistry"`
31
32
GcRegistry string `yaml:"gcRegistry"`
32
33
PrivateRegistry string `yaml:"privateRegistry"`
33
34
SampleRegistry string `yaml:"sampleRegistry"`
@@ -59,6 +60,7 @@ func initReg() RegistryList {
59
60
registry := RegistryList {
60
61
DockerLibraryRegistry : "docker.io/library" ,
61
62
E2eRegistry : "gcr.io/kubernetes-e2e-test-images" ,
63
+ EtcdRegistry : "quay.io/coreos" ,
62
64
GcRegistry : "k8s.gcr.io" ,
63
65
PrivateRegistry : "gcr.io/k8s-authenticated-test" ,
64
66
SampleRegistry : "gcr.io/google-samples" ,
84
86
registry = initReg ()
85
87
dockerLibraryRegistry = registry .DockerLibraryRegistry
86
88
e2eRegistry = registry .E2eRegistry
89
+ etcdRegistry = registry .EtcdRegistry
87
90
gcRegistry = registry .GcRegistry
88
91
// PrivateRegistry is an image repository that requires authentication
89
92
PrivateRegistry = registry .PrivateRegistry
@@ -103,6 +106,7 @@ var (
103
106
Dnsutils = Config {e2eRegistry , "dnsutils" , "1.1" }
104
107
EchoServer = Config {e2eRegistry , "echoserver" , "2.2" }
105
108
EntrypointTester = Config {e2eRegistry , "entrypoint-tester" , "1.0" }
109
+ Etcd = Config {etcdRegistry , "etcd" , "v3.3.10" }
106
110
Fakegitserver = Config {e2eRegistry , "fakegitserver" , "1.0" }
107
111
GBFrontend = Config {sampleRegistry , "gb-frontend" , "v6" }
108
112
GBRedisSlave = Config {sampleRegistry , "gb-redisslave" , "v3" }
0 commit comments