From 476673b46112758ffe5101b9074640a2898ca183 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20=C3=85lund?= Date: Mon, 22 Jun 2020 16:16:21 +0200 Subject: [PATCH] Added some more example YAMLs (#1405) --- .../catalog-backend/examples/playback-lib-component.yaml | 9 +++++++++ .../catalog-backend/examples/www-artist-component.yaml | 9 +++++++++ plugins/catalog-backend/scripts/mock-data | 2 ++ 3 files changed, 20 insertions(+) create mode 100644 plugins/catalog-backend/examples/playback-lib-component.yaml create mode 100644 plugins/catalog-backend/examples/www-artist-component.yaml diff --git a/plugins/catalog-backend/examples/playback-lib-component.yaml b/plugins/catalog-backend/examples/playback-lib-component.yaml new file mode 100644 index 0000000000..c32332d4d2 --- /dev/null +++ b/plugins/catalog-backend/examples/playback-lib-component.yaml @@ -0,0 +1,9 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: playback-sdk + description: Audio and video playback SDK +spec: + type: library + lifecycle: experimental + owner: players@example.com diff --git a/plugins/catalog-backend/examples/www-artist-component.yaml b/plugins/catalog-backend/examples/www-artist-component.yaml new file mode 100644 index 0000000000..84379c93fc --- /dev/null +++ b/plugins/catalog-backend/examples/www-artist-component.yaml @@ -0,0 +1,9 @@ +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: www-artist + description: Artist main website +spec: + type: website + lifecycle: production + owner: artists@example.com diff --git a/plugins/catalog-backend/scripts/mock-data b/plugins/catalog-backend/scripts/mock-data index a21a60fcf3..90b371f9ea 100755 --- a/plugins/catalog-backend/scripts/mock-data +++ b/plugins/catalog-backend/scripts/mock-data @@ -6,6 +6,8 @@ for URL in \ 'podcast-api-component.yaml' \ 'queue-proxy-component.yaml' \ 'searcher-component.yaml' \ + 'playback-api-component.yaml' \ + 'www-artist-component.yaml' \ 'shuffle-api-component.yaml' \ ; do \ curl \