Gurjeet Bedi | 3bce64b | 2018-03-27 10:22:52 -0400 | [diff] [blame] | 1 | # Copyright © 2018 Amdocs, AT&T |
toshrajbhardwaj | f4fc1c6 | 2018-08-06 07:35:14 +0000 | [diff] [blame] | 2 | # Modifications Copyright © 2018 Bell Canada |
Gurjeet Bedi | 3bce64b | 2018-03-27 10:22:52 -0400 | [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 | |
| 16 | ################################################################# |
| 17 | global: |
| 18 | nodePortPrefix: 302 |
| 19 | loggingImage: beats/filebeat:5.5.0 |
| 20 | |
| 21 | ################################################################# |
| 22 | # Application configuration defaults. |
| 23 | ################################################################# |
| 24 | |
| 25 | # application image |
Ravi Geda | 8da0477 | 2019-01-09 16:54:14 +0000 | [diff] [blame] | 26 | image: onap/gizmo:1.4-STAGING-latest |
rajeshkalai | 9fcfbce | 2018-09-20 06:36:28 -0400 | [diff] [blame] | 27 | flavor: small |
Gurjeet Bedi | 3bce64b | 2018-03-27 10:22:52 -0400 | [diff] [blame] | 28 | # application configuration |
| 29 | config: |
| 30 | keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10 |
| 31 | keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10 |
Lee, Tian (tl5884) | fd8e7fb | 2019-01-11 16:52:27 +0000 | [diff] [blame] | 32 | trustStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10 |
Gurjeet Bedi | 3bce64b | 2018-03-27 10:22:52 -0400 | [diff] [blame] | 33 | |
| 34 | # default number of instances |
| 35 | replicaCount: 1 |
| 36 | |
| 37 | nodeSelector: {} |
| 38 | |
| 39 | affinity: {} |
| 40 | |
| 41 | # probe configuration parameters |
| 42 | liveness: |
| 43 | initialDelaySeconds: 10 |
| 44 | periodSeconds: 10 |
| 45 | # necessary to disable liveness probe when setting breakpoints |
| 46 | # in debugger so K8s doesn't restart unresponsive container |
| 47 | enabled: true |
| 48 | |
| 49 | readiness: |
| 50 | initialDelaySeconds: 10 |
| 51 | periodSeconds: 10 |
| 52 | |
| 53 | service: |
| 54 | type: NodePort |
BorislavG | 2d4426e | 2018-05-22 11:31:39 +0000 | [diff] [blame] | 55 | name: aai-crud-service |
| 56 | portName: aai-crud-service |
Gurjeet Bedi | 3bce64b | 2018-03-27 10:22:52 -0400 | [diff] [blame] | 57 | internalPort: 9520 |
Mandeep Khinda | fe527eb | 2018-10-16 09:56:34 -0400 | [diff] [blame] | 58 | externalPort: 9520 |
Mandeep Khinda | 9edbc2a | 2018-05-15 21:08:30 +0000 | [diff] [blame] | 59 | nodePort: 68 |
Gurjeet Bedi | 3bce64b | 2018-03-27 10:22:52 -0400 | [diff] [blame] | 60 | |
| 61 | ingress: |
| 62 | enabled: false |
| 63 | |
rajeshkalai | 9fcfbce | 2018-09-20 06:36:28 -0400 | [diff] [blame] | 64 | resources: |
| 65 | small: |
| 66 | limits: |
| 67 | cpu: 2 |
| 68 | memory: 4Gi |
| 69 | requests: |
jimmy | 297f59b | 2018-12-06 15:05:48 -0500 | [diff] [blame] | 70 | cpu: 0.5 |
| 71 | memory: 1Gi |
rajeshkalai | 9fcfbce | 2018-09-20 06:36:28 -0400 | [diff] [blame] | 72 | large: |
| 73 | limits: |
| 74 | cpu: 4 |
| 75 | memory: 8Gi |
| 76 | requests: |
jimmy | 297f59b | 2018-12-06 15:05:48 -0500 | [diff] [blame] | 77 | cpu: 1 |
| 78 | memory: 1536Mi |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 79 | unlimited: {} |