Merge "[AAF] Add CMPv2 Cert Service"
[oom.git] / kubernetes / aaf / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications © 2020 AT&T
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
20 global:
21   nodePortPrefix: 302
22   # Readiness image
23   readinessRepository: oomk8s
24   readinessImage: readiness-check:2.0.2
25   # Ubuntu Init image
26   ubuntuInitRepository: registry.hub.docker.com
27   ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
28   # Logging image
29   loggingRepository: docker.elastic.co
30   loggingImage: beats/filebeat:5.5.0
31   # BusyBox image
32   busyboxRepository: registry.hub.docker.com
33   busyboxImage: library/busybox:1.31
34   persistence:
35     enabled: true
36   # Standard OOM
37   pullPolicy: "Always"
38   repository: "nexus3.onap.org:10001"
39
40   # Use Local
41   #pullPolicy: IfNotPresent
42   #repository: "nexus3.onap.org:10003"
43
44   cmpv2Enabled: true
45   addTestingComponents: false
46   aaf:
47     readiness: false
48     image: onap/aaf/aaf_core:2.1.23
49     aaf_env: "DEV"
50     public_fqdn: "aaf.osaaf.org"
51     aaf_release: "Frankfurt"
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.23
64
65     service:
66       fqdn: "aaf-service"
67       internal_port: 8100
68       public_port: 31110
69     locate:
70       fqdn: "aaf-locate"
71       internal_port: 8095
72       public_port: 31111
73     oauth:
74       fqdn: "aaf-oauth"
75       internal_port: 8140
76       public_port: 31112
77 #     Note: as hello is a sample app, find values in charts/aaf-hello/values.yaml
78
79     certServiceClient:
80       secret:
81         name: aaf-cert-service-client-tls-secret
82
83 #################################################################
84 # Application configuration defaults.
85 #################################################################
86
87 flavor: small
88 # default number of instances
89 replicaCount: 1
90
91 nodeSelector: {}
92
93 affinity: {}
94
95 # probe configuration parameters
96 liveness:
97   initialDelaySeconds: 350
98   periodSeconds: 10
99   # necessary to disable liveness probe when setting breakpoints
100   # in debugger so K8s doesn't restart unresponsive container
101   enabled: true
102
103 readiness:
104   initialDelaySeconds: 150
105   periodSeconds: 10
106
107 ingress:
108   enabled: false
109   service:
110     - baseaddr: "aaf.api"
111       name: "aaf-service"
112       port: 8100
113   config:
114     ssl: "none"
115
116 persistence: {}
117
118 resources: {}