30fb0d2f2f23bd961a2e5becc18619dde63b80ed
[oom.git] / kubernetes / aaf / components / aaf-sshsm / values.yaml
1 # Copyright 2018 Intel Corporation, Inc
2 # Modifications © 2020 Orange
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   # Readiness image
22   readinessRepository: oomk8s
23   readinessImage: readiness-check:2.0.2
24   # Ubuntu Init image
25   ubuntuInitRepository: registry.hub.docker.com
26   ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
27   # Logging image
28   loggingRepository: docker.elastic.co
29   loggingImage: beats/filebeat:5.5.0
30   # BusyBox image
31   busyboxRepository: registry.hub.docker.com
32   busyboxImage: library/busybox:1.31
33   # Standard OOM
34   pullPolicy: "Always"
35   repository: "nexus3.onap.org:10001"
36
37   tpm:
38     enabled: false
39     # if enabled, nodeselector will use the below
40     # values in the nodeselector section of the pod
41     nodeLabel: "tpm-node"
42     nodeLabelValue: "true"
43   abrmd:
44     enabled: true
45   distcenter:
46     enabled: true
47   testca:
48     enabled: true
49   persistence: {}
50
51 persistence:
52   enabled: true
53   data:
54     enabled: true
55     size: 10Mi
56     volumeReclaimPolicy: Retain
57     accessMode: ReadWriteOnce
58     mountSubPath: sshsm/data
59   dbus:
60     enabled: true
61     size: 10Mi
62     volumeReclaimPolicy: Retain
63     accessMode: ReadWriteOnce
64     mountSubPath: sshsm/dbus
65
66
67
68 # Configure resource requests and limits
69 resources:
70   small:
71     limits:
72       cpu: 20m
73       memory: 50Mi
74     requests:
75       cpu: 10m
76       memory: 10Mi
77   large:
78     limits:
79       cpu: 400m
80       memory: 1Gi
81     requests:
82       cpu: 10m
83       memory: 100Mi
84   unlimited: {}