From 7c99d960fe0e975aab9b4a93e6a8cc6f5dd4d342 Mon Sep 17 00:00:00 2001 From: Aditya Patawari Date: Thu, 25 Dec 2014 22:37:20 +0530 Subject: [PATCH 1/2] kind is needed to start the pod fix for the following error: the provided version "v1beta1" and kind "" cannot be mapped to a supported object --- examples/walkthrough/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/walkthrough/README.md b/examples/walkthrough/README.md index cb151161832..b2157367cad 100644 --- a/examples/walkthrough/README.md +++ b/examples/walkthrough/README.md @@ -11,6 +11,7 @@ Trivially, a single container might be a pod. For example, you can express a si ```yaml apiVersion: v1beta1 +kind: Pod id: www desiredState: manifest: @@ -31,6 +32,7 @@ Now that's great for a static web server, but what about persistent storage? We ```yaml apiVersion: v1beta1 +kind: Pod id: storage desiredState: manifest: @@ -88,6 +90,7 @@ However, often you want to have two different containers that work together. An ```yaml apiVersion: v1beta1 +kind: Pod id: www desiredState: manifest: From f86af137e0e17357bbb97e85053638d9dd562adf Mon Sep 17 00:00:00 2001 From: Aditya Patawari Date: Thu, 25 Dec 2014 23:46:16 +0530 Subject: [PATCH 2/2] it gets confusing without the output sometimes --- docs/getting-started-guides/fedora/fedora_manual_config.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/getting-started-guides/fedora/fedora_manual_config.md b/docs/getting-started-guides/fedora/fedora_manual_config.md index f043b29f07e..be37d3b2ea6 100644 --- a/docs/getting-started-guides/fedora/fedora_manual_config.md +++ b/docs/getting-started-guides/fedora/fedora_manual_config.md @@ -128,6 +128,8 @@ done ``` kubectl get minions +NAME LABELS +fed-minion ``` **The cluster should be running! Launch a test pod.**