-
Notifications
You must be signed in to change notification settings - Fork 135
/
manifest.yml
42 lines (41 loc) · 1.36 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
36
37
38
39
40
41
42
# SPDX-FileCopyrightText: 2018-2023 SAP SE or an SAP affiliate company and Cloud Security Client Java contributors
# SPDX-License-Identifier: Apache-2.0
---
# 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-hybrid-usage
instances: 1
memory: 896M
routes:
- route: spring-webflux-security-hybrid-usage-((ID)).((LANDSCAPE_APPS_DOMAIN))
path: target/spring-webflux-security-hybrid-usage.jar
buildpacks:
- sap_java_buildpack_jakarta
env:
JBP_CONFIG_OPEN_JDK_JRE: '{jre: { version: 17.0.+ }}'
JBP_CONFIG_DEBUG: '{enabled: true}'
services:
- xsuaa-webflux
- ias-webflux
# Application Router as web server
- name: approuter-spring-webflux-security-hybrid-usage
path: approuter
buildpacks:
- nodejs_buildpack
memory: 128M
routes:
- route: spring-webflux-security-hybrid-usage-web-((ID)).((LANDSCAPE_APPS_DOMAIN))
services:
- xsuaa-webflux
- ias-webflux
env:
destinations: >
[
{"name":"token-destination",
"url":"https://spring-webflux-security-hybrid-usage-((ID)).((LANDSCAPE_APPS_DOMAIN))",
"forwardAuthToken": true}
]
...