blob: 1724be831cff6838393e3680811922f94eba2d71 [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 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
21 readinessRepository: oomk8s
BorislavGa3375522018-04-15 11:55:39 +000022 readinessImage: readiness-check:2.0.0
Mike Elliott77a201b2018-05-08 14:22:13 -040023 ubuntuInitRepository: registry.hub.docker.com
24 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
Mahendra Raghuwanshif92ec302018-05-03 12:15:03 +000025 persistence:
26 enabled: true
kje371d042018-03-27 15:50:39 +030027
28#################################################################
29# Application configuration defaults.
30#################################################################
Mahendra Raghuwanshif92ec302018-05-03 12:15:03 +000031config:
32 serviceServiceName: aaf-service
33 locateServiceName: aaf-locate
34 cmServiceName: aaf-cm
35 fsServiceName: aaf-fs
36 guiServiceName: aaf-gui
37 helloServiceName: aaf-hello
38 oauthServiceName: aaf-oauth
39 csServiceName: aaf-cass
Mike Elliott77a201b2018-05-08 14:22:13 -040040 # gerrit branch where the latest aaf/auth/sample/public code exists
41 gerritProject: http://gerrit.onap.org/r/aaf/authz.git
42 gerritBranch: master
kje371d042018-03-27 15:50:39 +030043
44# default number of instances
45replicaCount: 1
46
47nodeSelector: {}
48
49affinity: {}
50
51# probe configuration parameters
52liveness:
53 initialDelaySeconds: 10
54 periodSeconds: 10
55 # necessary to disable liveness probe when setting breakpoints
56 # in debugger so K8s doesn't restart unresponsive container
57 enabled: true
58
59readiness:
60 initialDelaySeconds: 10
61 periodSeconds: 10
62
kje371d042018-03-27 15:50:39 +030063ingress:
64 enabled: false
65
Mahendra Raghuwanshif92ec302018-05-03 12:15:03 +000066## Persist data to a persitent volume
67persistence:
68 ## A manually managed Persistent Volume and Claim
69 ## Requires persistence.enabled: true
70 ## If defined, PVC must be created manually before volume will be bound
71 # existingClaim:
72 volumeReclaimPolicy: Retain
73
74 ## database data Persistent Volume Storage Class
75 ## If defined, storageClassName: <storageClass>
76 ## If set to "-", storageClassName: "", which disables dynamic provisioning
77 ## If undefined (the default) or set to null, no storageClassName spec is
78 ## set, choosing the default provisioner. (gp2 on AWS, standard on
79 ## GKE, AWS & OpenStack)
80 ##
81 # storageClass: "-"
82 accessMode: ReadWriteMany
83 size: 2Gi
84 mountPath: /dockerdata-nfs
85 mountSubPath: aaf/data
86
kje371d042018-03-27 15:50:39 +030087resources: {}
88 # We usually recommend not to specify default resources and to leave this as a conscious
89 # choice for the user. This also increases chances charts run on environments with little
90 # resources, such as Minikube. If you do want to specify resources, uncomment the following
91 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
92 #
93 # Example:
94 # Configure resource requests and limits
95 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
96 # Minimum memory for development is 2 CPU cores and 4GB memory
97 # Minimum memory for production is 4 CPU cores and 8GB memory
98#resources:
99# limits:
100# cpu: 2
101# memory: 4Gi
102# requests:
103# cpu: 2
104# memory: 4Gi