blob: 153379b06c5973feca1004080c3e37dccebfd45d [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:
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
kj9bf27312018-03-19 15:07:44 +020056
57# application image
58dockerhubRepository: registry.hub.docker.com
Kajur, Harish (vk250x)449453a2018-05-09 23:32:22 -040059image: aaionap/haproxy:1.2.2
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:
kj9bf27312018-03-19 15:07:44 +020067 # POLICY hotfix - Note this must be temporary
68 # See https://jira.onap.org/browse/POLICY-510
69 aaiServiceClusterIp:
BorislavG5f3b6192018-03-25 18:12:38 +030070 logstashServiceName: log-ls
71 logstashPort: 5044
72
kj9bf27312018-03-19 15:07:44 +020073# default number of instances
74replicaCount: 1
75
76nodeSelector: {}
77
78affinity: {}
79
80# probe configuration parameters
81liveness:
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
88readiness:
89 initialDelaySeconds: 10
90 periodSeconds: 10
91
92service:
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
102ingress:
103 enabled: false
104
105resources: {}
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