forked from TIBCO-Hub-Backstage/tibco-next-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ci-resources.yaml
44 lines (44 loc) · 1.05 KB
/
ci-resources.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
# Cars Database (DB)
apiVersion: backstage.io/v1alpha1
kind: Resource
metadata:
name: cars-database
description: Database that contains all the car details
tags:
- database
- car-details
spec:
type: database
lifecycle: production
owner: operational-department
apiConsumedBy: ['component:db-adapter']
# Car Promotional Material (S3 Bucket)
---
apiVersion: backstage.io/v1alpha1
kind: Resource
metadata:
name: cars-promotional-materials
description: S3 Bucket that contains all the promotional materials
tags:
- s3-bucket
- promotional-materials
spec:
type: s3-bucket
lifecycle: production
owner: operational-department
apiConsumedBy: ['component:car-information-provider']
# Market Price Provider (External API)
---
apiVersion: backstage.io/v1alpha1
kind: Resource
metadata:
name: market-price-provider
description: API that provides all the active market prices
tags:
- external
- api
spec:
type: external-api
lifecycle: production
owner: finance-department
apiConsumedBy: ['component:discount-calculator']