Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Use multi-arch etcd image
  • Loading branch information
mkumatag committed Apr 4, 2019
1 parent 79a8827 commit 175dcdb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 3 additions & 0 deletions test/e2e/apimachinery/aggregator.go
Expand Up @@ -216,6 +216,9 @@ func TestSampleAPIServer(f *framework.Framework, image string) {
{
Name: "etcd",
Image: etcdImage,
Command: []string{
"/usr/local/bin/etcd",
},
},
}
d := &apps.Deployment{
Expand Down
5 changes: 1 addition & 4 deletions test/utils/image/manifest.go
Expand Up @@ -28,7 +28,6 @@ import (
type RegistryList struct {
DockerLibraryRegistry string `yaml:"dockerLibraryRegistry"`
E2eRegistry string `yaml:"e2eRegistry"`
EtcdRegistry string `yaml:"etcdRegistry"`
GcRegistry string `yaml:"gcRegistry"`
PrivateRegistry string `yaml:"privateRegistry"`
SampleRegistry string `yaml:"sampleRegistry"`
Expand Down Expand Up @@ -60,7 +59,6 @@ func initReg() RegistryList {
registry := RegistryList{
DockerLibraryRegistry: "docker.io/library",
E2eRegistry: "gcr.io/kubernetes-e2e-test-images",
EtcdRegistry: "quay.io/coreos",
GcRegistry: "k8s.gcr.io",
PrivateRegistry: "gcr.io/k8s-authenticated-test",
SampleRegistry: "gcr.io/google-samples",
Expand All @@ -86,7 +84,6 @@ var (
registry = initReg()
dockerLibraryRegistry = registry.DockerLibraryRegistry
e2eRegistry = registry.E2eRegistry
etcdRegistry = registry.EtcdRegistry
gcRegistry = registry.GcRegistry
// PrivateRegistry is an image repository that requires authentication
PrivateRegistry = registry.PrivateRegistry
Expand Down Expand Up @@ -206,7 +203,7 @@ func initImageConfigs() map[int]Config {
configs[Dnsutils] = Config{e2eRegistry, "dnsutils", "1.1"}
configs[EchoServer] = Config{e2eRegistry, "echoserver", "2.2"}
configs[EntrypointTester] = Config{e2eRegistry, "entrypoint-tester", "1.0"}
configs[Etcd] = Config{etcdRegistry, "etcd", "v3.3.10"}
configs[Etcd] = Config{gcRegistry, "etcd", "3.3.10"}
configs[Fakegitserver] = Config{e2eRegistry, "fakegitserver", "1.0"}
configs[GBFrontend] = Config{sampleRegistry, "gb-frontend", "v6"}
configs[GBRedisSlave] = Config{sampleRegistry, "gb-redisslave", "v3"}
Expand Down

0 comments on commit 175dcdb

Please sign in to comment.