get.porter.sh/porter@v1.3.0/tests/integration/testdata/bundles/bundle-with-custom-action/porter.yaml (about)

     1  schemaVersion: 1.0.0-alpha.1
     2  name: porter-hello
     3  version: 0.1.0
     4  description: "A bundle with a custom action"
     5  registry: "localhost:5000"
     6  
     7  mixins:
     8    - exec
     9  
    10  install:
    11    - exec:
    12        description: "Install Hello World"
    13        command: ./helpers.sh
    14        arguments:
    15          - install
    16  
    17  upgrade:
    18    - exec:
    19        description: "Upgrade Hello World"
    20        command: ./helpers.sh
    21        arguments:
    22          - upgrade
    23  
    24  zombies:
    25    - exec:
    26        description: "Trigger zombie apocalypse"
    27        command: ./helpers.sh
    28        arguments:
    29          - zombies
    30  
    31  uninstall:
    32    - exec:
    33        description: "Uninstall Hello World"
    34        command: ./helpers.sh
    35        arguments:
    36          - uninstall