get.porter.sh/porter@v1.3.0/tests/integration/testdata/paramafest.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: jeremyrickard
     6  
     7  mixins:
     8    - exec
     9  
    10  parameters:
    11    - name: command 
    12      type: string
    13      default: "echo Hello World"
    14    - name: command2
    15      type: string
    16   
    17  install:
    18    - exec:
    19        description: "Install Hello World"
    20        command: bash
    21        flags:
    22          c: "{{ bundle.parameters.command }}"
    23  
    24  
    25  uninstall:
    26    - exec:
    27        description: "Uninstall Hello World"
    28        command: bash
    29        flags:
    30          c: echo Goodbye World