This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcatalog-info.yaml
80 lines (72 loc) · 1.84 KB
/
catalog-info.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: collection-api
description: Manages the curated collections across Pocket
annotations:
github.com/project-slug: pocket/collection-api
github.com/team-slug: Pocket/backend
circleci.com/project-slug: github/pocket/collection-api
sentry.io/project-slug: collection-api
spec:
type: service
owner: backend
lifecycle: production
dependsOn:
- resource:collection-db
- resource:collection-s3-bucket
providesApis:
- collection-api
- collection-api-admin
---
apiVersion: backstage.io/v1alpha1
kind: API
metadata:
name: collection-api
description: External facing API for serving collections.
spec:
type: graphql
owner: backend
definition: |
#TODO: Add in graphql api spec
lifecycle: production
---
apiVersion: backstage.io/v1alpha1
kind: API
metadata:
name: collection-api-admin
description: Internal facing API for managing collections.
spec:
type: graphql
owner: backend
definition: |
#TODO: Add in graphql api spec
lifecycle: production
---
apiVersion: backstage.io/v1alpha1
kind: Resource
metadata:
name: collection-db
description: Serverless database that holds the curator collections
links:
- url: https://console.aws.amazon.com/rds/home?region=us-east-1#database:id=collectionapi-prod2021041417592092570000000d;is-cluster=true
title: Amazon RDS
icon: dashboard
spec:
type: database
owner: backend
lifecycle: production
---
apiVersion: backstage.io/v1alpha1
kind: Resource
metadata:
name: collection-s3-bucket
description: S3 bucket to hold images for the collections
links:
- url: https://s3.console.aws.amazon.com/s3/buckets/pocket-collectionapi-prod-images?region=us-east-1&tab=objects
title: Amazon S3
icon: dashboard
spec:
type: s3
owner: backend
lifecycle: production