Jack Lucas | 6fae763 | 2019-01-25 11:46:00 -0500 | [diff] [blame] | 1 | #============LICENSE_START======================================================== |
| 2 | # ================================================================================ |
vv770d | 97b84ea | 2020-08-17 22:30:24 +0000 | [diff] [blame] | 3 | # Copyright (c) 2019-2020 AT&T Intellectual Property. All rights reserved. |
Jack Lucas | 6fae763 | 2019-01-25 11:46:00 -0500 | [diff] [blame] | 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 | # ============LICENSE_END========================================================= |
| 17 | |
| 18 | ################################################################# |
| 19 | # Global configuration defaults. |
| 20 | ################################################################# |
| 21 | global: |
| 22 | nodePortPrefix: 302 |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame^] | 23 | readinessImage: onap/oom/readiness:3.0.1 |
Jack Lucas | 6fae763 | 2019-01-25 11:46:00 -0500 | [diff] [blame] | 24 | loggingRepository: docker.elastic.co |
| 25 | loggingImage: beats/filebeat:5.5.0 |
Vijay Venkatesh Kumar | a4535c9 | 2019-08-02 01:45:23 +0000 | [diff] [blame] | 26 | tlsRepository: nexus3.onap.org:10001 |
Jack Lucas | c70bc7e | 2019-09-23 09:02:31 -0400 | [diff] [blame] | 27 | tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0 |
Jack Lucas | 6fae763 | 2019-01-25 11:46:00 -0500 | [diff] [blame] | 28 | repositoryCred: |
| 29 | user: docker |
| 30 | password: docker |
| 31 | |
| 32 | config: |
| 33 | logstashServiceName: log-ls |
| 34 | logstashPort: 5044 |
| 35 | address: |
| 36 | # Addresses of ONAP components |
| 37 | message_router: message-router |
| 38 | sdc: sdc-be |
| 39 | ################################################################# |
| 40 | # Application configuration defaults. |
| 41 | ################################################################# |
| 42 | # application image |
| 43 | repository: nexus3.onap.org:10001 |
vv770d | 97b84ea | 2020-08-17 22:30:24 +0000 | [diff] [blame] | 44 | image: onap/org.onap.dcaegen2.platform.servicechange-handler:1.4.0 |
Jack Lucas | 6fae763 | 2019-01-25 11:46:00 -0500 | [diff] [blame] | 45 | |
| 46 | pullPolicy: Always |
| 47 | |
| 48 | # configuration for accessing SDC |
| 49 | sdc: |
| 50 | user: "dcae" |
| 51 | password: !!str Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U |
| 52 | environmentName: "AUTO" |
| 53 | useHttps: false |
| 54 | |
| 55 | # configuration for accessing DMaaP |
| 56 | dmaap: |
| 57 | useHttps: false |
| 58 | |
| 59 | # probe configuration parameters |
| 60 | liveness: |
| 61 | initialDelaySeconds: 30 |
| 62 | periodSeconds: 30 |
| 63 | script: /opt/health.sh |
| 64 | # necessary to disable liveness probe when setting breakpoints |
| 65 | # in debugger so K8s doesn't restart unresponsive container |
| 66 | # liveness not desirable for Cloudify Manager container |
| 67 | enabled: false |
| 68 | |
| 69 | readiness: |
| 70 | initialDelaySeconds: 30 |
| 71 | periodSeconds: 30 |
| 72 | script: /opt/health.sh |
| 73 | |
| 74 | |
| 75 | # Resource Limit flavor -By Default using small |
| 76 | flavor: small |
| 77 | # Segregation for Different environment (Small and Large) |
| 78 | resources: |
| 79 | small: |
| 80 | limits: |
| 81 | cpu: 2 |
| 82 | memory: 2Gi |
| 83 | requests: |
| 84 | cpu: 1 |
| 85 | memory: 1Gi |
| 86 | large: |
| 87 | limits: |
| 88 | cpu: 4 |
| 89 | memory: 4Gi |
| 90 | requests: |
| 91 | cpu: 2 |
| 92 | memory: 2Gi |
| 93 | unlimited: {} |
| 94 | # Kubernetes namespace for components deployed via Cloudify manager |
| 95 | # If empty, use the common namespace |
vv770d | 97b84ea | 2020-08-17 22:30:24 +0000 | [diff] [blame] | 96 | # dcae_ns: "dcae" |