From 55d549283f243dd3b4f0249412b0abdb7f2c375f Mon Sep 17 00:00:00 2001 From: Jared Date: Wed, 20 Jul 2016 15:32:50 -0700 Subject: [PATCH] Remove commas at the end of "containerPort" "containerPort": 8000, should be "containerPort": 8000 --- docs/user-guide/pods/pod-sample.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-guide/pods/pod-sample.json b/docs/user-guide/pods/pod-sample.json index 25d0373204..7cab452b64 100644 --- a/docs/user-guide/pods/pod-sample.json +++ b/docs/user-guide/pods/pod-sample.json @@ -14,7 +14,7 @@ "image": "redis", "ports": [ { - "containerPort": 6379, + "containerPort": 6379 } ] }, @@ -23,7 +23,7 @@ "image": "django", "ports": [ { - "containerPort": 8000, + "containerPort": 8000 } ] }