Remove the hbase charts from aai
[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
33   babel:
34     serviceName: aai-babel
35   champ:
36     serviceName: aai-champ
37   aaiElasticsearch:
38     serviceName: aai-elasticsearch
39   resources:
40     serviceName: aai-resources
41   sparkyBe:
42     serviceName: aai-sparky-be
43   dataRouter:
44     serviceName: aai-data-router
45   gizmo:
46     serviceName: aai-gizmo
47   modelloader:
48     serviceName: aai-modelloader
49   searchData:
50     serviceName: aai-search-data
51   traversal:
52     serviceName: aai-traversal
53
54
55 # application image
56 dockerhubRepository: registry.hub.docker.com
57 image: aaionap/haproxy:1.2.4
58 pullPolicy: Always
59
60 # flag to enable debugging - application support required
61 debugEnabled: false
62
63 # application configuration
64 config:
65   logstashServiceName: log-ls
66   logstashPort: 5044
67
68 # default number of instances
69 replicaCount: 1
70
71 nodeSelector: {}
72
73 affinity: {}
74
75 # probe configuration parameters
76 liveness:
77   initialDelaySeconds: 10
78   periodSeconds: 10
79   # necessary to disable liveness probe when setting breakpoints
80   # in debugger so K8s doesn't restart unresponsive container
81   enabled: true
82
83 readiness:
84   initialDelaySeconds: 10
85   periodSeconds: 10
86
87 service:
88   type: NodePort
89   portName: aai
90   externalPort: 8080
91   internalPort: 8080
92   nodePort: 32
93   portName2: aai-ssl
94   externalPort2: 8443
95   internalPort2: 8443
96   nodePort2: 33
97   # POLICY hotfix - Note this must be temporary
98   # See https://jira.onap.org/browse/POLICY-510
99   aaiServiceClusterIp:
100
101 ingress:
102   enabled: false
103
104 resources: {}
105   # We usually recommend not to specify default resources and to leave this as a conscious
106   # choice for the user. This also increases chances charts run on environments with little
107   # resources, such as Minikube. If you do want to specify resources, uncomment the following
108   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
109   #
110   # Example:
111   # Configure resource requests and limits
112   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
113   # Minimum memory for development is 2 CPU cores and 4GB memory
114   # Minimum memory for production is 4 CPU cores and 8GB memory
115 #resources:
116 #  limits:
117 #    cpu: 2
118 #    memory: 4Gi
119 #  requests:
120 #    cpu: 2
121 #    memory: 4Gi