Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release-4.5] [release-4.6] Bug 1893742: move jenkins e2e nfs setup from docker.io to quay.io image #25654

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions test/extended/util/nfs.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ func SetupK8SNFSServerAndVolume(oc *CLI, count int) (*kapiv1.Pod, []*kapiv1.Pers
Prefix: "nfs",
// this image is an extension of k8s.gcr.io/volume-nfs:0.8 that adds
// additional nfs mounts to allow for openshift extended tests with
// replicas and shared state (mongo, postgresql, mysql, etc.); defined
// in repo https://github.com/gmontero/nfs-server
ServerImage: "docker.io/gmontero/nfs-server:latest",
// replicas and shared state (formerly mongo, postgresql, mysql, etc., now only jenkins); defined
// in repo https://github.com/redhat-developer/nfs-server
ServerImage: "quay.io/redhat-developer/nfs-server:latest",
ServerPorts: []int{2049},
ServerVolumes: map[string]string{"": "/exports"},
}
Expand Down