blob: df058a4af21ac8b4dd14a94d5b62b7708808f195 [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==
7
8
9# application image
10repository: nexus3.onap.org:10001
11image: onap/sparky-be:v1.1.0
12pullPolicy: Always
13restartPolicy: Always
14
Mandeep Khinda9ed65052018-04-09 21:09:51 +000015dockerhubRepository: registry.hub.docker.com
16ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
kj9bf27312018-03-19 15:07:44 +020017# application configuration
18config:
19 elasticsearchHttpPort: 9200
20 keyStorePassword: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
21 keyManagerPassword: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
Mandeep Khinda9ed65052018-04-09 21:09:51 +000022 gerritBranch: master
23 gerritProject: http://gerrit.onap.org/r/aai/test-config
24
kj9bf27312018-03-19 15:07:44 +020025
26# override chart name (sparky-be) to share a common namespace
27# suffix with parent chart (aai)
28nsSuffix: aai
29
30
31# default number of instances
32replicaCount: 1
33
34nodeSelector: {}
35
36affinity: {}
37
38# probe configuration parameters
39liveness:
40 initialDelaySeconds: 10
41 periodSeconds: 10
42 # necessary to disable liveness probe when setting breakpoints
43 # in debugger so K8s doesn't restart unresponsive container
44 enabled: true
45
46readiness:
47 initialDelaySeconds: 10
48 periodSeconds: 10
49
50service:
51 type: ClusterIP
52 name: aai-sparky-be
53 internalPort: 9517
54
55ingress:
56 enabled: false
57
58resources: {}
59 # We usually recommend not to specify default resources and to leave this as a conscious
60 # choice for the user. This also increases chances charts run on environments with little
61 # resources, such as Minikube. If you do want to specify resources, uncomment the following
62 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
63 #
64 # Example:
65 # Configure resource requests and limits
66 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
67 # Minimum memory for development is 2 CPU cores and 4GB memory
68 # Minimum memory for production is 4 CPU cores and 8GB memory
69#resources:
70# limits:
71# cpu: 2
72# memory: 4Gi
73# requests:
74# cpu: 2
75# memory: 4Gi