[GENERAL] Use readiness container v3.0.1
[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   readinessImage: onap/oom/readiness:3.0.1
24   # Ubuntu Init image
25   ubuntuInitRepository: registry.hub.docker.com
26   ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
27   # Logging image
28   loggingRepository: docker.elastic.co
29   loggingImage: beats/filebeat:5.5.0
30   # BusyBox image
31   busyboxRepository: registry.hub.docker.com
32   busyboxImage: library/busybox:1.31
33   persistence:
34     enabled: true
35   # Standard OOM
36   pullPolicy: "Always"
37   repository: "nexus3.onap.org:10001"
38
39   # Use Local
40   #pullPolicy: IfNotPresent
41   #repository: "nexus3.onap.org:10003"
42
43   cmpv2Enabled: true
44   addTestingComponents: false
45   aaf:
46     readiness: false
47     image: onap/aaf/aaf_core:2.1.23
48     aaf_env: "DEV"
49     public_fqdn: "aaf.osaaf.org"
50     aaf_release: "Frankfurt"
51   # DUBLIN ONLY - for M4 compatibility with Casablanca
52   #  aaf_locator_name: "public.%NS.%N"
53   #  aaf_locator_name_oom: "%NS.%N"
54   # EL ALTO and Beyond
55     aaf_locator_name: "%NS.%N"
56     aaf_locator_name_oom: "%CNS.%NS.%N"
57     cadi_latitude: "38.0"
58     cadi_longitude: "-72.0"
59     cadi_x509_issuers: "CN=intermediateCA_1, OU=OSAAF, O=ONAP, C=US:CN=intermediateCA_7, OU=OSAAF, O=ONAP, C=US"
60
61     config:
62       image: onap/aaf/aaf_config:2.1.23
63
64     service:
65       fqdn: "aaf-service"
66       internal_port: 8100
67       public_port: 31110
68     locate:
69       fqdn: "aaf-locate"
70       internal_port: 8095
71       public_port: 31111
72     oauth:
73       fqdn: "aaf-oauth"
74       internal_port: 8140
75       public_port: 31112
76 #     Note: as hello is a sample app, find values in charts/aaf-hello/values.yaml
77
78     certServiceClient:
79       secret:
80         name: aaf-cert-service-client-tls-secret
81
82 #################################################################
83 # Application configuration defaults.
84 #################################################################
85
86 flavor: small
87 # default number of instances
88 replicaCount: 1
89
90 nodeSelector: {}
91
92 affinity: {}
93
94 # probe configuration parameters
95 liveness:
96   initialDelaySeconds: 350
97   periodSeconds: 10
98   # necessary to disable liveness probe when setting breakpoints
99   # in debugger so K8s doesn't restart unresponsive container
100   enabled: true
101
102 readiness:
103   initialDelaySeconds: 150
104   periodSeconds: 10
105
106 ingress:
107   enabled: false
108   service:
109     - baseaddr: "aaf.api"
110       name: "aaf-service"
111       port: 8100
112   config:
113     ssl: "none"
114
115 persistence: {}
116
117 resources: {}