Update the haproxy for certificate
[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   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.3
60 pullPolicy: Always
61
62 # flag to enable debugging - application support required
63 debugEnabled: false
64
65 # application configuration
66 config:
67   logstashServiceName: log-ls
68   logstashPort: 5044
69
70 # default number of instances
71 replicaCount: 1
72
73 nodeSelector: {}
74
75 affinity: {}
76
77 # probe configuration parameters
78 liveness:
79   initialDelaySeconds: 10
80   periodSeconds: 10
81   # necessary to disable liveness probe when setting breakpoints
82   # in debugger so K8s doesn't restart unresponsive container
83   enabled: true
84
85 readiness:
86   initialDelaySeconds: 10
87   periodSeconds: 10
88
89 service:
90   type: NodePort
91   portName: aai
92   externalPort: 8080
93   internalPort: 8080
94   nodePort: 32
95   portName2: aai-ssl
96   externalPort2: 8443
97   internalPort2: 8443
98   nodePort2: 33
99   # POLICY hotfix - Note this must be temporary
100   # See https://jira.onap.org/browse/POLICY-510
101   aaiServiceClusterIp:
102
103 ingress:
104   enabled: false
105
106 resources: {}
107   # We usually recommend not to specify default resources and to leave this as a conscious
108   # choice for the user. This also increases chances charts run on environments with little
109   # resources, such as Minikube. If you do want to specify resources, uncomment the following
110   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
111   #
112   # Example:
113   # Configure resource requests and limits
114   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
115   # Minimum memory for development is 2 CPU cores and 4GB memory
116   # Minimum memory for production is 4 CPU cores and 8GB memory
117 #resources:
118 #  limits:
119 #    cpu: 2
120 #    memory: 4Gi
121 #  requests:
122 #    cpu: 2
123 #    memory: 4Gi