[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / aaf / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications © 2020 AT&T
3 # Modifications Copyright © 2020 Nokia
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 #################################################################
18 # Global configuration defaults.
19 #################################################################
20
21 global:
22   nodePortPrefix: 302
23   # Readiness image
24   readinessImage: onap/oom/readiness:3.0.1
25   # Ubuntu Init image
26   ubuntuInitRepository: docker.io
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: docker.io
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 #################################################################
80 # Application configuration defaults.
81 #################################################################
82
83 flavor: small
84 # default number of instances
85 replicaCount: 1
86
87 nodeSelector: {}
88
89 affinity: {}
90
91 # probe configuration parameters
92 liveness:
93   initialDelaySeconds: 350
94   periodSeconds: 10
95   # necessary to disable liveness probe when setting breakpoints
96   # in debugger so K8s doesn't restart unresponsive container
97   enabled: true
98
99 readiness:
100   initialDelaySeconds: 150
101   periodSeconds: 10
102
103 ingress:
104   enabled: false
105   service:
106     - baseaddr: "aaf.api"
107       name: "aaf-service"
108       port: 8100
109   config:
110     ssl: "none"
111
112 persistence: {}
113
114 resources: {}