-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.yml
34 lines (33 loc) · 1.05 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
---
# Configuration:
# configured for EU10. For other landscapes, please adopt LANDSCAPE_APPS_DOMAIN in ../vars.yml
# If the route is occupied, you might need to change ID in ../vars.yml
applications:
# The sample application.
- name: spring-webflux-security-xsuaa-usage
instances: 1
memory: 896M
routes:
- route: spring-webflux-security-xsuaa-usage-((ID)).((LANDSCAPE_APPS_DOMAIN))
path: target/spring-webflux-security-xsuaa-usage.jar
env:
JBP_CONFIG_DEBUG: '{enabled: true}'
services:
- xsuaa-webflux
# Application Router as web server
- name: approuter-spring-webflux-security-xsuaa-usage
path: approuter
buildpack: nodejs_buildpack
memory: 128M
routes:
- route: spring-webflux-security-xsuaa-usage-web-((ID)).((LANDSCAPE_APPS_DOMAIN))
services:
- xsuaa-webflux
env:
destinations: >
[
{"name":"token-destination",
"url":"https://spring-webflux-security-xsuaa-usage-((ID)).((LANDSCAPE_APPS_DOMAIN))",
"forwardAuthToken": true}
]
...