blob: 8321feb2952f832c5e125d037071cc600a59fa77 [file] [log] [blame]
kj6a8ce802018-03-19 15:07:44 +02001# Default values for sparky-be.
2# This is a YAML-formatted file.
3# Declare variables to be passed into your templates.
4global: # global defaults
5 nodePortPrefix: 302
Keren Joseph29f11ab2018-04-22 15:22:46 +03006 aai:
BorislavGdd207052018-05-22 11:31:39 +00007 serviceName: aai
Keren Joseph29f11ab2018-04-22 15:22:46 +03008 aaiElasticsearch:
9 serviceName: aai-elasticsearch
10 gizmo:
11 serviceName: aai-gizmo
12 searchData:
13 serviceName: aai-search-data
kj6a8ce802018-03-19 15:07:44 +020014
15# application image
16repository: nexus3.onap.org:10001
Jimmy Forsyth60677452018-05-30 17:40:40 -040017image: onap/sparky-be:1.2.1
kj6a8ce802018-03-19 15:07:44 +020018pullPolicy: Always
19restartPolicy: Always
20
Mandeep Khindafe2fee12018-04-09 21:09:51 +000021dockerhubRepository: registry.hub.docker.com
22ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
kj6a8ce802018-03-19 15:07:44 +020023# application configuration
24config:
25 elasticsearchHttpPort: 9200
26 keyStorePassword: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
Keren Joseph29f11ab2018-04-22 15:22:46 +030027 keystoreAliasPassword: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
Mandeep Khindafe2fee12018-04-09 21:09:51 +000028 gerritBranch: master
29 gerritProject: http://gerrit.onap.org/r/aai/test-config
Keren Joseph29f11ab2018-04-22 15:22:46 +030030 portalUsername: aaiui
31 portalPassword: 1t2v1vfv1unz1vgz1t3b
Mandeep Khindafe2fee12018-04-09 21:09:51 +000032
Keren Joseph29f11ab2018-04-22 15:22:46 +030033# ONAP Cookie Processing - During initial development, the following flag, if true, will
34# prevent the portal interface's login processing from searching for a user
35# specific cookie, and will instead allow passage if a valid session cookie is discovered.
36 portalOnapEnabled: true
37#
kj6a8ce802018-03-19 15:07:44 +020038
39# override chart name (sparky-be) to share a common namespace
40# suffix with parent chart (aai)
41nsSuffix: aai
42
43
44# default number of instances
45replicaCount: 1
46
47nodeSelector: {}
48
49affinity: {}
50
51# probe configuration parameters
52liveness:
53 initialDelaySeconds: 10
54 periodSeconds: 10
55 # necessary to disable liveness probe when setting breakpoints
56 # in debugger so K8s doesn't restart unresponsive container
57 enabled: true
58
59readiness:
60 initialDelaySeconds: 10
61 periodSeconds: 10
62
63service:
Arul.Nambi0d343742018-06-20 11:40:17 -040064 type: NodePort
BorislavGdd207052018-05-22 11:31:39 +000065 portName: aai-sparky-be
kj6a8ce802018-03-19 15:07:44 +020066 internalPort: 9517
Arul.Nambi0d343742018-06-20 11:40:17 -040067 nodePort: 20
Keren Joseph29f11ab2018-04-22 15:22:46 +030068 internalPort2: 8000
kj6a8ce802018-03-19 15:07:44 +020069
70ingress:
71 enabled: false
72
73resources: {}
74 # We usually recommend not to specify default resources and to leave this as a conscious
75 # choice for the user. This also increases chances charts run on environments with little
76 # resources, such as Minikube. If you do want to specify resources, uncomment the following
77 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
78 #
79 # Example:
80 # Configure resource requests and limits
81 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
82 # Minimum memory for development is 2 CPU cores and 4GB memory
83 # Minimum memory for production is 4 CPU cores and 8GB memory
84#resources:
85# limits:
86# cpu: 2
87# memory: 4Gi
88# requests:
89# cpu: 2
90# memory: 4Gi