get.porter.sh/porter@v1.3.0/pkg/manifest/testdata/simple.porter.yaml (about)

     1  schemaVersion: 1.0.0
     2  name: hello
     3  description: "An example Porter configuration"
     4  version: v0.1.0
     5  registry: "localhost:5000"
     6  
     7  mixins:
     8    - exec
     9  
    10  maintainers:
    11  - name: "John Doe"
    12    email: "john.doe@example.com"
    13    url: "https://example.com/a"
    14  - name: "Jane Doe"
    15    url: "https://example.com/b"
    16  - name: "Janine Doe"
    17    email: "janine.doe@example.com"
    18  - email: "mike.doe@example.com"
    19    url: "https://example.com/c"
    20  
    21  install:
    22  - exec:
    23      description: "Say Hello"
    24      command: bash
    25      flags:
    26        c: echo Hello World
    27  
    28  status:
    29  - exec:
    30      description: "Get World Status"
    31      command: bash
    32      flags:
    33          c: echo The world is on fire
    34  
    35  uninstall:
    36  - exec:
    37      description: "Say Goodbye"
    38      command: bash
    39      flags:
    40          c: echo Goodbye World