blob: 1ddb604c02367961d497fd35150ad14fb6c58b22 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
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
kj52dfb132018-03-27 15:50:39 +030015#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefix: 302
kj52dfb132018-03-27 15:50:39 +030020 readinessRepository: oomk8s
Instrumentalcc3a0bd2019-05-01 14:18:49 -050021 readinessImage: readiness-check:2.0.2
Mike Elliottb35b5802018-05-08 14:22:13 -040022 ubuntuInitRepository: registry.hub.docker.com
23 ubuntuInitImage: oomk8s/ubuntu-init:2.0.0
Mandeep Khinda60d36d42018-09-24 15:15:48 +000024 persistence:
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +000025 enabled: true
Instrumentalcc3a0bd2019-05-01 14:18:49 -050026 pullPolicy: Always
27 repository: "nexus3.onap.org:10001"
28 # pullPolicy: IfNotPresent
29 # repository: "nexus3.onap.org:10003"
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000030
Instrumentalcc3a0bd2019-05-01 14:18:49 -050031 aaf:
Gathman, Jonathan (jg1555)53c66dd2019-05-03 08:19:35 -050032 imageVersion: 2.1.13
Instrumentalcc3a0bd2019-05-01 14:18:49 -050033 #imageVersion: latest
34 readiness: false
35 aaf_env: "DEV"
36 public_fqdn: "aaf.osaaf.org"
37 aaf_release: "Dublin"
38 # DUBLIN ONLY - for M4 compatibility with Casablanca
39 aaf_locator_name: "public.%NS.%N"
40 aaf_locator_name_oom: "%NS.%N"
41 # EL ALTO and Beyond
42 # aaf_locator_name: "%NS.%N"
43 # aaf_locator_name_oom: "%CNS.%NS.%N"
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000044 cadi_latitude: "38.0"
45 cadi_longitude: "-72.0"
Instrumentalcc3a0bd2019-05-01 14:18:49 -050046 cadi_x509_issuers: "CN=intermediateCA_1, OU=OSAAF, O=ONAP, C=US:CN=intermediateCA_7, OU=OSAAF, O=ONAP, C=US"
47
48 cass:
49 replicas: 1
50 fqdn: "aaf-cass"
51 cluster_name: "osaaf"
52 heap_new_size: "512M"
53 max_heap_size: "1024M"
54 storage_port: 7000
55 ssl_storage_port: 7001
56 native_trans_port: 9042
57 rpc_port: 9160
58 dc: "dc1"
59 service:
60 replicas: 1
61 fqdn: "aaf-service"
62 internal_port: 8100
63 public_port: 31110
64 locate:
65 replicas: 1
66 fqdn: "aaf-locate"
67 internal_port: 8095
68 public_port: 31111
69 oauth:
70 replicas: 1
71 fqdn: "aaf0oauth"
72 internal_port: 8140
73 public_port: 31112
74 gui:
75 replicas: 1
76 fqdn: "aaf-gui"
77 internal_port: 8200
78 public_port: 31113
79 cm:
80 replicas: 1
81 fqdn: "aaf-cm"
82 internal_port: 8150
83 public_port: 31114
84 fs:
85 replicas: 1
86 fqdn: "aaf-fs"
87 internal_port: 8096
88 public_port: 31115
89 hello:
90 replicas: 0
91 fqdn: "aaf-hello"
92 internal_port: 8130
93 public_port: 31116
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +000094
kj52dfb132018-03-27 15:50:39 +030095#################################################################
96# Application configuration defaults.
97#################################################################
kj52dfb132018-03-27 15:50:39 +030098
dsingh.27864a34bf2018-09-21 05:11:00 -040099flavor: small
kj52dfb132018-03-27 15:50:39 +0300100# default number of instances
101replicaCount: 1
102
103nodeSelector: {}
104
105affinity: {}
106
107# probe configuration parameters
108liveness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -0500109 initialDelaySeconds: 350
kj52dfb132018-03-27 15:50:39 +0300110 periodSeconds: 10
111 # necessary to disable liveness probe when setting breakpoints
112 # in debugger so K8s doesn't restart unresponsive container
113 enabled: true
114
115readiness:
Instrumentalcc3a0bd2019-05-01 14:18:49 -0500116 initialDelaySeconds: 150
kj52dfb132018-03-27 15:50:39 +0300117 periodSeconds: 10
118
kj52dfb132018-03-27 15:50:39 +0300119ingress:
120 enabled: false
121
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +0000122## Persist data to a persitent volume
123persistence:
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +0000124 enabled: true
125 config:
126 #existingClaim:
Instrumentalcc3a0bd2019-05-01 14:18:49 -0500127 volumeReclaimPolicy: Delete
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +0000128 accessMode: ReadWriteMany
129 size: 2Gi
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +0000130 storageClass: "manual"
Instrumentalcc3a0bd2019-05-01 14:18:49 -0500131 mountPath: "/mnt/data/aaf/config"
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +0000132 logs:
133 #existingClaim:
134 volumeReclaimPolicy: Retain
135 accessMode: ReadWriteMany
136 size: 2Gi
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +0000137 storageClass: "manual"
Instrumentalcc3a0bd2019-05-01 14:18:49 -0500138 mountPath: "/mnt/data/aaf/logs"
139 status:
140 volumeReclaimPolicy: Delete
141 accessMode: ReadWriteMany
142 size: 2M
143 storageClass: "manual"
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +0000144 mountPath: /dockerdata-nfs
Instrumentalcc3a0bd2019-05-01 14:18:49 -0500145 mountSubPath: "status"
146 cass:
147 #existingClaim:
Mandeep Khinda6dcc80d2018-10-09 14:47:35 +0000148 volumeReclaimPolicy: Retain
149 accessMode: ReadWriteOnce
150 size: 10Gi
151 storageClass: "manual"
Instrumentalcc3a0bd2019-05-01 14:18:49 -0500152 mountPath: /dockerdata-nfs
153 mountSubPath: "cass"
Mahendra Raghuwanshiafb1e2a2018-05-03 12:15:03 +0000154
Instrumental378109d2018-10-16 20:40:41 -0500155resources: {}