blob: 5c97bdb6eb363e45393fc52ec44c1c2c07e39cb9 [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
6 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
Keren Joseph5689d5f2018-04-22 15:22:46 +03007 aai:
8 serviceName: aai-aai
9 aaiElasticsearch:
10 serviceName: aai-elasticsearch
11 gizmo:
12 serviceName: aai-gizmo
13 searchData:
14 serviceName: aai-search-data
kj9bf27312018-03-19 15:07:44 +020015
16# application image
17repository: nexus3.onap.org:10001
Keren Joseph5689d5f2018-04-22 15:22:46 +030018image: onap/sparky-be:1.2-STAGING-latest
kj9bf27312018-03-19 15:07:44 +020019pullPolicy: Always
20restartPolicy: Always
21
Mandeep Khinda9ed65052018-04-09 21:09:51 +000022dockerhubRepository: registry.hub.docker.com
23ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
kj9bf27312018-03-19 15:07:44 +020024# application configuration
25config:
26 elasticsearchHttpPort: 9200
27 keyStorePassword: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
Keren Joseph5689d5f2018-04-22 15:22:46 +030028 keystoreAliasPassword: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
Mandeep Khinda9ed65052018-04-09 21:09:51 +000029 gerritBranch: master
30 gerritProject: http://gerrit.onap.org/r/aai/test-config
Keren Joseph5689d5f2018-04-22 15:22:46 +030031 portalUsername: aaiui
32 portalPassword: 1t2v1vfv1unz1vgz1t3b
Mandeep Khinda9ed65052018-04-09 21:09:51 +000033
Keren Joseph5689d5f2018-04-22 15:22:46 +030034# ONAP Cookie Processing - During initial development, the following flag, if true, will
35# prevent the portal interface's login processing from searching for a user
36# specific cookie, and will instead allow passage if a valid session cookie is discovered.
37 portalOnapEnabled: true
38#
kj9bf27312018-03-19 15:07:44 +020039
40# override chart name (sparky-be) to share a common namespace
41# suffix with parent chart (aai)
42nsSuffix: aai
43
44
45# default number of instances
46replicaCount: 1
47
48nodeSelector: {}
49
50affinity: {}
51
52# probe configuration parameters
53liveness:
54 initialDelaySeconds: 10
55 periodSeconds: 10
56 # necessary to disable liveness probe when setting breakpoints
57 # in debugger so K8s doesn't restart unresponsive container
58 enabled: true
59
60readiness:
61 initialDelaySeconds: 10
62 periodSeconds: 10
63
64service:
65 type: ClusterIP
66 name: aai-sparky-be
67 internalPort: 9517
Keren Joseph5689d5f2018-04-22 15:22:46 +030068 internalPort2: 8000
kj9bf27312018-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