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

     1  schemaVersion: 1.0.0-alpha.1
     2  name: mybun
     3  version: 0.1.0
     4  description: "An example Porter configuration"
     5  registry: "localhost:5000"
     6  
     7  images:
     8    mybun:
     9      image: "docker.io/getporter/porter-hello"
    10      tag: "v0.1.1"
    11  
    12  mixins:
    13    - exec
    14  
    15  install:
    16    - exec:
    17        description: "Install Hello World"
    18        command: ./helpers.sh
    19        arguments:
    20          - install
    21  
    22  upgrade:
    23    - exec:
    24        description: "Upgrade Hello World"
    25        command: ./helpers.sh
    26        arguments:
    27          - upgrade
    28  
    29  uninstall:
    30    - exec:
    31        description: "Uninstall Hello World"
    32        command: ./helpers.sh
    33        arguments:
    34          - uninstall