Merge "Add PV for SDN-C MD-DAL data exports"
[oom.git] / kubernetes / aai / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
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 aai.
16 # This is a YAML-formatted file.
17 # Declare variables to be passed into your templates.
18 global: # global defaults
19   nodePortPrefix: 302
20   repository: nexus3.onap.org:10001
21   repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
22   dockerhubRepository: docker.io
23   busyboxImage: busybox
24   readinessRepository: oomk8s
25   readinessImage: readiness-check:2.0.0
26   loggingRepository: docker.elastic.co
27   loggingImage: beats/filebeat:5.5.0
28   restartPolicy: Always
29   cassandra:
30     serviceName: aai-cassandra
31     replicas: 3
32   aai:
33     serviceName: aai-aai
34   babel:
35     serviceName: aai-babel
36   champ:
37     serviceName: aai-champ
38   aaiElasticsearch:
39     serviceName: aai-elasticsearch
40   hbase:
41     serviceName: aai-hbase
42   resources:
43     serviceName: aai-resources
44   sparkyBe:
45     serviceName: aai-sparky-be
46   dataRouter:
47     serviceName: aai-data-router
48   gizmo:
49     serviceName: aai-gizmo
50   modelloader:
51     serviceName: aai-modelloader
52   searchData:
53     serviceName: aai-search-data
54   traversal:
55     serviceName: aai-traversal
56
57
58 # application image
59 dockerhubRepository: registry.hub.docker.com
60 image: aaionap/haproxy:1.1.0
61 pullPolicy: Always
62
63 # flag to enable debugging - application support required
64 debugEnabled: false
65
66 # application configuration
67 config:
68   # POLICY hotfix - Note this must be temporary
69   # See https://jira.onap.org/browse/POLICY-510
70   aaiServiceClusterIp:
71   logstashServiceName: log-ls
72   logstashPort: 5044
73
74 # default number of instances
75 replicaCount: 1
76
77 nodeSelector: {}
78
79 affinity: {}
80
81 # probe configuration parameters
82 liveness:
83   initialDelaySeconds: 10
84   periodSeconds: 10
85   # necessary to disable liveness probe when setting breakpoints
86   # in debugger so K8s doesn't restart unresponsive container
87   enabled: true
88
89 readiness:
90   initialDelaySeconds: 10
91   periodSeconds: 10
92
93 service:
94   type: NodePort
95   name: aai
96   externalPort: 8080
97   internalPort: 8080
98   nodePort: 32
99   externalPort2: 8443
100   internalPort2: 8443
101   nodePort2: 33
102
103 ingress:
104   enabled: false
105
106 resources: {}
107   # We usually recommend not to specify default resources and to leave this as a conscious
108   # choice for the user. This also increases chances charts run on environments with little
109   # resources, such as Minikube. If you do want to specify resources, uncomment the following
110   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
111   #
112   # Example:
113   # Configure resource requests and limits
114   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
115   # Minimum memory for development is 2 CPU cores and 4GB memory
116   # Minimum memory for production is 4 CPU cores and 8GB memory
117 #resources:
118 #  limits:
119 #    cpu: 2
120 #    memory: 4Gi
121 #  requests:
122 #    cpu: 2
123 #    memory: 4Gi