blob: df3f5cfd7c1b7648671bf6cdc65c83bd6d0761a2 [file] [log] [blame]
toshrajbhardwaj84d73b12018-08-06 07:35:14 +00001# Copyright © 2018 Amdocs, Bell Canada, AT&T
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
kj6a8ce802018-03-19 15:07:44 +020015# Default values for sparky-be.
16# This is a YAML-formatted file.
17# Declare variables to be passed into your templates.
18global: # global defaults
19 nodePortPrefix: 302
Keren Joseph29f11ab2018-04-22 15:22:46 +030020 aai:
BorislavGdd207052018-05-22 11:31:39 +000021 serviceName: aai
Keren Joseph29f11ab2018-04-22 15:22:46 +030022 aaiElasticsearch:
23 serviceName: aai-elasticsearch
24 gizmo:
25 serviceName: aai-gizmo
26 searchData:
27 serviceName: aai-search-data
kj6a8ce802018-03-19 15:07:44 +020028
29# application image
30repository: nexus3.onap.org:10001
Jimmy Forsyth60677452018-05-30 17:40:40 -040031image: onap/sparky-be:1.2.1
kj6a8ce802018-03-19 15:07:44 +020032pullPolicy: Always
33restartPolicy: Always
34
Mandeep Khindafe2fee12018-04-09 21:09:51 +000035dockerhubRepository: registry.hub.docker.com
36ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
kj6a8ce802018-03-19 15:07:44 +020037# application configuration
38config:
39 elasticsearchHttpPort: 9200
40 keyStorePassword: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
Keren Joseph29f11ab2018-04-22 15:22:46 +030041 keystoreAliasPassword: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
Gary Wu0b5295a2018-06-11 09:25:34 -070042 gerritBranch: 2.0.0-ONAP
Mandeep Khindafe2fee12018-04-09 21:09:51 +000043 gerritProject: http://gerrit.onap.org/r/aai/test-config
Keren Joseph29f11ab2018-04-22 15:22:46 +030044 portalUsername: aaiui
45 portalPassword: 1t2v1vfv1unz1vgz1t3b
Mandeep Khindafe2fee12018-04-09 21:09:51 +000046
Keren Joseph29f11ab2018-04-22 15:22:46 +030047# ONAP Cookie Processing - During initial development, the following flag, if true, will
48# prevent the portal interface's login processing from searching for a user
49# specific cookie, and will instead allow passage if a valid session cookie is discovered.
50 portalOnapEnabled: true
51#
kj6a8ce802018-03-19 15:07:44 +020052
53# override chart name (sparky-be) to share a common namespace
54# suffix with parent chart (aai)
55nsSuffix: aai
56
57
58# default number of instances
59replicaCount: 1
60
61nodeSelector: {}
62
63affinity: {}
64
65# probe configuration parameters
66liveness:
67 initialDelaySeconds: 10
68 periodSeconds: 10
69 # necessary to disable liveness probe when setting breakpoints
70 # in debugger so K8s doesn't restart unresponsive container
71 enabled: true
72
73readiness:
74 initialDelaySeconds: 10
75 periodSeconds: 10
76
77service:
Arul.Nambi0d343742018-06-20 11:40:17 -040078 type: NodePort
BorislavGdd207052018-05-22 11:31:39 +000079 portName: aai-sparky-be
kj6a8ce802018-03-19 15:07:44 +020080 internalPort: 9517
Arul.Nambi0d343742018-06-20 11:40:17 -040081 nodePort: 20
Keren Joseph29f11ab2018-04-22 15:22:46 +030082 internalPort2: 8000
kj6a8ce802018-03-19 15:07:44 +020083
84ingress:
85 enabled: false
86
87resources: {}
88 # We usually recommend not to specify default resources and to leave this as a conscious
89 # choice for the user. This also increases chances charts run on environments with little
90 # resources, such as Minikube. If you do want to specify resources, uncomment the following
91 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
92 #
93 # Example:
94 # Configure resource requests and limits
95 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
96 # Minimum memory for development is 2 CPU cores and 4GB memory
97 # Minimum memory for production is 4 CPU cores and 8GB memory
98#resources:
99# limits:
100# cpu: 2
101# memory: 4Gi
102# requests:
103# cpu: 2
104# memory: 4Gi