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