8639d6c0f0a15561d1374e8fc58ca5f8aff0c2b8
[oom.git] / kubernetes / aaf / components / aaf-gui / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications © 2020 AT&T, Orange
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:
17   nodePortPrefix: 302
18   # Readiness image
19   readinessRepository: oomk8s
20   readinessImage: readiness-check:2.0.2
21   # Ubuntu Init image
22   ubuntuInitRepository: registry.hub.docker.com
23   ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
24   # Logging image
25   loggingRepository: docker.elastic.co
26   loggingImage: beats/filebeat:5.5.0
27   # BusyBox image
28   busyboxRepository: registry.hub.docker.com
29   busyboxImage: library/busybox:1.31
30   persistence:
31     enabled: true
32   # Standard OOM
33   pullPolicy: "Always"
34   repository: "nexus3.onap.org:10001"
35
36   aaf:
37     config:
38       image: onap/aaf/aaf_config:2.1.23
39
40 flavor: small
41 #################################################################
42 # Application configuration defaults.
43 #################################################################
44 # application image
45 pullPolicy: Always
46
47 replicaCount: 1
48
49 binary: gui
50
51 sequence_order:
52   - service
53   - locate
54
55 nodeSelector: {}
56
57 affinity: {}
58
59 # probe configuration parameters
60 liveness:
61   initialDelaySeconds: 30
62   periodSeconds: 10
63   # necessary to disable liveness probe when setting breakpoints
64   # in debugger so K8s doesn't restart unresponsive container
65   enabled: true
66   port: gui
67
68 readiness:
69   initialDelaySeconds: 5
70   periodSeconds: 10
71   port: gui
72
73 service:
74   name: aaf-gui
75   type: NodePort
76   ports:
77     - name: gui
78       protocol: http
79       port: 8200
80       nodePort: 51
81
82 ingress:
83   enabled: false
84   service:
85     - baseaddr: "aafgui"
86       name: "aaf-gui"
87       port: 8200
88   config:
89     ssl: "redirect"
90
91 # Configure resource requests and limits
92 resources:
93   small:
94     limits:
95       cpu: 200m
96       memory: 280Mi
97     requests:
98       cpu: 1m
99       memory: 170Mi
100   large:
101     limits:
102       cpu: 200m
103       memory: 1Gi
104     requests:
105       cpu: 100m
106       memory: 500Mi
107   unlimited: {}