8216962b2a9dfbcf8499670f58deb4ee85651cca
[oom.git] / kubernetes / multicloud / 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 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefix: 302
20   loggingRepository: docker.elastic.co
21   loggingImage: beats/filebeat:5.5.0
22
23 #################################################################
24 # Application configuration defaults.
25 #################################################################
26 # application image
27 repository: nexus3.onap.org:10001
28 image: onap/multicloud/framework:1.1.2
29 pullPolicy: Always
30
31 #Istio sidecar injection policy
32 istioSidecar: true
33
34 # application configuration
35 config:
36   msbgateway: msb-iag
37   msbPort: 80
38   logstashServiceName: log-ls
39   logstashPort: 5044
40   aai:
41     port: 8443
42     schemaVersion: v13
43     username: AAI
44     password: AAI
45
46 # default number of instances
47 replicaCount: 1
48
49 nodeSelector: {}
50
51 affinity: {}
52
53 # probe configuration parameters
54 liveness:
55   initialDelaySeconds: 30
56   periodSeconds: 10
57   timeoutSeconds: 10
58   successThreshold: 1
59   failureThreshold: 5
60   enabled: true
61
62 service:
63   type: NodePort
64   name: multicloud
65   externalPort: 9001
66   internalPort: 9001
67   nodePort: 91
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