Extend K8S and RIC installation instructions
[it/dep.git] / ric-aux / helm / aaf / charts / aaf-sshsm / charts / aaf-sshsm-testca / 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
19 enabled: true
20 global:
21   nodePortPrefix: 302
22   readinessRepository: oomk8s
23   readinessImage: readiness-check:2.0.0
24   loggingRepository: docker.elastic.co
25   loggingImage: beats/filebeat:5.5.0
26   ubuntuInitRepository: oomk8s
27   ubuntuInitImage: ubuntu-init:1.0.0
28   tpm:
29     enabled: false
30     # if enabled, nodeselector will use the below
31     # values in the nodeselector section of the pod
32     nodeLabel: "tpm-node"
33     nodeLabelValue: "true"
34   abrmd:
35     enabled: true
36   distcenter:
37     enabled: true
38   testca:
39     enabled: true
40   persistence: {}
41   pullPolicy: "Always"
42   repository: "nexus3.onap.org:10001"
43
44 #################################################################
45 # Application configuration defaults.
46 #################################################################
47 # application image
48 repository: nexus3.onap.org:10001
49 image: onap/aaf/testcaservice:4.0.0
50 pullPolicy: Always
51
52 # flag to enable debugging - application support required
53 debugEnabled: false
54
55 # application configuration
56 # Example:
57 # default number of instances
58 replicaCount: 1
59
60 nodeSelector: {}
61
62 affinity: {}
63
64 ingress:
65   enabled: false
66
67 # Configure resource requests and limits
68 flavor: small
69 resources:
70   small:
71     limits:
72       cpu: 200m
73       memory: 500Mi
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: {}