[SDC] Update SDC docker images to 1.11.6
[oom.git] / kubernetes / sdc / components / sdc-fe / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T, ZTE
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   nodePortPrefix: 302
21   aafEnabled: true
22
23 #################################################################
24 # AAF Part
25 #################################################################
26 certInitializer:
27   nameOverride: sdc-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-frontend:1.11.6
51 pullPolicy: Always
52
53 config:
54   javaOptions: "-Xmx256m -Xms256m"
55   plugins:
56     dcae_discovery_url:
57       https: "https://sdc-dcae-fe:9444/dcaed/#/home"
58       http: "http://sdc-dcae-fe:8183/dcaed/#/home"
59     dcae_source_url: "https://sdc.dcae.plugin.simpledemo.onap.org:30264/dcaed/#/home"
60     dcae_dt_discovery_url:
61       https: "https://sdc-dcae-dt:9446/dcae/#/dcae/home"
62       http: "http://sdc-dcae-dt:8186/dcae/#/dcae/home"
63     dcae_dt_source_url: "https://sdc.dcae.plugin.simpledemo.onap.org:30266/dcae/#/dcae/home"
64     workflow_discovery_url:
65       https: "https://sdc-wfd-fe:8443/workflows"
66       http: "http://sdc-wfd-fe:8080/workflows"
67     workflow_source_url: "https://sdc.workflow.plugin.simpledemo.onap.org:30256/workflows/"
68
69 #environment file
70 env:
71   name: AUTO
72
73 security:
74   disableHttp: true
75
76 # default number of instances
77 replicaCount: 1
78
79 nodeSelector: {}
80
81 affinity: {}
82
83 # probe configuration parameters
84 liveness:
85   initialDelaySeconds: 1
86   periodSeconds: 10
87   timeoutSeconds: 15
88   successThreshold: 1
89   failureThreshold: 3
90   # necessary to disable liveness probe when setting breakpoints
91   # in debugger so K8s doesn't restart unresponsive container
92   enabled: true
93
94 readiness:
95   initialDelaySeconds: 1
96   periodSeconds: 10
97   timeoutSeconds: 15
98   successThreshold: 1
99   failureThreshold: 3
100
101 startup:
102   initialDelaySeconds: 10
103   periodSeconds: 10
104   timeoutSeconds: 15
105   successThreshold: 1
106   failureThreshold: 60
107
108 service:
109   #Example service definition with external, internal and node ports.
110   #Services may use any combination of ports depending on the 'type' of
111   #service being defined.
112   type: NodePort
113   name: sdc-fe
114   portName: http
115   internalPort: 8181
116   externalPort: 8181
117   internalPort2: 9443
118   externalPort2: 9443
119   nodePort: "07"
120
121
122 ingress:
123   enabled: false
124   service:
125     - baseaddr: "sdc.api.fe"
126       name: "sdc-fe"
127       port: 9443
128   config:
129     ssl: "redirect"
130
131 # Resource Limit flavor -By Default using small
132 flavor: small
133 # Segregation for Different environment (Small and Large)
134 resources:
135   small:
136     limits:
137       cpu: 500m
138       memory: 2Gi
139     requests:
140       cpu: 40m
141       memory: 1Gi
142   large:
143     limits:
144       cpu: 1
145       memory: 4Gi
146     requests:
147       cpu: 80m
148       memory: 2Gi
149   unlimited: {}
150
151 #Pods Service Account
152 serviceAccount:
153   nameOverride: sdc-fe
154   roles:
155     - read
156
157 #Log configuration
158 log:
159   path: /var/log/onap
160 logConfigMapNamePrefix: '{{ include "common.fullname" . }}'