Jack Lucas | 332b5e7 | 2019-02-06 16:03:13 -0500 | [diff] [blame] | 1 | #============LICENSE_START======================================================== |
| 2 | # ================================================================================ |
Alex Shatov | 32f9919 | 2020-02-25 15:24:02 -0500 | [diff] [blame] | 3 | # Copyright (c) 2019-2020 AT&T Intellectual Property. All rights reserved. |
Jack Lucas | 332b5e7 | 2019-02-06 16:03:13 -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 | 332b5e7 | 2019-02-06 16:03:13 -0500 | [diff] [blame] | 24 | loggingRepository: docker.elastic.co |
| 25 | loggingImage: beats/filebeat:5.5.0 |
| 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 | 332b5e7 | 2019-02-06 16:03:13 -0500 | [diff] [blame] | 28 | consulLoaderRepository: nexus3.onap.org:10001 |
Vijay Venkatesh Kumar | 6ef010c | 2019-05-01 18:41:35 +0000 | [diff] [blame] | 29 | consulLoaderImage: onap/org.onap.dcaegen2.deployments.consul-loader-container:1.0.0 |
Jack Lucas | 332b5e7 | 2019-02-06 16:03:13 -0500 | [diff] [blame] | 30 | repositoryCred: |
| 31 | user: docker |
| 32 | password: docker |
| 33 | |
| 34 | config: |
| 35 | logstashServiceName: log-ls |
| 36 | logstashPort: 5044 |
| 37 | # Addresses of other ONAP entities |
| 38 | address: |
| 39 | consul: |
| 40 | host: consul-server |
| 41 | port: 8500 |
Vijay Venkatesh Kumar | 4112d5c | 2019-05-07 20:34:39 +0000 | [diff] [blame] | 42 | policy_xacml_pdp: policy-xacml-pdp |
Jack Lucas | 332b5e7 | 2019-02-06 16:03:13 -0500 | [diff] [blame] | 43 | |
| 44 | ################################################################# |
| 45 | # Application configuration defaults. |
| 46 | ################################################################# |
| 47 | # application image |
| 48 | repository: nexus3.onap.org:10001 |
Alex Shatov | 32f9919 | 2020-02-25 15:24:02 -0500 | [diff] [blame] | 49 | image: onap/org.onap.dcaegen2.platform.policy-handler:5.1.0 |
Jack Lucas | 332b5e7 | 2019-02-06 16:03:13 -0500 | [diff] [blame] | 50 | pullPolicy: Always |
| 51 | |
| 52 | # probe configuration parameters |
| 53 | liveness: |
| 54 | initialDelaySeconds: 10 |
| 55 | periodSeconds: 10 |
| 56 | # necessary to disable liveness probe when setting breakpoints |
| 57 | # in debugger so K8s doesn't restart unresponsive container |
| 58 | # liveness not desirable for Cloudify Manager container |
| 59 | enabled: false |
| 60 | |
| 61 | readiness: |
| 62 | initialDelaySeconds: 60 |
| 63 | periodSeconds: 300 |
| 64 | path: /healthcheck |
| 65 | scheme: HTTP |
| 66 | |
| 67 | service: |
| 68 | type: ClusterIP |
| 69 | name: policy-handler |
Alex Shatov | 32f9919 | 2020-02-25 15:24:02 -0500 | [diff] [blame] | 70 | externalPort: 80 |
Jack Lucas | 332b5e7 | 2019-02-06 16:03:13 -0500 | [diff] [blame] | 71 | internalPort: 25577 |
| 72 | |
| 73 | |
| 74 | # Resource Limit flavor -By Default using small |
| 75 | flavor: small |
| 76 | # Segregation for Different environment (Small and Large) |
| 77 | resources: |
| 78 | small: |
| 79 | limits: |
| 80 | cpu: 2 |
| 81 | memory: 2Gi |
| 82 | requests: |
| 83 | cpu: 1 |
| 84 | memory: 1Gi |
| 85 | large: |
| 86 | limits: |
| 87 | cpu: 4 |
| 88 | memory: 4Gi |
| 89 | requests: |
| 90 | cpu: 2 |
| 91 | memory: 2Gi |
| 92 | unlimited: {} |
| 93 | # Kubernetes namespace for components deployed via Cloudify manager |
| 94 | # If empty, use the common namespace |
| 95 | # dcae_ns: "dcae" |