[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / sdc / charts / 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   readinessImage: onap/oom/readiness:3.0.1
22   loggingRepository: docker.elastic.co
23   loggingImage: beats/filebeat:5.5.0
24
25 #################################################################
26 # Application configuration defaults.
27 #################################################################
28 # application image
29 repository: nexus3.onap.org:10001
30 image: onap/sdc-frontend:1.6.7
31 pullPolicy: Always
32
33 config:
34   javaOptions: "-Xmx256m -Xms256m"
35   plugins:
36     dcae_discovery_url: "https://sdc-dcae-fe:9444/dcaed/#/home"
37     dcae_source_url: "https://sdc.dcae.plugin.simpledemo.onap.org:30264/dcaed/#/home"
38     dcae_dt_discovery_url: "https://sdc-dcae-dt:9446/dcae/#/dcae/home"
39     dcae_dt_source_url: "https://sdc.dcae.plugin.simpledemo.onap.org:30266/dcae/#/dcae/home"
40     workflow_discovery_url: "https://sdc-wfd-fe:8443/workflows"
41     workflow_source_url: "https://sdc.workflow.plugin.simpledemo.onap.org:30256/workflows/"
42
43 # default number of instances
44 replicaCount: 1
45
46 nodeSelector: {}
47
48 affinity: {}
49
50 # probe configuration parameters
51 liveness:
52   initialDelaySeconds: 10
53   periodSeconds: 60
54   timeoutSeconds: 15
55   # necessary to disable liveness probe when setting breakpoints
56   # in debugger so K8s doesn't restart unresponsive container
57   enabled: true
58
59 readiness:
60   initialDelaySeconds: 10
61   periodSeconds: 60
62   timeoutSeconds: 15
63
64 service:
65   #Example service definition with external, internal and node ports.
66   #Services may use any combination of ports depending on the 'type' of
67   #service being defined.
68   type: NodePort
69   name: sdc-fe
70   portName: sdc-fe
71   nodePort: "06"
72   internalPort: 8181
73   externalPort: 8181
74   nodePort2: "07"
75   internalPort2: 9443
76   externalPort2: 9443
77
78
79
80 ingress:
81   enabled: false
82   service:
83     - baseaddr: "sdc.api.fe"
84       name: "sdc-fe"
85       port: 9443
86   config:
87     ssl: "redirect"
88
89 # Resource Limit flavor -By Default using small
90 flavor: small
91 # Segregation for Different environment (Small and Large)
92 resources:
93   small:
94     limits:
95       cpu: 1
96       memory: 4Gi
97     requests:
98       cpu: 10m
99       memory: 1Gi
100   large:
101     limits:
102       cpu: 2
103       memory: 8Gi
104     requests:
105       cpu: 20m
106       memory: 2Gi
107   unlimited: {}