Merge "[AAF] Use global storage templates for PVC"
[oom.git] / kubernetes / aaf / charts / aaf-cass / 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 flavor: small
21
22 #################################################################
23 # Application configuration defaults.
24 #################################################################
25 # application configuration
26 config: {}
27
28 nodeSelector: {}
29
30 affinity: {}
31
32 # probe configuration parameters
33 liveness:
34   initialDelaySeconds: 120
35   periodSeconds: 10
36   # necessary to disable liveness probe when setting breakpoints
37   # in debugger so K8s doesn't restart unresponsive container
38   enabled: true
39
40 readiness:
41   initialDelaySeconds: 5
42   periodSeconds: 10
43
44 service:
45   name: aaf-cass
46   type: ClusterIP
47   portName: aaf-cass
48   #targetPort
49   internalPort: 7000
50   #port
51   externalPort: 7000
52
53   internalPort2: 7001
54   externalPort2: 7001
55   internalPort3: 9042
56   externalPort3: 9042
57   internalPort4: 9160
58   externalPort4: 9160
59
60 ingress:
61   enabled: false
62
63 # Configure resource requests and limits
64 resources:
65  small:
66    limits:
67      cpu: 2100m
68      memory: 1792Mi
69    requests:
70      cpu: 30m
71      memory: 1280Mi
72  large:
73    limits:
74      cpu: 4
75      memory: 12000Mi
76    requests:
77      cpu: 40m
78      memory: 9000Mi
79  unlimited: {}
80
81 persistence:
82   enabled: true
83   #existingClaim:
84   mountPath: /dockerdata-nfs
85   mountSubPath: "cass"
86   volumeReclaimPolicy: Retain
87   accessMode: ReadWriteOnce
88   size: 20Gi