From d4e8e8fb9ee07193e812620df83a703107b4e133 Mon Sep 17 00:00:00 2001 From: Kevin Frommelt Date: Mon, 25 Sep 2017 12:57:11 -0500 Subject: [PATCH] Fix typo in pod preset conflict example Move container port definition to the correct line. --- docs/tasks/inject-data-application/podpreset.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tasks/inject-data-application/podpreset.md b/docs/tasks/inject-data-application/podpreset.md index 6e1026a5df..ff4485156c 100644 --- a/docs/tasks/inject-data-application/podpreset.md +++ b/docs/tasks/inject-data-application/podpreset.md @@ -526,10 +526,10 @@ spec: - mountPath: /cache name: cache-volume ports: + - containerPort: 80 volumes: - name: cache-volume emptyDir: {} - - containerPort: 80 ``` **If we run `kubectl describe...` we can see the event:**