Extend K8S and RIC installation instructions
[it/dep.git] / ric-aux / helm / aaf / charts / aaf-sshsm / 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   # Use Local
43   #pullPolicy: IfNotPresent
44   #repository: "nexus3.onap.org:10003"
45
46   aaf:
47     readiness: false
48     image: onap/aaf/aaf_core:2.1.15
49     aaf_env: "DEV"
50     public_fqdn: "aaf.osaaf.org"
51     aaf_release: "El Alto"
52   # DUBLIN ONLY - for M4 compatibility with Casablanca
53   #  aaf_locator_name: "public.%NS.%N"
54   #  aaf_locator_name_oom: "%NS.%N"
55   # EL ALTO and Beyond
56     aaf_locator_name: "%NS.%N"
57     aaf_locator_name_oom: "%CNS.%NS.%N"
58     cadi_latitude: "38.0"
59     cadi_longitude: "-72.0"
60     cadi_x509_issuers: "CN=intermediateCA_1, OU=OSAAF, O=ONAP, C=US:CN=intermediateCA_7, OU=OSAAF, O=ONAP, C=US"
61
62     config:
63       image: onap/aaf/aaf_config:2.1.15
64     cass:
65       replicas: 1
66       image: onap/aaf/aaf_cass:2.1.15
67       fqdn: "aaf-cass"
68       cluster_name: "osaaf"
69       heap_new_size: "512M"
70       max_heap_size: "1024M"
71       storage_port: 7000
72       ssl_storage_port: 7001
73       native_trans_port: 9042
74       rpc_port: 9160
75       dc: "dc1"
76     service:
77       replicas: 1
78       fqdn: "aaf-service"
79       internal_port: 8100
80       public_port: 31110
81     locate:
82       replicas: 1
83       fqdn: "aaf-locate"
84       internal_port: 8095
85       public_port: 31111
86     oauth:
87       replicas: 1
88       fqdn: "aaf0oauth"
89       internal_port: 8140
90       public_port: 31112
91     gui:
92       replicas: 1
93       fqdn: "aaf-gui"
94       internal_port: 8200
95       public_port: 31113
96     cm:
97       replicas: 1
98       fqdn: "aaf-cm"
99       internal_port: 8150
100       public_port: 31114
101     fs:
102       replicas: 1
103       fqdn: "aaf-fs"
104       internal_port: 8096
105       public_port: 31115
106     hello:
107       replicas: 0
108
109
110 persistence:
111   enabled: true
112   volumeReclaimPolicy: Retain
113   accessMode: ReadWriteOnce
114   size: 10Mi
115   mountPath: /dockerdata-nfs
116   dataMountSubPath: sshsm/data
117   dbusMountSubPath: sshsm/dbus
118   storageClass: "manual"
119 # Configure resource requests and limits
120 resources:
121   small:
122     limits:
123       cpu: 200m
124       memory: 500Mi
125     requests:
126       cpu: 10m
127       memory: 10Mi
128   large:
129     limits:
130       cpu: 400m
131       memory: 1Gi
132     requests:
133       cpu: 10m
134       memory: 100Mi
135   unlimited: {}