Merge "[DMAAP] DMaaP ServiceMesh compatibility"
[oom.git] / kubernetes / sdc / components / sdc-wfd-fe / values.yaml
1 # Copyright © 2018 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefix: 302
20   nodePortPrefixExt: 304
21   aafEnabled: true
22
23 #################################################################
24 # AAF Part
25 #################################################################
26 certInitializer:
27   nameOverride: sdc-wfd-fe-cert-init
28   aafDeployFqi: deployer@people.osaaf.org
29   aafDeployPass: demo123456!
30   fqdn: sdc
31   fqi: sdc@sdc.onap.org
32   public_fqdn: sdc.onap.org
33   cadi_longitude: "0.0"
34   cadi_latitude: "0.0"
35   app_ns: org.osaaf.aaf
36   credsPath: /opt/app/osaaf/local
37   addconfig: true
38   keystoreFile: "org.onap.sdc.p12"
39   truststoreFile: "org.onap.sdc.trust.jks"
40   permission_user: 352070
41   permission_group: 35953
42   aaf_add_config: |
43     echo "cadi_keystore_password_p12=$cadi_keystore_password_p12" > {{ .Values.credsPath }}/mycreds.prop
44     echo "cadi_truststore_password=$cadi_truststore_password" >> {{ .Values.credsPath }}/mycreds.prop
45
46 #################################################################
47 # Application configuration defaults.
48 #################################################################
49 # application image
50 image: onap/sdc-workflow-frontend:1.11.1
51 pullPolicy: Always
52
53 # flag to enable debugging - application support required
54 debugEnabled: false
55
56 config:
57   javaOptions: "-Xmx256m -Xms256m"
58   backendServerURL:
59     https: "https://sdc-wfd-be:8443"
60     http: "http://sdc-wfd-be:8080"
61   # following flag decides whether to check the certificate on the outgoing proxy request or whether to trust all parties
62   isTrustAll: true
63 # https relevant settings. Change in case you have other trust files then default ones.
64
65 #environment file
66 env:
67   name: AUTO
68
69 security:
70   isDefaultStore: false
71
72 # default number of instances
73 replicaCount: 1
74
75 nodeSelector: {}
76
77 affinity: {}
78
79 # probe configuration parameters
80 liveness:
81   initialDelaySeconds: 1
82   periodSeconds: 10
83   successThreshold: 1
84   failureThreshold: 3
85   # necessary to disable liveness probe when setting breakpoints
86   # in debugger so K8s doesn't restart unresponsive container
87   enabled: true
88
89 readiness:
90   initialDelaySeconds: 1
91   periodSeconds: 10
92   successThreshold: 1
93   failureThreshold: 3
94
95 startup:
96   initialDelaySeconds: 10
97   periodSeconds: 10
98   successThreshold: 1
99   failureThreshold: 60
100
101 service:
102   type: NodePort
103   internalPort: 8080
104   externalPort: 8080
105   internalPort2: 8443
106   externalPort2: 8443
107   portName: sdc-wfd-fe
108   nodePort: "56" # only one node port. set to http or https port depending on isHttpsEnabled property
109
110 ingress:
111   enabled: false
112   service:
113     - baseaddr: "sdcwfdfe"
114       name: "sdc-wfd-fe"
115       port: 8443
116   annotations:
117     ingress.kubernetes.io/secure-backends: "false"
118     nginx.ingress.kubernetes.io/secure-backends: "false"
119     nginx.ingress.kubernetes.io/proxy-body-size: "0"
120     nginx.ingress.kubernetes.io/ssl-redirect: "true"
121     nginx.ingress.kubernetes.io/backend-protocol: "HTTP"
122     nginx.ingress.kubernetes.io/rewrite-target: "/workflows/"
123
124 # Resource Limit flavor -By Default using small
125 # Segregation for Different environment (Small and Large)
126 flavor: small
127 resources:
128   small:
129     limits:
130       cpu: 500m
131       memory: 2Gi
132     requests:
133       cpu: 40m
134       memory: 1Gi
135   large:
136     limits:
137       cpu: 1
138       memory: 4Gi
139     requests:
140       cpu: 80m
141       memory: 2Gi
142   unlimited: {}
143
144 #Pods Service Account
145 serviceAccount:
146   nameOverride: sdc-wfd-fe
147   roles:
148     - read
149
150 #Log configuration
151 log:
152   path: /var/log/onap
153 logConfigMapNamePrefix: '{{ include "common.fullname" . }}'