blob: a914b542f479d7b2749cc352dfaf29b1b9afc1e3 [file] [log] [blame]
kj52dfb132018-03-27 15:50:39 +03001# 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#################################################################
18global:
19 nodePortPrefix: 302
dsingh.27864a34bf2018-09-21 05:11:00 -040020flavor: small
kj52dfb132018-03-27 15:50:39 +030021
22#################################################################
23# Application configuration defaults.
24#################################################################
25# application image
26repository: nexus3.onap.org:10001
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000027image: onap/aaf/aaf_cass:2.1.2-SNAPSHOT
kj52dfb132018-03-27 15:50:39 +030028pullPolicy: Always
29
kj52dfb132018-03-27 15:50:39 +030030# application configuration
31config: {}
32
33# default number of instances
34replicaCount: 1
35
36nodeSelector: {}
37
38affinity: {}
39
40# probe configuration parameters
41liveness:
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000042 initialDelaySeconds: 300
kj52dfb132018-03-27 15:50:39 +030043 periodSeconds: 10
44 # necessary to disable liveness probe when setting breakpoints
45 # in debugger so K8s doesn't restart unresponsive container
46 enabled: true
47
48readiness:
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000049 initialDelaySeconds: 120
kj52dfb132018-03-27 15:50:39 +030050 periodSeconds: 10
51
52service:
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000053 name: aaf-cass
kj52dfb132018-03-27 15:50:39 +030054 type: ClusterIP
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000055 portName: aaf-cs
kj52dfb132018-03-27 15:50:39 +030056 #targetPort
57 internalPort: 7000
58 #port
59 externalPort: 7000
Mandeep Khinda60d36d42018-09-24 15:15:48 +000060
kj52dfb132018-03-27 15:50:39 +030061 internalPort2: 7001
62 externalPort2: 7001
63 internalPort3: 9042
64 externalPort3: 9042
65 internalPort4: 9160
66 externalPort4: 9160
67
68ingress:
69 enabled: false
70
dsingh.27864a34bf2018-09-21 05:11:00 -040071# Configure resource requests and limits
72resources:
73 small:
74 limits:
75 cpu: 200m
76 memory: 10000Mi
77 requests:
78 cpu: 10m
79 memory: 8500Mi
80 large:
81 limits:
82 cpu: 400m
83 memory: 12000Mi
84 requests:
85 cpu: 40m
86 memory: 9000Mi
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000087 unlimited: {}
88
89persistence:
90 enabled: true
91 #existingClaim:
92 mountPath: /dockerdata-nfs
93 mountSubPath: "cass"
94 volumeReclaimPolicy: Retain
95 accessMode: ReadWriteOnce
96 size: 10Gi
97 storageClass: "manual"