blob: 931a31dc65d4a7319574afa8f1ae8ab68352e8ad [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# 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
kj52dfb132018-03-27 15:50:39 +030015#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
kj52dfb132018-03-27 15:50:39 +030020 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000021 readinessImage: readiness-check:2.0.0
Mike Elliottb35b5802018-05-08 14:22:13 -040022 ubuntuInitRepository: registry.hub.docker.com
23 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
Mandeep Khinda60d36d42018-09-24 15:15:48 +000024 persistence:
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000025 enabled: true
kj52dfb132018-03-27 15:50:39 +030026#################################################################
27# Application configuration defaults.
28#################################################################
Mandeep Khinda60d36d42018-09-24 15:15:48 +000029config:
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000030 serviceServiceName: aaf-service
31 locateServiceName: aaf-locate
32 cmServiceName: aaf-cm
33 fsServiceName: aaf-fs
34 guiServiceName: aaf-gui
35 helloServiceName: aaf-hello
36 oauthServiceName: aaf-oauth
37 csServiceName: aaf-cass
Mike Elliottb35b5802018-05-08 14:22:13 -040038 # gerrit branch where the latest aaf/auth/sample/public code exists
39 gerritProject: http://gerrit.onap.org/r/aaf/authz.git
dsingh.27864a34bf2018-09-21 05:11:00 -040040 gerritBranch: 2.0.0-ONAP
kj52dfb132018-03-27 15:50:39 +030041
dsingh.27864a34bf2018-09-21 05:11:00 -040042flavor: small
kj52dfb132018-03-27 15:50:39 +030043# default number of instances
44replicaCount: 1
45
46nodeSelector: {}
47
48affinity: {}
49
50# probe configuration parameters
51liveness:
52 initialDelaySeconds: 10
53 periodSeconds: 10
54 # necessary to disable liveness probe when setting breakpoints
55 # in debugger so K8s doesn't restart unresponsive container
56 enabled: true
57
58readiness:
59 initialDelaySeconds: 10
60 periodSeconds: 10
61
kj52dfb132018-03-27 15:50:39 +030062ingress:
63 enabled: false
64
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000065## Persist data to a persitent volume
66persistence:
67 ## A manually managed Persistent Volume and Claim
68 ## Requires persistence.enabled: true
69 ## If defined, PVC must be created manually before volume will be bound
70 # existingClaim:
71 volumeReclaimPolicy: Retain
72
73 ## database data Persistent Volume Storage Class
74 ## If defined, storageClassName: <storageClass>
75 ## If set to "-", storageClassName: "", which disables dynamic provisioning
76 ## If undefined (the default) or set to null, no storageClassName spec is
77 ## set, choosing the default provisioner. (gp2 on AWS, standard on
78 ## GKE, AWS & OpenStack)
79 ##
80 # storageClass: "-"
81 accessMode: ReadWriteMany
82 size: 2Gi
83 mountPath: /dockerdata-nfs
84 mountSubPath: aaf/data
85
dsingh.27864a34bf2018-09-21 05:11:00 -040086# Configure resource requests and limits
87resources:
88 small:
89 limits:
90 cpu: 2
91 memory: 3Gi
92 requests:
93 cpu: 2
94 memory: 3Gi
95 large:
96 limits:
97 cpu: 4
98 memory: 6Gi
99 requests:
100 cpu: 4
101 memory: 6Gi
102 unlimited: {}