Skip to content

Commit

Permalink
Changed container repository from Docker to Quay (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
evgenLevin committed Apr 21, 2021
1 parent 52442b3 commit f02c63a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/network-metrics-daemon/network_metrics_daemon.go
Expand Up @@ -57,7 +57,7 @@ var _ = ginkgo.Describe("NetworkMetricsDaemon", func() {
Containers: []corev1.Container{
{
Name: "c1",
Image: "centos",
Image: "quay.io/centos/centos",
Command: []string{"/bin/bash", "-c", "sleep inf"},
},
},
Expand Down Expand Up @@ -226,7 +226,7 @@ var _ = ginkgo.Describe("NetworkMetricsDaemon", func() {
Containers: []corev1.Container{
{
Name: "c1",
Image: "centos",
Image: "quay.io/centos/centos",
Command: []string{"/bin/bash", "-c", "sleep inf"},
},
},
Expand Down
2 changes: 1 addition & 1 deletion test/utils/pods/pods.go
Expand Up @@ -62,7 +62,7 @@ func getDefinition() *corev1.Pod {
Spec: corev1.PodSpec{
TerminationGracePeriodSeconds: pointer.Int64Ptr(0),
Containers: []corev1.Container{{Name: "test",
Image: "centos",
Image: "quay.io/centos/centos",
Command: []string{"/bin/bash", "-c", "sleep INF"},
}},
},
Expand Down

0 comments on commit f02c63a

Please sign in to comment.