blob: 19250d8f69dc62f8c0a8eec967fdaac00899c8ce [file] [log] [blame]
vaibhav_16dec34582cd2018-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
kje371d042018-03-27 15:50:39 +030015#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
kje371d042018-03-27 15:50:39 +030020 readinessRepository: oomk8s
BorislavGa3375522018-04-15 11:55:39 +000021 readinessImage: readiness-check:2.0.0
Mike Elliott77a201b2018-05-08 14:22:13 -040022 ubuntuInitRepository: registry.hub.docker.com
23 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
Mahendra Raghuwanshif92ec302018-05-03 12:15:03 +000024 persistence:
25 enabled: true
kje371d042018-03-27 15:50:39 +030026
27#################################################################
28# Application configuration defaults.
29#################################################################
Mahendra Raghuwanshif92ec302018-05-03 12:15:03 +000030config:
31 serviceServiceName: aaf-service
32 locateServiceName: aaf-locate
33 cmServiceName: aaf-cm
34 fsServiceName: aaf-fs
35 guiServiceName: aaf-gui
36 helloServiceName: aaf-hello
37 oauthServiceName: aaf-oauth
38 csServiceName: aaf-cass
Mike Elliott77a201b2018-05-08 14:22:13 -040039 # gerrit branch where the latest aaf/auth/sample/public code exists
40 gerritProject: http://gerrit.onap.org/r/aaf/authz.git
41 gerritBranch: master
kje371d042018-03-27 15:50:39 +030042
43# 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
kje371d042018-03-27 15:50:39 +030062ingress:
63 enabled: false
64
Mahendra Raghuwanshif92ec302018-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
kje371d042018-03-27 15:50:39 +030086resources: {}
87 # We usually recommend not to specify default resources and to leave this as a conscious
88 # choice for the user. This also increases chances charts run on environments with little
89 # resources, such as Minikube. If you do want to specify resources, uncomment the following
90 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
91 #
92 # Example:
93 # Configure resource requests and limits
94 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
95 # Minimum memory for development is 2 CPU cores and 4GB memory
96 # Minimum memory for production is 4 CPU cores and 8GB memory
97#resources:
98# limits:
99# cpu: 2
100# memory: 4Gi
101# requests:
102# cpu: 2
103# memory: 4Gi