get.porter.sh/porter@v1.3.0/pkg/porter/testdata/generateManifest/original.yaml (about)

     1  schemaVersion: 1.0.0-alpha.1
     2  name: porter-hello
     3  version: 0.1.0
     4  description: "An example Porter configuration"
     5  registry: "localhost:5000"
     6  custom:
     7    key1: value1
     8    key2:
     9      nestedKey2: value2
    10  mixins:
    11    - exec
    12  images:
    13    whalesayd:
    14      description: "Whalesay as a service"
    15      imageType: "docker"
    16      repository: "test/whalesayd"
    17  install:
    18    - exec:
    19        description: "Install Hello World"
    20        command: ./helpers.sh
    21        arguments:
    22          - install
    23  status:
    24    - exec:
    25        description: "World Status"
    26        command: ./helpers.sh
    27        arguments:
    28          - status
    29  uninstall:
    30    - exec:
    31        description: "Uninstall Hello World"
    32        command: ./helpers.sh
    33        arguments:
    34          - uninstall
    35  # comments n stuff