Merge "multicloud provider-plugin configmap"
[oom.git] / kubernetes / portal / charts / portal-app / 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   repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
21   readinessRepository: oomk8s
22   readinessImage: readiness-check:2.0.0
23   loggingRepository: docker.elastic.co
24   loggingImage: beats/filebeat:5.5.0
25
26 #################################################################
27 # Application configuration defaults.
28 #################################################################
29 # application image
30 repository: nexus3.onap.org:10001
31 image: onap/portal-app:2.1-STAGING-latest
32 pullPolicy: Always
33
34 # default number of instances
35 replicaCount: 1
36
37 nodeSelector: {}
38
39 affinity: {}
40
41 # probe configuration parameters
42 liveness:
43   initialDelaySeconds: 10
44   periodSeconds: 10
45   # necessary to disable liveness probe when setting breakpoints
46   # in debugger so K8s doesn't restart unresponsive container
47   enabled: true
48
49 readiness:
50   initialDelaySeconds: 10
51   periodSeconds: 10
52
53 service:
54   type: LoadBalancer
55   name: portal-app
56   portName: portal-app
57   externalPort: 8989
58   internalPort: 8080
59   nodePort: 15
60   externalPort2: 8006
61   internalPort2: 8005
62   nodePort2: 13
63   externalPort3: 8010
64   internalPort3: 8009
65   nodePort3: 14
66
67 mariadb:
68   service:
69     name: portal-db
70 widget:
71   service:
72     name: portal-widget
73 cassandra:
74   service:
75     name: portal-cassandra
76   config:
77     cassandraUsername: root
78     cassandraPassword: Aa123456
79 zookeeper:
80   service:
81     name: portal-zookeeper
82 messageRouter:
83   service:
84     name: message-router
85
86 ingress:
87   enabled: false
88
89 resources: {}
90   # We usually recommend not to specify default resources and to leave this as a conscious
91   # choice for the user. This also increases chances charts run on environments with little
92   # resources, such as Minikube. If you do want to specify resources, uncomment the following
93   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
94   #
95   # Example:
96   # Configure resource requests and limits
97   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
98   # Minimum memory for development is 2 CPU cores and 4GB memory
99   # Minimum memory for production is 4 CPU cores and 8GB memory
100 #resources:
101 #  limits:
102 #    cpu: 2
103 #    memory: 4Gi
104 #  requests:
105 #    cpu: 2
106 #    memory: 4Gi