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