get.porter.sh/porter@v1.3.0/tests/integration/testdata/bundles/signing/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 mixins: 8 - exec 9 10 install: 11 - exec: 12 description: "Install Hello World" 13 command: echo 14 arguments: 15 - install 16 17 upgrade: 18 - exec: 19 description: "Upgrade Hello World" 20 command: echo 21 arguments: 22 - upgrade 23 24 uninstall: 25 - exec: 26 description: "Uninstall Hello World" 27 command: echo 28 arguments: 29 - uninstall