Merge "Revise dcae bootstrap version"
[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 global:
20   nodePortPrefix: 302
21   # Readiness image
22   readinessRepository: oomk8s
23   readinessImage: readiness-check:2.0.2
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   aaf:
44     readiness: false
45     image: onap/aaf/aaf_core:2.1.20
46     aaf_env: "DEV"
47     public_fqdn: "aaf.osaaf.org"
48     aaf_release: "El Alto"
49   # DUBLIN ONLY - for M4 compatibility with Casablanca
50   #  aaf_locator_name: "public.%NS.%N"
51   #  aaf_locator_name_oom: "%NS.%N"
52   # EL ALTO and Beyond
53     aaf_locator_name: "%NS.%N"
54     aaf_locator_name_oom: "%CNS.%NS.%N"
55     cadi_latitude: "38.0"
56     cadi_longitude: "-72.0"
57     cadi_x509_issuers: "CN=intermediateCA_1, OU=OSAAF, O=ONAP, C=US:CN=intermediateCA_7, OU=OSAAF, O=ONAP, C=US"
58
59     config:
60       image: onap/aaf/aaf_config:2.1.20
61
62     service:
63       fqdn: "aaf-service"
64       internal_port: 8100
65       public_port: 31110
66     locate:
67       fqdn: "aaf-locate"
68       internal_port: 8095
69       public_port: 31111
70     oauth:
71       fqdn: "aaf-oauth"
72       internal_port: 8140
73       public_port: 31112
74 #     Note: as hello is a sample app, find values in charts/aaf-hello/values.yaml
75
76
77 #################################################################
78 # Application configuration defaults.
79 #################################################################
80
81 flavor: small
82 # default number of instances
83 replicaCount: 1
84
85 nodeSelector: {}
86
87 affinity: {}
88
89 # probe configuration parameters
90 liveness:
91   initialDelaySeconds: 350
92   periodSeconds: 10
93   # necessary to disable liveness probe when setting breakpoints
94   # in debugger so K8s doesn't restart unresponsive container
95   enabled: true
96
97 readiness:
98   initialDelaySeconds: 150
99   periodSeconds: 10
100
101 ingress:
102   enabled: false
103   service:
104     - baseaddr: "aaf.api"
105       name: "aaf-service"
106       port: 8100
107   config:
108     ssl: "none"
109
110 persistence: {}
111
112 resources: {}