blob: 34be1befb220914a33d9b0f657796d62f4b623e0 [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
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
15# application configuration
16config:
17 elasticsearchHttpPort: 9200
18 keyStorePassword: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
19 keyManagerPassword: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
20
21# override chart name (sparky-be) to share a common namespace
22# suffix with parent chart (aai)
23nsSuffix: aai
24
25
26# default number of instances
27replicaCount: 1
28
29nodeSelector: {}
30
31affinity: {}
32
33# probe configuration parameters
34liveness:
35 initialDelaySeconds: 10
36 periodSeconds: 10
37 # necessary to disable liveness probe when setting breakpoints
38 # in debugger so K8s doesn't restart unresponsive container
39 enabled: true
40
41readiness:
42 initialDelaySeconds: 10
43 periodSeconds: 10
44
45service:
46 type: ClusterIP
47 name: aai-sparky-be
48 internalPort: 9517
49
50ingress:
51 enabled: false
52
53resources: {}
54 # We usually recommend not to specify default resources and to leave this as a conscious
55 # choice for the user. This also increases chances charts run on environments with little
56 # resources, such as Minikube. If you do want to specify resources, uncomment the following
57 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
58 #
59 # Example:
60 # Configure resource requests and limits
61 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
62 # Minimum memory for development is 2 CPU cores and 4GB memory
63 # Minimum memory for production is 4 CPU cores and 8GB memory
64#resources:
65# limits:
66# cpu: 2
67# memory: 4Gi
68# requests:
69# cpu: 2
70# memory: 4Gi