From 7ecf764f346d55077aa07181ba6cdd7fd1b9834a Mon Sep 17 00:00:00 2001 From: Srinivas R Kulkarni Date: Sun, 16 Dec 2018 23:49:43 -0500 Subject: [PATCH] Use latest image for ubuntu (#11592) 14.04 does not work anymore. Gives socket error when connecting with rabbitmq --- .../en/docs/tasks/job/coarse-parallel-processing-work-queue.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/tasks/job/coarse-parallel-processing-work-queue.md b/content/en/docs/tasks/job/coarse-parallel-processing-work-queue.md index c24790b2f4..ea360c4d95 100644 --- a/content/en/docs/tasks/job/coarse-parallel-processing-work-queue.md +++ b/content/en/docs/tasks/job/coarse-parallel-processing-work-queue.md @@ -64,7 +64,7 @@ First create a temporary interactive Pod. ```shell # Create a temporary interactive container -$ kubectl run -i --tty temp --image ubuntu:14.04 +$ kubectl run -i --tty temp --image ubuntu:18.04 Waiting for pod default/temp-loe07 to be running, status is Pending, pod ready: false ... [ previous line repeats several times .. hit return when it stops ] ... ```