get.porter.sh/porter@v1.3.0/pkg/runtime/testdata/slice-test.yaml (about)

     1  schemaVersion: 1.0.0
     2  name: porter-hello
     3  version: 0.1.0
     4  description: "An example Porter configuration"
     5  registry: jeremyrickard
     6  
     7  mixins:
     8    - exec
     9  
    10  parameters:
    11    - name: command 
    12      type: string
    13      default: "echo Hello World"
    14  
    15  install:
    16    - exec:
    17        description: "Install Hello World"
    18        command: bash
    19        flags:
    20          c: "${ bundle.parameters.command }"
    21  
    22  
    23  uninstall:
    24    - exec:
    25        description: "Uninstall Hello World"
    26        command: bash
    27        flags:
    28          c: echo Goodbye World