vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
ChrisC | ec86a53 | 2020-03-19 15:53:31 -0500 | [diff] [blame] | 2 | # Modifications © 2020 AT&T |
vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [diff] [blame] | 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 | |
kj | 52dfb13 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 16 | ################################################################# |
| 17 | # Global configuration defaults. |
| 18 | ################################################################# |
| 19 | global: |
| 20 | nodePortPrefix: 302 |
ChrisC | ec86a53 | 2020-03-19 15:53:31 -0500 | [diff] [blame] | 21 | # Readiness image |
kj | 52dfb13 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 22 | readinessRepository: oomk8s |
Instrumental | cc3a0bd | 2019-05-01 14:18:49 -0500 | [diff] [blame] | 23 | readinessImage: readiness-check:2.0.2 |
ChrisC | ec86a53 | 2020-03-19 15:53:31 -0500 | [diff] [blame] | 24 | # Ubuntu Init image |
Mike Elliott | b35b580 | 2018-05-08 14:22:13 -0400 | [diff] [blame] | 25 | ubuntuInitRepository: registry.hub.docker.com |
| 26 | ubuntuInitImage: oomk8s/ubuntu-init:2.0.0 |
ChrisC | ec86a53 | 2020-03-19 15:53:31 -0500 | [diff] [blame] | 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:latest |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 33 | persistence: |
Mahendra Raghuwanshi | afb1e2a | 2018-05-03 12:15:03 +0000 | [diff] [blame] | 34 | enabled: true |
Instrumental | 0c7bc94 | 2019-08-06 16:36:13 -0500 | [diff] [blame] | 35 | # Standard OOM |
| 36 | pullPolicy: "Always" |
Instrumental | cc3a0bd | 2019-05-01 14:18:49 -0500 | [diff] [blame] | 37 | repository: "nexus3.onap.org:10001" |
Instrumental | 0c7bc94 | 2019-08-06 16:36:13 -0500 | [diff] [blame] | 38 | |
| 39 | # Use Local |
| 40 | #pullPolicy: IfNotPresent |
| 41 | #repository: "nexus3.onap.org:10003" |
Mandeep Khinda | 6dcc80d | 2018-10-09 14:47:35 +0000 | [diff] [blame] | 42 | |
Instrumental | cc3a0bd | 2019-05-01 14:18:49 -0500 | [diff] [blame] | 43 | aaf: |
Instrumental | cc3a0bd | 2019-05-01 14:18:49 -0500 | [diff] [blame] | 44 | readiness: false |
ChrisC | ec86a53 | 2020-03-19 15:53:31 -0500 | [diff] [blame] | 45 | image: onap/aaf/aaf_core:2.1.20 |
Instrumental | cc3a0bd | 2019-05-01 14:18:49 -0500 | [diff] [blame] | 46 | aaf_env: "DEV" |
| 47 | public_fqdn: "aaf.osaaf.org" |
Instrumental | 0c7bc94 | 2019-08-06 16:36:13 -0500 | [diff] [blame] | 48 | aaf_release: "El Alto" |
Instrumental | cc3a0bd | 2019-05-01 14:18:49 -0500 | [diff] [blame] | 49 | # DUBLIN ONLY - for M4 compatibility with Casablanca |
Instrumental | 0c7bc94 | 2019-08-06 16:36:13 -0500 | [diff] [blame] | 50 | # aaf_locator_name: "public.%NS.%N" |
| 51 | # aaf_locator_name_oom: "%NS.%N" |
Instrumental | cc3a0bd | 2019-05-01 14:18:49 -0500 | [diff] [blame] | 52 | # EL ALTO and Beyond |
Instrumental | 0c7bc94 | 2019-08-06 16:36:13 -0500 | [diff] [blame] | 53 | aaf_locator_name: "%NS.%N" |
| 54 | aaf_locator_name_oom: "%CNS.%NS.%N" |
Mandeep Khinda | 6dcc80d | 2018-10-09 14:47:35 +0000 | [diff] [blame] | 55 | cadi_latitude: "38.0" |
| 56 | cadi_longitude: "-72.0" |
Instrumental | cc3a0bd | 2019-05-01 14:18:49 -0500 | [diff] [blame] | 57 | cadi_x509_issuers: "CN=intermediateCA_1, OU=OSAAF, O=ONAP, C=US:CN=intermediateCA_7, OU=OSAAF, O=ONAP, C=US" |
| 58 | |
Instrumental | 0c7bc94 | 2019-08-06 16:36:13 -0500 | [diff] [blame] | 59 | config: |
ChrisC | ec86a53 | 2020-03-19 15:53:31 -0500 | [diff] [blame] | 60 | image: onap/aaf/aaf_config:2.1.20 |
Instrumental | cc3a0bd | 2019-05-01 14:18:49 -0500 | [diff] [blame] | 61 | cass: |
| 62 | replicas: 1 |
ChrisC | ec86a53 | 2020-03-19 15:53:31 -0500 | [diff] [blame] | 63 | image: onap/aaf/aaf_cass:2.1.20 |
Instrumental | cc3a0bd | 2019-05-01 14:18:49 -0500 | [diff] [blame] | 64 | fqdn: "aaf-cass" |
| 65 | cluster_name: "osaaf" |
| 66 | heap_new_size: "512M" |
| 67 | max_heap_size: "1024M" |
| 68 | storage_port: 7000 |
| 69 | ssl_storage_port: 7001 |
| 70 | native_trans_port: 9042 |
| 71 | rpc_port: 9160 |
| 72 | dc: "dc1" |
| 73 | service: |
| 74 | replicas: 1 |
| 75 | fqdn: "aaf-service" |
| 76 | internal_port: 8100 |
| 77 | public_port: 31110 |
| 78 | locate: |
| 79 | replicas: 1 |
| 80 | fqdn: "aaf-locate" |
| 81 | internal_port: 8095 |
| 82 | public_port: 31111 |
| 83 | oauth: |
| 84 | replicas: 1 |
| 85 | fqdn: "aaf0oauth" |
| 86 | internal_port: 8140 |
| 87 | public_port: 31112 |
| 88 | gui: |
| 89 | replicas: 1 |
| 90 | fqdn: "aaf-gui" |
| 91 | internal_port: 8200 |
| 92 | public_port: 31113 |
| 93 | cm: |
| 94 | replicas: 1 |
| 95 | fqdn: "aaf-cm" |
| 96 | internal_port: 8150 |
| 97 | public_port: 31114 |
| 98 | fs: |
| 99 | replicas: 1 |
| 100 | fqdn: "aaf-fs" |
| 101 | internal_port: 8096 |
| 102 | public_port: 31115 |
| 103 | hello: |
| 104 | replicas: 0 |
ChrisC | ec86a53 | 2020-03-19 15:53:31 -0500 | [diff] [blame] | 105 | # Note: as hello is a sample app, find values in charts/aaf-hello/values.yaml |
| 106 | |
Mandeep Khinda | 6dcc80d | 2018-10-09 14:47:35 +0000 | [diff] [blame] | 107 | |
kj | 52dfb13 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 108 | ################################################################# |
| 109 | # Application configuration defaults. |
| 110 | ################################################################# |
kj | 52dfb13 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 111 | |
dsingh.278 | 64a34bf | 2018-09-21 05:11:00 -0400 | [diff] [blame] | 112 | flavor: small |
kj | 52dfb13 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 113 | # default number of instances |
| 114 | replicaCount: 1 |
| 115 | |
| 116 | nodeSelector: {} |
| 117 | |
| 118 | affinity: {} |
| 119 | |
| 120 | # probe configuration parameters |
| 121 | liveness: |
Instrumental | cc3a0bd | 2019-05-01 14:18:49 -0500 | [diff] [blame] | 122 | initialDelaySeconds: 350 |
kj | 52dfb13 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 123 | periodSeconds: 10 |
| 124 | # necessary to disable liveness probe when setting breakpoints |
| 125 | # in debugger so K8s doesn't restart unresponsive container |
| 126 | enabled: true |
| 127 | |
| 128 | readiness: |
Instrumental | cc3a0bd | 2019-05-01 14:18:49 -0500 | [diff] [blame] | 129 | initialDelaySeconds: 150 |
kj | 52dfb13 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 130 | periodSeconds: 10 |
| 131 | |
kj | 52dfb13 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 132 | ingress: |
| 133 | enabled: false |
Lucjan Bryndza | 0564965 | 2020-04-29 08:52:33 +0000 | [diff] [blame] | 134 | service: |
| 135 | - baseaddr: "aaf.api" |
| 136 | name: "aaf-service" |
| 137 | port: 8100 |
| 138 | config: |
| 139 | ssl: "none" |
kj | 52dfb13 | 2018-03-27 15:50:39 +0300 | [diff] [blame] | 140 | |
Mahendra Raghuwanshi | afb1e2a | 2018-05-03 12:15:03 +0000 | [diff] [blame] | 141 | ## Persist data to a persitent volume |
| 142 | persistence: |
Mandeep Khinda | 6dcc80d | 2018-10-09 14:47:35 +0000 | [diff] [blame] | 143 | enabled: true |
| 144 | config: |
| 145 | #existingClaim: |
Instrumental | cc3a0bd | 2019-05-01 14:18:49 -0500 | [diff] [blame] | 146 | volumeReclaimPolicy: Delete |
Mandeep Khinda | 6dcc80d | 2018-10-09 14:47:35 +0000 | [diff] [blame] | 147 | accessMode: ReadWriteMany |
| 148 | size: 2Gi |
Sylvain Desbureaux | 7a23575 | 2019-11-28 15:01:45 +0100 | [diff] [blame] | 149 | mountPath: /dockerdata-nfs |
| 150 | mountSubPath: "config" |
Mandeep Khinda | 6dcc80d | 2018-10-09 14:47:35 +0000 | [diff] [blame] | 151 | logs: |
| 152 | #existingClaim: |
| 153 | volumeReclaimPolicy: Retain |
| 154 | accessMode: ReadWriteMany |
| 155 | size: 2Gi |
Instrumental | cc3a0bd | 2019-05-01 14:18:49 -0500 | [diff] [blame] | 156 | mountPath: "/mnt/data/aaf/logs" |
| 157 | status: |
| 158 | volumeReclaimPolicy: Delete |
| 159 | accessMode: ReadWriteMany |
| 160 | size: 2M |
Mandeep Khinda | 6dcc80d | 2018-10-09 14:47:35 +0000 | [diff] [blame] | 161 | mountPath: /dockerdata-nfs |
Instrumental | cc3a0bd | 2019-05-01 14:18:49 -0500 | [diff] [blame] | 162 | mountSubPath: "status" |
| 163 | cass: |
| 164 | #existingClaim: |
Mandeep Khinda | 6dcc80d | 2018-10-09 14:47:35 +0000 | [diff] [blame] | 165 | volumeReclaimPolicy: Retain |
| 166 | accessMode: ReadWriteOnce |
| 167 | size: 10Gi |
Instrumental | cc3a0bd | 2019-05-01 14:18:49 -0500 | [diff] [blame] | 168 | mountPath: /dockerdata-nfs |
| 169 | mountSubPath: "cass" |
Mahendra Raghuwanshi | afb1e2a | 2018-05-03 12:15:03 +0000 | [diff] [blame] | 170 | |
ChrisC | ec86a53 | 2020-03-19 15:53:31 -0500 | [diff] [blame] | 171 | |
Instrumental | 378109d | 2018-10-16 20:40:41 -0500 | [diff] [blame] | 172 | resources: {} |