Merge "Remove AAF truststore files from configmap"
[oom.git] / kubernetes / aaf / 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   repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
21   readinessRepository: oomk8s
22   readinessImage: readiness-check:2.0.0
23   ubuntuInitRepository: registry.hub.docker.com
24   ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
25   persistence: 
26     enabled: true
27
28 #################################################################
29 # Application configuration defaults.
30 #################################################################
31 config: 
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
40   # gerrit branch where the latest aaf/auth/sample/public code exists
41   gerritProject: http://gerrit.onap.org/r/aaf/authz.git
42   gerritBranch: master
43
44 # default number of instances
45 replicaCount: 1
46
47 nodeSelector: {}
48
49 affinity: {}
50
51 # probe configuration parameters
52 liveness:
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
59 readiness:
60   initialDelaySeconds: 10
61   periodSeconds: 10
62
63 ingress:
64   enabled: false
65
66 ## Persist data to a persitent volume
67 persistence:
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
87 resources: {}
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