-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmta.yaml
More file actions
103 lines (94 loc) · 3.44 KB
/
Copy pathmta.yaml
File metadata and controls
103 lines (94 loc) · 3.44 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
## Generated mta.yaml based on template version 0.4.0
## appName = teched-2021
## language=nodejs; multitenant=false
## approuter=
_schema-version: '3.1'
ID: riz.inno.teched-2021
version: 1.0.0
description: "TechEd 2021 Example."
parameters:
enable-parallel-deployments: true
build-parameters:
before-all:
- builder: custom
commands:
- npm install --production
- npx -p @sap/cds-dk cds build --production
modules:
# ------------------- APP ROUTER MODULE -----------------------
- name: teched-2021-router # Approuter Module channeling the traffic to the correct destination
# ------------------------------------------------------------
type: nodejs
path: approuter
parameters:
memory: 100M
buildpack: nodejs_buildpack
requires:
- name: teched-2021-srv_api
group: destinations
properties:
name: teched-2021-srv_api
url: ~{srv-url}
forwardAuthToken: true
timeout: 600000
properties:
COOKIES: >
{ "SameSite": "None" }
CORS: >
[
{
"uriPattern": "^(.*)$",
"allowedOrigin": [
{ "host": "*.hana.ondemand.com", "protocol": "https" },
{ "host": "*.hana.ondemand.com", "protocol": "http" }
],
"allowedMethods": ["GET", "POST", "HEAD", "OPTIONS", "PUT", "DELETE"],
"allowedHeaders": ["Origin", "Accept", "X-Requested-With", "Content-Type",
"Access-Control-Request-Method",
"Access-Control-Request-Headers", "Authorization", "X-Sap-Cid",
"X-Csrf-Token", "Accept-Language"],
"exposeHeaders": ["Accept", "Authorization", "X-Requested-With", "X-Sap-Cid",
"Access-Control-Allow-Origin", "Access-Control-Allow-Credentials",
"X-Csrf-Token", "Content-Type"]
}
]
# --------------------- SERVER MODULE ------------------------
- name: teched-2021-srv
# ------------------------------------------------------------
type: nodejs
path: gen/srv
parameters:
buildpack: nodejs_buildpack
memory: 200M
disk-quota: 250M
requires:
# Resources extracted from CAP configuration
- name: teched-2021-db
provides:
- name: teched-2021-srv_api # required by consumers of CAP services (e.g. approuter)
properties:
srv-url: ${default-url}
# -------------------- SIDECAR MODULE ------------------------
- name: teched-2021-db-deployer
# ------------------------------------------------------------
type: hdb
path: gen/db
parameters:
buildpack: nodejs_buildpack
requires:
# 'hana' and 'xsuaa' resources extracted from CAP configuration
- name: teched-2021-db
resources:
# services extracted from CAP configuration
# 'service-plan' can be configured via 'cds.requires.<name>.vcap.plan'
# ------------------------------------------------------------
- name: teched-2021-db
# ------------------------------------------------------------
type: com.sap.xs.hdi-container
parameters:
service: hana # or 'hanatrial' on trial landscapes
service-plan: hdi-shared
config:
schema: teched_2021
properties:
hdi-service-name: ${service-name}