get.porter.sh/porter@v1.3.0/pkg/cnab/config-adapter/testdata/porter-with-deps.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: "localhost:5000"
     6  
     7  dependencies:
     8    requires:
     9      - name: mysql
    10        bundle:
    11          reference: "getporter/azure-mysql:5.7"
    12      - name: ad
    13        bundle:
    14          reference: "getporter/azure-active-directory"
    15          version: 1.0.0-0
    16      - name: storage
    17        bundle:
    18          reference: "getporter/azure-blob-storage"
    19          version: 1.x - 2,2.1 - 3.x
    20  
    21  mixins:
    22    - exec
    23  
    24  install:
    25    - exec:
    26        description: "Install Hello World"
    27        command: bash
    28        flags:
    29          c: echo Hello World
    30  
    31  upgrade:
    32    - exec:
    33        description: "World 2.0"
    34        command: bash
    35        flags:
    36          c: echo World 2.0
    37  
    38  uninstall:
    39    - exec:
    40        description: "Uninstall Hello World"
    41        command: bash
    42        flags:
    43          c: echo Goodbye World