Merge "[SDC] Change default access mode for cert PVC"
[oom.git] / kubernetes / policy / charts / policy-common / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   nodePortPrefix: 302
21   readinessRepository: oomk8s
22   readinessImage: readiness-check:2.0.2
23   loggingRepository: docker.elastic.co
24   loggingImage: beats/filebeat:5.5.0
25
26 # flag to enable debugging - application support required
27 debugEnabled: false
28
29 # application configuration
30 config:
31   logstashServiceName: log-ls
32   logstashPort: 5044
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: NodePort
55   name: <onap-app>
56   externalPort: <8080>
57   #Example internal target port if required
58   #internalPort: <80>
59   nodePort: <replace with unused node port suffix eg. 23>
60
61 ingress:
62   enabled: false
63
64 resources: {}
65   # We usually recommend not to specify default resources and to leave this as a conscious
66   # choice for the user. This also increases chances charts run on environments with little
67   # resources, such as Minikube. If you do want to specify resources, uncomment the following
68   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
69   #
70   # Example:
71   # Configure resource requests and limits
72   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
73   # Minimum memory for development is 2 CPU cores and 4GB memory
74   # Minimum memory for production is 4 CPU cores and 8GB memory
75 #resources:
76 #  limits:
77 #    cpu: 2
78 #    memory: 4Gi
79 #  requests:
80 #    cpu: 2
81 #    memory: 4Gi