Extend K8S and RIC installation instructions
[it/dep.git] / ric-aux / helm / aaf / charts / aaf-sshsm / charts / aaf-sshsm-abrmd / values.yaml
1 # Copyright 2018 Intel Corporation, Inc
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   ubuntuInitRepository: oomk8s
25   ubuntuInitImage: ubuntu-init:1.0.0
26   tpm:
27     enabled: false
28     # if enabled, nodeselector will use the below
29     # values in the nodeselector section of the pod
30     nodeLabel: "tpm-node"
31     nodeLabelValue: "true"
32   abrmd:
33     enabled: true
34   distcenter:
35     enabled: true
36   testca:
37     enabled: true
38   persistence: {}
39   pullPolicy: "Always"
40   repository: "nexus3.onap.org:10001"
41
42 #################################################################
43 # Application configuration defaults.
44 #################################################################
45 # application image
46 repository: nexus3.onap.org:10001
47 image: onap/aaf/abrmd:4.0.0
48 pullPolicy: Always
49
50 # flag to enable debugging - application support required
51 debugEnabled: false
52
53 # application configuration
54 # Example:
55 # default number of instances
56 replicaCount: 1
57
58 # TPM specific node selection is done at parent chart aaf-sshsm
59 nodeSelector: {}
60
61 affinity: {}
62
63 ingress:
64   enabled: false
65
66 # Configure resource requests and limits
67 flavor: small
68 resources:
69   small:
70     limits:
71       cpu: 200m
72       memory: 500Mi
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: {}