mirror of
https://github.com/clearlinux/rkt.git
synced 2026-09-06 13:51:45 +00:00
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:
@@ -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>"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user