get.porter.sh/porter@v1.3.0/pkg/runtime/testdata/metadata-substitution.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  parameters:
    10    - name: command
    11      type: string
    12      default: "echo Hello World"
    13  
    14  install:
    15    - exec:
    16        description: "Debug"
    17        command: "echo \"name:${bundle.name} version:${bundle.version} description:${ bundle.description} image:${ bundle.installerImage }\""
    18  
    19  uninstall:
    20    - exec:
    21        description: "Uninstall Hello World"
    22        command: bash
    23        flags:
    24          c: echo Goodbye World