HTTPS calls for sdc
[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   readinessRepository: oomk8s
22   readinessImage: readiness-check:2.0.2
23   loggingRepository: docker.elastic.co
24   loggingImage: beats/filebeat:5.5.0
25
26 #################################################################
27 # Application configuration defaults.
28 #################################################################
29 # application image
30 repository: nexus3.onap.org:10001
31 image: onap/sdc-frontend:1.5.2
32 pullPolicy: Always
33
34 config:
35   javaOptions: "-Xmx256m -Xms256m"
36   plugins:
37     dcae_discovery_url: "https://sdc-dcae-fe:9444/dcaed/#/home"
38     dcae_source_url: "https://sdc.dcae.plugin.simpledemo.onap.org:30264/dcaed/#/home"
39     dcae_dt_discovery_url: "https://sdc-dcae-dt:9446/dcae/#/dcae/home"
40     dcae_dt_source_url: "https://sdc.dcae.plugin.simpledemo.onap.org:30266/dcae/#/dcae/home"
41     workflow_discovery_url: "http://sdc-wfd-fe:8080/workflows"
42     workflow_source_url: "https://sdc.workflow.plugin.simpledemo.onap.org:30431/workflows/"
43
44 # default number of instances
45 replicaCount: 1
46
47 nodeSelector: {}
48
49 affinity: {}
50
51 # probe configuration parameters
52 liveness:
53   initialDelaySeconds: 10
54   periodSeconds: 10
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: 10
62
63 service:
64   #Example service definition with external, internal and node ports.
65   #Services may use any combination of ports depending on the 'type' of
66   #service being defined.
67   type: NodePort
68   name: sdc-fe
69   portName: sdc-fe
70   nodePort: "06"
71   internalPort: 8181
72   externalPort: 8181
73   nodePort2: "07"
74   internalPort2: 9443
75   externalPort2: 9443
76
77
78
79 ingress:
80   enabled: false
81
82 # Resource Limit flavor -By Default using small
83 flavor: small
84 # Segregation for Different environment (Small and Large)
85 resources:
86   small:
87     limits:
88       cpu: 1
89       memory: 4Gi
90     requests:
91       cpu: 10m
92       memory: 1Gi
93   large:
94     limits:
95       cpu: 2
96       memory: 8Gi
97     requests:
98       cpu: 20m
99       memory: 2Gi
100   unlimited: {}