blob: b07048e1344cd708f674e04cf29c7527e56820a8 [file] [log] [blame]
vaibhav_16dece04b2fe2018-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
kj9bf27312018-03-19 15:07:44 +020015# Default values for aai.
16# This is a YAML-formatted file.
17# Declare variables to be passed into your templates.
18global: # global defaults
19 nodePortPrefix: 302
20 repository: nexus3.onap.org:10001
kj9bf27312018-03-19 15:07:44 +020021 dockerhubRepository: docker.io
22 busyboxImage: busybox
23 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000024 readinessImage: readiness-check:2.0.0
kj9bf27312018-03-19 15:07:44 +020025 loggingRepository: docker.elastic.co
26 loggingImage: beats/filebeat:5.5.0
27 restartPolicy: Always
vagrant1a3a3552018-03-10 23:56:32 +000028 cassandra:
Keren Joseph5689d5f2018-04-22 15:22:46 +030029 serviceName: aai-cassandra
vagrant1a3a3552018-03-10 23:56:32 +000030 replicas: 3
Keren Joseph5689d5f2018-04-22 15:22:46 +030031 aai:
BorislavG2d4426e2018-05-22 11:31:39 +000032 serviceName: aai
Keren Joseph5689d5f2018-04-22 15:22:46 +030033 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
kj9bf27312018-03-19 15:07:44 +020056
57# application image
58dockerhubRepository: registry.hub.docker.com
Jimmy Forsythf4613972018-06-08 14:30:27 -040059image: aaionap/haproxy:1.2.4
kerenjfdc17622017-08-24 11:32:22 +000060pullPolicy: Always
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -050061
kj9bf27312018-03-19 15:07:44 +020062# flag to enable debugging - application support required
63debugEnabled: false
Jerome Doucerain7c0f04b2018-03-17 14:18:41 -040064
kj9bf27312018-03-19 15:07:44 +020065# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030066config:
67 logstashServiceName: log-ls
68 logstashPort: 5044
69
kj9bf27312018-03-19 15:07:44 +020070# default number of instances
71replicaCount: 1
72
73nodeSelector: {}
74
75affinity: {}
76
77# probe configuration parameters
78liveness:
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
85readiness:
86 initialDelaySeconds: 10
87 periodSeconds: 10
88
89service:
90 type: NodePort
BorislavG2d4426e2018-05-22 11:31:39 +000091 portName: aai
kj9bf27312018-03-19 15:07:44 +020092 externalPort: 8080
93 internalPort: 8080
94 nodePort: 32
BorislavG2d4426e2018-05-22 11:31:39 +000095 portName2: aai-ssl
kj9bf27312018-03-19 15:07:44 +020096 externalPort2: 8443
97 internalPort2: 8443
98 nodePort2: 33
BorislavG2d4426e2018-05-22 11:31:39 +000099 # POLICY hotfix - Note this must be temporary
100 # See https://jira.onap.org/browse/POLICY-510
101 aaiServiceClusterIp:
kj9bf27312018-03-19 15:07:44 +0200102
103ingress:
104 enabled: false
105
106resources: {}
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