blob: a68d2402bfc89ae09c1a6314b445fec7d76c4ab6 [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
Keren Joseph5689d5f2018-04-22 15:22:46 +030039 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
kj9bf27312018-03-19 15:07:44 +020054
55# application image
56dockerhubRepository: registry.hub.docker.com
Jimmy Forsythf4613972018-06-08 14:30:27 -040057image: aaionap/haproxy:1.2.4
kerenjfdc17622017-08-24 11:32:22 +000058pullPolicy: Always
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -050059
kj9bf27312018-03-19 15:07:44 +020060# flag to enable debugging - application support required
61debugEnabled: false
Jerome Doucerain7c0f04b2018-03-17 14:18:41 -040062
kj9bf27312018-03-19 15:07:44 +020063# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030064config:
65 logstashServiceName: log-ls
66 logstashPort: 5044
67
kj9bf27312018-03-19 15:07:44 +020068# default number of instances
69replicaCount: 1
70
71nodeSelector: {}
72
73affinity: {}
74
75# probe configuration parameters
76liveness:
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
83readiness:
84 initialDelaySeconds: 10
85 periodSeconds: 10
86
87service:
88 type: NodePort
BorislavG2d4426e2018-05-22 11:31:39 +000089 portName: aai
kj9bf27312018-03-19 15:07:44 +020090 externalPort: 8080
91 internalPort: 8080
92 nodePort: 32
BorislavG2d4426e2018-05-22 11:31:39 +000093 portName2: aai-ssl
kj9bf27312018-03-19 15:07:44 +020094 externalPort2: 8443
95 internalPort2: 8443
96 nodePort2: 33
BorislavG2d4426e2018-05-22 11:31:39 +000097 # POLICY hotfix - Note this must be temporary
98 # See https://jira.onap.org/browse/POLICY-510
99 aaiServiceClusterIp:
kj9bf27312018-03-19 15:07:44 +0200100
101ingress:
102 enabled: false
103
104resources: {}
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