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

     1  schemaVersion: 1.0.1
     2  name: porter-failing-install
     3  version: 0.1.0
     4  description: "A bundle that always fails installation"
     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  uninstall:
    25    - exec:
    26        description: "Uninstall Hello World"
    27        command: ./helpers.sh
    28        arguments:
    29          - uninstall