Commit 75085279 authored by Joe Beda's avatar Joe Beda

Merge pull request #3149 from adimania/master

"kind" is needed to start the pod
parents 6c1203bd f86af137
...@@ -128,6 +128,8 @@ done ...@@ -128,6 +128,8 @@ done
``` ```
kubectl get minions kubectl get minions
NAME LABELS
fed-minion <none>
``` ```
**The cluster should be running! Launch a test pod.** **The cluster should be running! Launch a test pod.**
......
...@@ -11,6 +11,7 @@ Trivially, a single container might be a pod. For example, you can express a si ...@@ -11,6 +11,7 @@ Trivially, a single container might be a pod. For example, you can express a si
```yaml ```yaml
apiVersion: v1beta1 apiVersion: v1beta1
kind: Pod
id: www id: www
desiredState: desiredState:
manifest: manifest:
...@@ -31,6 +32,7 @@ Now that's great for a static web server, but what about persistent storage? We ...@@ -31,6 +32,7 @@ Now that's great for a static web server, but what about persistent storage? We
```yaml ```yaml
apiVersion: v1beta1 apiVersion: v1beta1
kind: Pod
id: storage id: storage
desiredState: desiredState:
manifest: manifest:
...@@ -88,6 +90,7 @@ However, often you want to have two different containers that work together. An ...@@ -88,6 +90,7 @@ However, often you want to have two different containers that work together. An
```yaml ```yaml
apiVersion: v1beta1 apiVersion: v1beta1
kind: Pod
id: www id: www
desiredState: desiredState:
manifest: manifest:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment