This repository has been archived by the owner on Jan 23, 2024. It is now read-only.
generated from Pocket/backend-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcatalog-info.yaml
80 lines (72 loc) · 1.91 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: curated-corpus-api
description: Manages the corpus of recommended stories across Pocket
annotations:
github.com/project-slug: pocket/curated-corpus-api
github.com/team-slug: Pocket/backend
circleci.com/project-slug: github/pocket/curated-corpus-api
sentry.io/project-slug: curated-corpus-api
spec:
type: service
owner: backend
lifecycle: production
dependsOn:
- resource:curated-corpus-db
- resource:curated-corpus-s3-bucket
providesApis:
- curated-corpus
- curated-corpus-admin
---
apiVersion: backstage.io/v1alpha1
kind: API
metadata:
name: curated-corpus
description: External facing API for serving scheduled curated corpus items.
spec:
type: graphql
owner: backend
definition: |
#TODO: Add in graphql api spec
lifecycle: production
---
apiVersion: backstage.io/v1alpha1
kind: API
metadata:
name: curated-corpus-admin
description: Internal facing API for managing curated corpus items.
spec:
type: graphql
owner: backend
definition: |
#TODO: Add in graphql api spec
lifecycle: production
---
apiVersion: backstage.io/v1alpha1
kind: Resource
metadata:
name: curated-corpus-db
description: Serverless database that holds the curated corpus
links:
- url: https://console.aws.amazon.com/rds/home?region=us-east-1#database:id=curatedcorpusapi-prod20210927235441510200000001;is-cluster=true
title: Amazon RDS
icon: dashboard
spec:
type: database
owner: backend
lifecycle: production
---
apiVersion: backstage.io/v1alpha1
kind: Resource
metadata:
name: curated-corpus-s3-bucket
description: S3 bucket to hold images for the curated corpus
links:
- url: https://s3.console.aws.amazon.com/s3/buckets/pocket-curatedcorpusapi-prod-images?region=us-east-1&tab=objects
title: Amazon S3
icon: dashboard
spec:
type: s3
owner: backend
lifecycle: production