Merge "Add separate PV for each SDN-C MYSQL pod"
[oom.git] / kubernetes / aai / 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 # Default values for aai.
16 # This is a YAML-formatted file.
17 # Declare variables to be passed into your templates.
18 global: # global defaults
19   nodePortPrefix: 302
20   repository: nexus3.onap.org:10001
21   dockerhubRepository: docker.io
22   busyboxImage: busybox
23   readinessRepository: oomk8s
24   readinessImage: readiness-check:2.0.0
25   loggingRepository: docker.elastic.co
26   loggingImage: beats/filebeat:5.5.0
27   restartPolicy: Always
28   cassandra:
29     serviceName: aai-cassandra
30     replicas: 3
31   aai:
32     serviceName: aai-aai
33   babel:
34     serviceName: aai-babel
35   champ:
36     serviceName: aai-champ
37   aaiElasticsearch:
38     serviceName: aai-elasticsearch
39   hbase:
40     serviceName: aai-hbase
41   resources:
42     serviceName: aai-resources
43   sparkyBe:
44     serviceName: aai-sparky-be
45   dataRouter:
46     serviceName: aai-data-router
47   gizmo:
48     serviceName: aai-gizmo
49   modelloader:
50     serviceName: aai-modelloader
51   searchData:
52     serviceName: aai-search-data
53   traversal:
54     serviceName: aai-traversal
55
56
57 # application image
58 dockerhubRepository: registry.hub.docker.com
59 image: aaionap/haproxy:1.2.2
60 pullPolicy: Always
61
62 # flag to enable debugging - application support required
63 debugEnabled: false
64
65 # application configuration
66 config:
67   # POLICY hotfix - Note this must be temporary
68   # See https://jira.onap.org/browse/POLICY-510
69   aaiServiceClusterIp:
70   logstashServiceName: log-ls
71   logstashPort: 5044
72
73 # default number of instances
74 replicaCount: 1
75
76 nodeSelector: {}
77
78 affinity: {}
79
80 # probe configuration parameters
81 liveness:
82   initialDelaySeconds: 10
83   periodSeconds: 10
84   # necessary to disable liveness probe when setting breakpoints
85   # in debugger so K8s doesn't restart unresponsive container
86   enabled: true
87
88 readiness:
89   initialDelaySeconds: 10
90   periodSeconds: 10
91
92 service:
93   type: NodePort
94   name: aai
95   externalPort: 8080
96   internalPort: 8080
97   nodePort: 32
98   externalPort2: 8443
99   internalPort2: 8443
100   nodePort2: 33
101
102 ingress:
103   enabled: false
104
105 resources: {}
106   # We usually recommend not to specify default resources and to leave this as a conscious
107   # choice for the user. This also increases chances charts run on environments with little
108   # resources, such as Minikube. If you do want to specify resources, uncomment the following
109   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
110   #
111   # Example:
112   # Configure resource requests and limits
113   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
114   # Minimum memory for development is 2 CPU cores and 4GB memory
115   # Minimum memory for production is 4 CPU cores and 8GB memory
116 #resources:
117 #  limits:
118 #    cpu: 2
119 #    memory: 4Gi
120 #  requests:
121 #    cpu: 2
122 #    memory: 4Gi