Merge "Removing aai oxm files from configmaps"
[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 dockerhubRepository: registry.hub.docker.com
16 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
17 # application configuration
18 config:
19   elasticsearchHttpPort: 9200
20   keyStorePassword: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
21   keyManagerPassword: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
22   gerritBranch: master
23   gerritProject: http://gerrit.onap.org/r/aai/test-config
24
25
26 # override chart name (sparky-be) to share a common namespace
27 # suffix with parent chart (aai)
28 nsSuffix: aai
29
30
31 # default number of instances
32 replicaCount: 1
33
34 nodeSelector: {}
35
36 affinity: {}
37
38 # probe configuration parameters
39 liveness:
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
46 readiness:
47   initialDelaySeconds: 10
48   periodSeconds: 10
49
50 service:
51   type: ClusterIP
52   name: aai-sparky-be
53   internalPort: 9517
54
55 ingress:
56   enabled: false
57
58 resources: {}
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