Merge "[SDNC] Set STDOUT Log level"
[oom.git] / kubernetes / oof / charts / oof-has / charts / oof-has-api / values.yaml
1 # Copyright © 2017 Amdocs, AT&T, Bell Canada, VMware
2 # Copyright (C) 2020 Wipro Limited.
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 global: # global defaults
17   nodePortPrefix: 302
18
19 service:
20   type: NodePort
21   name: oof-has-api
22   externalPort: 8091
23   internalPort: 8091
24   nodePort: 75
25   portName: oof-has-api
26
27 #sidecar container image
28 nginx:
29   image: bitnami/nginx:1.18-debian-10
30 #backend container info
31 uwsgi:
32   internalPort: 8080
33 ingress:
34   enabled: false
35 replicaCount: 1
36 nodeSelector: {}
37 affinity: {}
38 # Resource Limit flavor -By Default using small
39 flavor: small
40 # Segregation for Different environment (Small and Large)
41 resources:
42   small:
43     limits:
44       memory: 4Gi
45       cpu: 2000m
46     requests:
47       memory: 1Gi
48       cpu: 500m
49   large:
50     limits:
51       memory: 8Gi
52       cpu: 4000m
53     requests:
54       memory: 2Gi
55       cpu: 1000m
56   unlimited: {}
57 # probe configuration parameters
58 liveness:
59   initialDelaySeconds: 10
60   periodSeconds: 10
61   # necessary to disable liveness probe when setting breakpoints
62   # in debugger so K8s doesn't restart unresponsive container
63   enabled: true
64 readiness:
65   initialDelaySeconds: 10
66   periodSeconds: 10
67
68
69 ingress:
70   enabled: false
71   service:
72     - baseaddr: "oof-has-api.onap"
73       name: "oof-has-api"
74       port: 8091
75   config:
76     ssl: "redirect"