Merge "Upgrade VNFSDK to use common Postgres charts"
[oom.git] / kubernetes / aai / charts / aai-sparky-be / values.yaml
1 # Copyright © 2018 Amdocs, Bell Canada, AT&T
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # Default values for sparky-be.
16 # This is a YAML-formatted file.
17 # Declare variables to be passed into your templates.
18 global: # global defaults
19   nodePortPrefix: 302
20   aai:
21     serviceName: aai
22   aaiElasticsearch:
23     serviceName: aai-elasticsearch
24   gizmo:
25     serviceName: aai-gizmo
26   searchData:
27     serviceName: aai-search-data
28
29 # application image
30 repository: nexus3.onap.org:10001
31 image: onap/sparky-be:1.3-STAGING-latest
32 pullPolicy: Always
33 restartPolicy: Always
34
35 dockerhubRepository: registry.hub.docker.com
36 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
37 # application configuration
38 config:
39   elasticsearchHttpPort: 9200
40   keyStorePassword: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
41   keystoreAliasPassword: OBF:1i9a1u2a1unz1lr61wn51wn11lss1unz1u301i6o
42   gerritBranch: 2.0.0-ONAP
43   gerritProject: http://gerrit.onap.org/r/aai/test-config
44   portalUsername: aaiui
45   portalPassword: 1t2v1vfv1unz1vgz1t3b
46
47 # ONAP Cookie Processing - During initial development, the following flag, if true, will
48 # prevent the portal interface's login processing from searching for a user
49 # specific cookie, and will instead allow passage if a valid session cookie is discovered.
50   portalOnapEnabled: true
51 #
52
53 # override chart name (sparky-be) to share a common namespace
54 # suffix with parent chart (aai)
55 nsSuffix: aai
56
57
58 # default number of instances
59 replicaCount: 1
60
61 nodeSelector: {}
62
63 affinity: {}
64
65 # probe configuration parameters
66 liveness:
67   initialDelaySeconds: 10
68   periodSeconds: 10
69   # necessary to disable liveness probe when setting breakpoints
70   # in debugger so K8s doesn't restart unresponsive container
71   enabled: true
72
73 readiness:
74   initialDelaySeconds: 10
75   periodSeconds: 10
76
77 service:
78   type: NodePort
79   portName: aai-sparky-be
80   internalPort: 9517
81   nodePort: 20
82   internalPort2: 8000
83
84 ingress:
85   enabled: false
86
87 resources: {}
88   # We usually recommend not to specify default resources and to leave this as a conscious
89   # choice for the user. This also increases chances charts run on environments with little
90   # resources, such as Minikube. If you do want to specify resources, uncomment the following
91   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
92   #
93   # Example:
94   # Configure resource requests and limits
95   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
96   # Minimum memory for development is 2 CPU cores and 4GB memory
97   # Minimum memory for production is 4 CPU cores and 8GB memory
98 #resources:
99 #  limits:
100 #    cpu: 2
101 #    memory: 4Gi
102 #  requests:
103 #    cpu: 2
104 #    memory: 4Gi