Documentation: Fix image manifest in getting started guide

The "app manifest" is now called "image manifest" and its structure has
changed. Fix that up.

Signed-off-by: Pekka Enberg <penberg@cloudius-systems.com>
This commit is contained in:
Pekka Enberg
2014-12-10 12:12:39 +02:00
parent 72a95b6ec8
commit 29112a42fb
+22 -9
View File
@@ -38,22 +38,35 @@ Edit: manifest.json
```
{
"acVersion": "1.0.0",
"acKind": "AppManifest",
"acKind": "ImageManifest",
"acVersion": "0.1.0",
"name": "coreos.com/hello-1.0.0",
"version": "1.0.0",
"os": "linux",
"arch": "amd64",
"exec": [
"/bin/hello"
"labels": [
{
"name": "version",
"val": "1.0.0"
},
{
"name": "arch",
"val": "amd64"
},
{
"name": "os",
"val": "linux"
}
],
"ports": [
"app": {
"exec": [
"/bin/hello"
],
"ports": [
{
"name": "www",
"protocol": "tcp",
"port": 5000
}
],
]
},
"annotations": {
"authors": "Kelsey Hightower <kelsey.hightower@gmail.com>"
}