Sync docker tags with release manifest
[oom.git] / kubernetes / aaf / charts / aaf-gui / values.yaml
1
2 # Copyright © 2017 Amdocs, Bell Canada
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.0
23 flavor: small
24 #################################################################
25 # Application configuration defaults.
26 #################################################################
27 # application image
28 repository: nexus3.onap.org:10001
29 image: onap/aaf/aaf_gui:2.1.8
30 aaf_register_as: "aaf-gui.onap"
31 pullPolicy: Always
32
33
34 # default number of instances
35 replicaCount: 1
36
37 nodeSelector: {}
38
39 affinity: {}
40
41 # probe configuration parameters
42 liveness:
43   initialDelaySeconds: 300
44   periodSeconds: 10
45   # necessary to disable liveness probe when setting breakpoints
46   # in debugger so K8s doesn't restart unresponsive container
47   enabled: true
48
49 readiness:
50   initialDelaySeconds: 30
51   periodSeconds: 10
52
53 service:
54   name: aaf-gui
55   type: NodePort
56   portName: aaf-gui
57   #targetPort
58   internalPort: 8200
59   #port
60   externalPort: 8200
61   nodePort: 51
62
63 ingress:
64   enabled: false
65
66 # Configure resource requests and limits
67 resources:
68   small:
69     limits:
70       cpu: 100m
71       memory: 500Mi
72     requests:
73       cpu: 10m
74       memory: 200Mi
75   large:
76     limits:
77       cpu: 200m
78       memory: 1Gi
79     requests:
80       cpu: 100m
81       memory: 500Mi
82   unlimited: {}