Merge "Fixed typo in quickstart guide"
[oom.git] / kubernetes / aai / charts / aai-sparky-be / values.yaml
1 # Default values for sparky-be.
2 # This is a YAML-formatted file.
3 # Declare variables to be passed into your templates.
4 global: # global defaults
5   nodePortPrefix: 302
6   repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
7
8
9 # application image
10 repository: nexus3.onap.org:10001
11 image: onap/sparky-be:v1.1.0
12 pullPolicy: Always
13 restartPolicy: Always
14
15 # application configuration
16 config:
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)
23 nsSuffix: aai
24
25
26 # default number of instances
27 replicaCount: 1
28
29 nodeSelector: {}
30
31 affinity: {}
32
33 # probe configuration parameters
34 liveness:
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
41 readiness:
42   initialDelaySeconds: 10
43   periodSeconds: 10
44
45 service:
46   type: ClusterIP
47   name: aai-sparky-be
48   internalPort: 9517
49
50 ingress:
51   enabled: false
52
53 resources: {}
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