Maciej Malewski | 955e39d | 2020-08-27 10:43:09 +0200 | [diff] [blame] | 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 |
Maciej Malewski | 955e39d | 2020-08-27 10:43:09 +0200 | [diff] [blame] | 23 | persistence: |
| 24 | enabled: true |
| 25 | # Standard OOM |
| 26 | pullPolicy: "Always" |
Maciej Malewski | 955e39d | 2020-08-27 10:43:09 +0200 | [diff] [blame] | 27 | |
| 28 | cmpv2Enabled: true |
| 29 | addTestingComponents: false |
| 30 | |
| 31 | certService: |
| 32 | certServiceClient: |
| 33 | secret: |
| 34 | name: oom-cert-service-client-tls-secret |
| 35 | |
| 36 | ################################################################# |
| 37 | # Application configuration defaults. |
| 38 | ################################################################# |
| 39 | |
| 40 | flavor: small |
| 41 | # default number of instances |
| 42 | replicaCount: 1 |
| 43 | |
| 44 | nodeSelector: {} |
| 45 | |
| 46 | affinity: {} |
| 47 | |
| 48 | # probe configuration parameters |
| 49 | liveness: |
| 50 | initialDelaySeconds: 350 |
| 51 | periodSeconds: 10 |
| 52 | # necessary to disable liveness probe when setting breakpoints |
| 53 | # in debugger so K8s doesn't restart unresponsive container |
| 54 | enabled: true |
| 55 | |
| 56 | readiness: |
| 57 | initialDelaySeconds: 150 |
| 58 | periodSeconds: 10 |
| 59 | |
| 60 | persistence: {} |
| 61 | |
| 62 | resources: {} |