-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.yml
35 lines (33 loc) · 1.11 KB
/
manifest.yml
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
---
applications:
- name: backend
memory: 1.5G
instances: 1
routes:
# TODO replace a placeholder with the value of your choice
- route: <backend-service-url>
path: application/target/authentication-application.war
buildpacks:
- sap_java_buildpack
env:
TARGET_RUNTIME: tomee7
SAP_JWT_TRUST_ACL: '[{"clientid" : "*", "identityzone" : "*"}]'
SET_LOGGING_LEVEL: '{ROOT: INFO, com.sap.cloud.sdk: INFO}'
JBP_CONFIG_SAPJVM_MEMORY_SIZES: 'metaspace:128m..'
services:
# TODO replace placeholders with the existing service instances names
- <xsuaa-service-instance>
- <destination-service-instance>
- name: approuter
routes:
# TODO replace a placeholder with the value of your choice
- route: <main-url>
memory: 128M
path: approuter
buildpack: nodejs_buildpack
# TODO replace placeholders with the previously chosen routes
env:
destinations: '[{"name":"backend", "url" :"https://<backend-service-url>", "forwardAuthToken": true}]'
services:
# TODO replace placeholder with the name of the same instance that is used by the backend application
- <xsuaa-service-instance>