mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-25 12:43:23 +00:00
Merge pull request #3149 from adimania/master
"kind" is needed to start the pod
This commit is contained in:
commit
75085279eb
@ -128,6 +128,8 @@ done
|
||||
|
||||
```
|
||||
kubectl get minions
|
||||
NAME LABELS
|
||||
fed-minion <none>
|
||||
```
|
||||
|
||||
**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
|
||||
|
||||
```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:
|
||||
|
Loading…
Reference in New Issue
Block a user