Merge pull request #9894 from markturansky/image_change

Changed busybox image to gcr.io image for PV Recyclers
This commit is contained in:
Saad Ali 2015-06-16 14:42:19 -07:00
commit 369a1e7761
2 changed files with 2 additions and 2 deletions

View File

@ -162,7 +162,7 @@ func (r *hostPathRecycler) Recycle() error {
Containers: []api.Container{ Containers: []api.Container{
{ {
Name: "scrubber", Name: "scrubber",
Image: "busybox", Image: "gcr.io/google_containers/busybox",
// delete the contents of the volume, but not the directory itself // delete the contents of the volume, but not the directory itself
Command: []string{"/bin/sh"}, Command: []string{"/bin/sh"},
// the scrubber: // the scrubber:

View File

@ -272,7 +272,7 @@ func (r *nfsRecycler) Recycle() error {
Containers: []api.Container{ Containers: []api.Container{
{ {
Name: "scrubber", Name: "scrubber",
Image: "busybox", Image: "gcr.io/google_containers/busybox",
// delete the contents of the volume, but not the directory itself // delete the contents of the volume, but not the directory itself
Command: []string{"/bin/sh"}, Command: []string{"/bin/sh"},
// the scrubber: // the scrubber: