Use 2.0.0-ONAP tag instead beijing branch
[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   aai:
7     serviceName: aai
8   aaiElasticsearch:
9     serviceName: aai-elasticsearch
10   gizmo:
11     serviceName: aai-gizmo
12   searchData:
13     serviceName: aai-search-data
14
15 # application image
16 repository: nexus3.onap.org:10001
17 image: onap/sparky-be:1.2.1
18 pullPolicy: Always
19 restartPolicy: Always
20
21 dockerhubRepository: registry.hub.docker.com
22 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
23 # application configuration
24 config:
25   elasticsearchHttpPort: 9200
26   keyStorePassword: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
27   keystoreAliasPassword: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
28   gerritBranch: 2.0.0-ONAP
29   gerritProject: http://gerrit.onap.org/r/aai/test-config
30   portalUsername: aaiui
31   portalPassword: 1t2v1vfv1unz1vgz1t3b
32
33 # ONAP Cookie Processing - During initial development, the following flag, if true, will
34 # prevent the portal interface's login processing from searching for a user
35 # specific cookie, and will instead allow passage if a valid session cookie is discovered.
36   portalOnapEnabled: true
37 #
38
39 # override chart name (sparky-be) to share a common namespace
40 # suffix with parent chart (aai)
41 nsSuffix: aai
42
43
44 # default number of instances
45 replicaCount: 1
46
47 nodeSelector: {}
48
49 affinity: {}
50
51 # probe configuration parameters
52 liveness:
53   initialDelaySeconds: 10
54   periodSeconds: 10
55   # necessary to disable liveness probe when setting breakpoints
56   # in debugger so K8s doesn't restart unresponsive container
57   enabled: true
58
59 readiness:
60   initialDelaySeconds: 10
61   periodSeconds: 10
62
63 service:
64   type: ClusterIP
65   portName: aai-sparky-be
66   internalPort: 9517
67   internalPort2: 8000
68
69 ingress:
70   enabled: false
71
72 resources: {}
73   # We usually recommend not to specify default resources and to leave this as a conscious
74   # choice for the user. This also increases chances charts run on environments with little
75   # resources, such as Minikube. If you do want to specify resources, uncomment the following
76   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
77   #
78   # Example:
79   # Configure resource requests and limits
80   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
81   # Minimum memory for development is 2 CPU cores and 4GB memory
82   # Minimum memory for production is 4 CPU cores and 8GB memory
83 #resources:
84 #  limits:
85 #    cpu: 2
86 #    memory: 4Gi
87 #  requests:
88 #    cpu: 2
89 #    memory: 4Gi