Merge pull request #8961 from caesarxuchao/juju

update getting-started-guides/juju.md to v1beta3
This commit is contained in:
Rohit Jnagal 2015-05-29 09:31:33 -07:00
commit bb2f0b6577

View File

@ -96,13 +96,16 @@ We'll follow the aws-coreos example. Create a pod manifest: `pod.json`
``` ```
{ {
"id": "hello", "apiVersion": "v1beta3",
"kind": "Pod", "kind": "Pod",
"apiVersion": "v1beta1", "metadata": {
"desiredState": { "name": "hello",
"manifest": { "labels": {
"version": "v1beta1", "name": "hello",
"id": "hello", "environment": "testing"
}
},
"spec": {
"containers": [{ "containers": [{
"name": "hello", "name": "hello",
"image": "quay.io/kelseyhightower/hello", "image": "quay.io/kelseyhightower/hello",
@ -112,11 +115,6 @@ We'll follow the aws-coreos example. Create a pod manifest: `pod.json`
}] }]
}] }]
} }
},
"labels": {
"name": "hello",
"environment": "testing"
}
} }
``` ```