Add portal, aaf, onap charts and integrate with ric common template
[it/dep.git] / ric-aux / 80-Auxiliary-Functions / helm / aaf / charts / aaf-service / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefix: 302
20   readinessRepository: oomk8s
21   readinessImage: readiness-check:2.0.0
22   aaf:
23     service:
24       replicas: 1
25       fqdn: "aaf-service"
26       internal_port: 8100
27       public_port: 31110      
28 flavor: small
29 #################################################################
30 # Application configuration defaults.
31 #################################################################
32 # application image
33
34 nodeSelector: {}
35
36 affinity: {}
37
38 # probe configuration parameters
39 liveness:
40   initialDelaySeconds: 120
41   periodSeconds: 10
42   # necessary to disable liveness probe when setting breakpoints
43   # in debugger so K8s doesn't restart unresponsive container
44   enabled: true
45
46 readiness:
47   initialDelaySeconds: 5
48   periodSeconds: 10
49
50 service:
51   name: aaf-service
52   type: NodePort
53   portName: aaf-service
54   #targetPort
55   internalPort: 8100
56   #port
57   externalPort: 31110
58
59 ingress:
60   enabled: false
61
62 # Configure resource requests and limits
63 resources: {}
64 # Allow END users to do this, if they want.  Detrimental to Test services
65 #resources:
66 #  small:
67 #    limits:
68 #      cpu: 200m
69 #      memory: 800Mi
70 #    requests:
71 #      cpu: 20m
72 #      memory: 300Mi
73 #  large:
74 #    limits:
75 #      cpu: 400m
76 #      memory: 1Gi
77 #    requests:
78 #      cpu: 40m
79 #      memory: 300Mi
80 #  unlimited: {}