diff --git a/tests/integration/testdata/bundles/bundles-with-shared-deps/mysql/porter.yaml b/tests/integration/testdata/bundles/bundles-with-shared-deps/mysql/porter.yaml deleted file mode 100644 index 9299b49e8..000000000 --- a/tests/integration/testdata/bundles/bundles-with-shared-deps/mysql/porter.yaml +++ /dev/null @@ -1,55 +0,0 @@ -# This is a test bundle that can be used as a dependency -schemaVersion: 1.0.0 -name: wordpress-mysql -version: 0.1.0 -description: "A test bundle dependency" -registry: localhost:5000 - -parameters: - - name: database - type: string - default: "mysqldb" - -credentials: - - name: token - env: CLOUD_TOKEN - -outputs: - - name: "connStr" - key: "big ol connStr" - -mixins: - - exec - -dry-run: - - exec: - command: echo - arguments: - - "ready to install mysqldb" - -install: - - exec: - command: echo - arguments: - - "installing mysqldb" - - exec: - command: echo - arguments: - - "chicken" -status: - - exec: - command: echo - arguments: - - "mysqldb is looking great!" - -upgrade: - - exec: - command: echo - arguments: - - "upgrading mysqldb" - -uninstall: - - exec: - command: echo - arguments: - - "uninstalling mysqldb" diff --git a/tests/integration/testdata/bundles/bundles-with-shared-deps/wordpress/porter.yaml b/tests/integration/testdata/bundles/bundles-with-shared-deps/wordpress/porter.yaml deleted file mode 100644 index 38ba1e0b2..000000000 --- a/tests/integration/testdata/bundles/bundles-with-shared-deps/wordpress/porter.yaml +++ /dev/null @@ -1,39 +0,0 @@ -schemaVersion: 1.0.0 -name: wordpress -version: 0.1.0 -description: "An example Porter configuration" -registry: "localhost:5000" - -dependencies: - requires: - - name: mysql - bundle: - reference: localhost:5000/wordpress-mysql:v0.1.0 - sharing: - mode: true - group: - name: myapp - -mixins: - - exec - -install: - - exec: - description: "Install Hello World" - command: bash - flags: - c: '"echo Hello World"' - -upgrade: - - exec: - description: "World 2.0" - command: bash - flags: - c: '"echo World 2.0"' - -uninstall: - - exec: - description: "Uninstall Hello World" - command: bash - flags: - c: '"echo Goodbye World"'