get.porter.sh/porter@v1.3.0/pkg/cnab/config-adapter/testdata/porter-with-required-extensions.yaml (about) 1 schemaVersion: 1.0.0-alpha.1 2 name: porter-hello 3 description: "An example Porter configuration" 4 version: 0.1.0 5 registry: "localhost:5000" 6 7 required: 8 - requiredExtension1 9 - requiredExtension2: 10 config: true 11 12 mixins: 13 - exec 14 15 install: 16 - exec: 17 description: "Say Hello" 18 command: bash 19 flags: 20 c: echo Hello World 21 22 uninstall: 23 - exec: 24 description: "Say Goodbye" 25 command: bash 26 flags: 27 c: echo Goodbye World 28