blob: e8798186ed339348489b1c6f6fdb14132e0f5309 [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
21 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
22 dockerhubRepository: docker.io
23 busyboxImage: busybox
24 readinessRepository: oomk8s
BorislavG3d6f9372018-04-15 11:55:39 +000025 readinessImage: readiness-check:2.0.0
kj9bf27312018-03-19 15:07:44 +020026 loggingRepository: docker.elastic.co
27 loggingImage: beats/filebeat:5.5.0
28 restartPolicy: Always
vagrant1a3a3552018-03-10 23:56:32 +000029 cassandra:
Keren Joseph5689d5f2018-04-22 15:22:46 +030030 serviceName: aai-cassandra
vagrant1a3a3552018-03-10 23:56:32 +000031 replicas: 3
Keren Joseph5689d5f2018-04-22 15:22:46 +030032 aai:
33 serviceName: aai-aai
34 babel:
35 serviceName: aai-babel
36 champ:
37 serviceName: aai-champ
38 aaiElasticsearch:
39 serviceName: aai-elasticsearch
40 hbase:
41 serviceName: aai-hbase
42 resources:
43 serviceName: aai-resources
44 sparkyBe:
45 serviceName: aai-sparky-be
46 dataRouter:
47 serviceName: aai-data-router
48 gizmo:
49 serviceName: aai-gizmo
50 modelloader:
51 serviceName: aai-modelloader
52 searchData:
53 serviceName: aai-search-data
54 traversal:
55 serviceName: aai-traversal
56
kj9bf27312018-03-19 15:07:44 +020057
58# application image
59dockerhubRepository: registry.hub.docker.com
60image: aaionap/haproxy:1.1.0
kerenjfdc17622017-08-24 11:32:22 +000061pullPolicy: Always
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -050062
kj9bf27312018-03-19 15:07:44 +020063# flag to enable debugging - application support required
64debugEnabled: false
Jerome Doucerain7c0f04b2018-03-17 14:18:41 -040065
kj9bf27312018-03-19 15:07:44 +020066# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030067config:
kj9bf27312018-03-19 15:07:44 +020068 # POLICY hotfix - Note this must be temporary
69 # See https://jira.onap.org/browse/POLICY-510
70 aaiServiceClusterIp:
BorislavG5f3b6192018-03-25 18:12:38 +030071 logstashServiceName: log-ls
72 logstashPort: 5044
73
kj9bf27312018-03-19 15:07:44 +020074# default number of instances
75replicaCount: 1
76
77nodeSelector: {}
78
79affinity: {}
80
81# probe configuration parameters
82liveness:
83 initialDelaySeconds: 10
84 periodSeconds: 10
85 # necessary to disable liveness probe when setting breakpoints
86 # in debugger so K8s doesn't restart unresponsive container
87 enabled: true
88
89readiness:
90 initialDelaySeconds: 10
91 periodSeconds: 10
92
93service:
94 type: NodePort
95 name: aai
96 externalPort: 8080
97 internalPort: 8080
98 nodePort: 32
99 externalPort2: 8443
100 internalPort2: 8443
101 nodePort2: 33
102
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