blob: 0cd7ae315db981b958b22b02a31d77e5c7eacae9 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00002# Modifications Copyright © 2018 AT&T
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00003#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
kj9bf27312018-03-19 15:07:44 +020016# Default values for aai.
17# This is a YAML-formatted file.
18# Declare variables to be passed into your templates.
19global: # global defaults
20 nodePortPrefix: 302
21 repository: nexus3.onap.org:10001
kj9bf27312018-03-19 15:07:44 +020022 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:
BorislavG2d4426e2018-05-22 11:31:39 +000033 serviceName: aai
Keren Joseph5689d5f2018-04-22 15:22:46 +030034 babel:
35 serviceName: aai-babel
36 champ:
37 serviceName: aai-champ
38 aaiElasticsearch:
39 serviceName: aai-elasticsearch
Keren Joseph5689d5f2018-04-22 15:22:46 +030040 resources:
41 serviceName: aai-resources
42 sparkyBe:
43 serviceName: aai-sparky-be
44 dataRouter:
45 serviceName: aai-data-router
46 gizmo:
47 serviceName: aai-gizmo
48 modelloader:
49 serviceName: aai-modelloader
50 searchData:
51 serviceName: aai-search-data
52 traversal:
53 serviceName: aai-traversal
54
kj9bf27312018-03-19 15:07:44 +020055
56# application image
57dockerhubRepository: registry.hub.docker.com
Jimmy Forsythf4613972018-06-08 14:30:27 -040058image: aaionap/haproxy:1.2.4
kerenjfdc17622017-08-24 11:32:22 +000059pullPolicy: Always
Alexis de Talhouëtdf4db0b2017-12-11 08:36:25 -050060
kj9bf27312018-03-19 15:07:44 +020061# flag to enable debugging - application support required
62debugEnabled: false
Jerome Doucerain7c0f04b2018-03-17 14:18:41 -040063
kj9bf27312018-03-19 15:07:44 +020064# application configuration
BorislavG5f3b6192018-03-25 18:12:38 +030065config:
66 logstashServiceName: log-ls
67 logstashPort: 5044
68
kj9bf27312018-03-19 15:07:44 +020069# default number of instances
70replicaCount: 1
71
72nodeSelector: {}
73
74affinity: {}
75
76# probe configuration parameters
77liveness:
78 initialDelaySeconds: 10
79 periodSeconds: 10
80 # necessary to disable liveness probe when setting breakpoints
81 # in debugger so K8s doesn't restart unresponsive container
82 enabled: true
83
84readiness:
85 initialDelaySeconds: 10
86 periodSeconds: 10
87
88service:
89 type: NodePort
BorislavG2d4426e2018-05-22 11:31:39 +000090 portName: aai
kj9bf27312018-03-19 15:07:44 +020091 externalPort: 8080
92 internalPort: 8080
93 nodePort: 32
BorislavG2d4426e2018-05-22 11:31:39 +000094 portName2: aai-ssl
kj9bf27312018-03-19 15:07:44 +020095 externalPort2: 8443
96 internalPort2: 8443
97 nodePort2: 33
BorislavG2d4426e2018-05-22 11:31:39 +000098 # POLICY hotfix - Note this must be temporary
99 # See https://jira.onap.org/browse/POLICY-510
100 aaiServiceClusterIp:
kj9bf27312018-03-19 15:07:44 +0200101
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