github.com/jdolitsky/cnab-go@v0.7.1-beta1/testdata/bundles/bundle.yaml (about) 1 schemaVersion: v1.0.0-WD 2 name: testBundle 3 version: "1.0" 4 description: something 5 invocationImages: 6 - imageType: docker 7 image: deislabs/invocation-image:1.0 8 labels: 9 os: Linux 10 images: 11 server: 12 imageType: docker 13 image: nginx:1.0 14 description: complicated 15 parameters: 16 enabled: 17 definition: enabledType 18 destination: 19 env: ENABLED 20 host: 21 definition: hostType 22 destination: 23 env: HOST 24 required: true 25 port: 26 definition: portType 27 destination: 28 path: /path/to/port 29 env: PORT 30 required: true 31 productKey: 32 definition: productKeyType 33 destination: 34 env: PRODUCT_KEY 35 replicaCount: 36 definition: replicaCountType 37 destination: 38 env: REPLICA_COUNT 39 credentials: 40 password: 41 path: /cnab/app/path 42 env: PASSWORD 43 description: a password 44 outputs: 45 clientCert: 46 definition: clientCert 47 path: /cnab/app/outputs/blah 48 definitions: 49 clientCert: 50 contentEncoding: base64 51 type: string 52 enabledType: 53 default: false 54 type: boolean 55 hostType: 56 default: locahost.localdomain 57 type: string 58 portType: 59 default: 1234 60 type: integer 61 productKeyType: 62 type: string 63 replicaCountType: 64 default: 3 65 type: integer 66 license: MIT License