get.porter.sh/porter@v1.3.0/tests/integration/testdata/bundles/bundle-with-string-params/porter.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: getporter
     6  
     7  mixins:
     8    - exec
     9  
    10  parameters:
    11    - name: name
    12      description: Name for our hello bundle
    13      type: string
    14      default: porter-hello
    15  
    16  install:
    17    - exec:
    18        description: "Install Hello World"
    19        command: ./helpers.sh
    20        arguments:
    21          - install
    22          - "{{ bundle.parameters.name }}"
    23  
    24  upgrade:
    25    - exec:
    26        description: "World 2.0"
    27        command: ./helpers.sh
    28        arguments:
    29          - upgrade
    30  
    31  uninstall:
    32    - exec:
    33        description: "Uninstall Hello World"
    34        command: ./helpers.sh
    35        arguments:
    36          - uninstall
    37