blob: 7657415f982c09d0bb32dd4601b17e9cc6db9c9e (
plain)
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
|
server:
{{- if include "common.onServiceMesh" . }}
forward-headers-strategy: none
{{- end }}
port: {{ index .Values.containerPort }}
ssl:
enabled: false
tomcat:
max-threads: 50
ssl-enable: false
camunda:
rest:
api:
url: http://so-bpmn-infra.{{ include "common.namespace" . }}:8081/sobpmnengine/engine/
engine: default
auth: Basic YXBpaEJwbW46cGFzc3dvcmQxJA==
mso:
database:
rest:
api:
url: http://so-request-db-adapter.{{ include "common.namespace" . }}:8083/infraActiveRequests/
auth: Basic YnBlbDpwYXNzd29yZDEk
spring:
main:
allow-bean-definition-overriding: true
security:
usercredentials:
-
username: ${SO_COCKPIT_USERNAME}
password: ${SO_COCKPIT_PASSWORD}
role: GUI-Client
|