blob: 91c4026381f27e95dbaa88864c63a3268366a588 [file] [log] [blame]
kj9bf27312018-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 Joseph5689d5f2018-04-22 15:22:46 +03006 aai:
7 serviceName: aai-aai
8 aaiElasticsearch:
9 serviceName: aai-elasticsearch
10 gizmo:
11 serviceName: aai-gizmo
12 searchData:
13 serviceName: aai-search-data
kj9bf27312018-03-19 15:07:44 +020014
15# application image
16repository: nexus3.onap.org:10001
Keren Joseph5689d5f2018-04-22 15:22:46 +030017image: onap/sparky-be:1.2-STAGING-latest
kj9bf27312018-03-19 15:07:44 +020018pullPolicy: Always
19restartPolicy: Always
20
Mandeep Khinda9ed65052018-04-09 21:09:51 +000021dockerhubRepository: registry.hub.docker.com
22ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
kj9bf27312018-03-19 15:07:44 +020023# application configuration
24config:
25 elasticsearchHttpPort: 9200
26 keyStorePassword: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
Keren Joseph5689d5f2018-04-22 15:22:46 +030027 keystoreAliasPassword: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
Mandeep Khinda9ed65052018-04-09 21:09:51 +000028 gerritBranch: master
29 gerritProject: http://gerrit.onap.org/r/aai/test-config
Keren Joseph5689d5f2018-04-22 15:22:46 +030030 portalUsername: aaiui
31 portalPassword: 1t2v1vfv1unz1vgz1t3b
Mandeep Khinda9ed65052018-04-09 21:09:51 +000032
Keren Joseph5689d5f2018-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#
kj9bf27312018-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:
64 type: ClusterIP
65 name: aai-sparky-be
66 internalPort: 9517
Keren Joseph5689d5f2018-04-22 15:22:46 +030067 internalPort2: 8000
kj9bf27312018-03-19 15:07:44 +020068
69ingress:
70 enabled: false
71
72resources: {}
73 # We usually recommend not to specify default resources and to leave this as a conscious
74 # choice for the user. This also increases chances charts run on environments with little
75 # resources, such as Minikube. If you do want to specify resources, uncomment the following
76 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
77 #
78 # Example:
79 # Configure resource requests and limits
80 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
81 # Minimum memory for development is 2 CPU cores and 4GB memory
82 # Minimum memory for production is 4 CPU cores and 8GB memory
83#resources:
84# limits:
85# cpu: 2
86# memory: 4Gi
87# requests:
88# cpu: 2
89# memory: 4Gi