Geora Barsky | 417b3b4 | 2018-08-17 13:31:36 -0400 | [diff] [blame] | 1 | # Default values for search-data. |
| 2 | # This is a YAML-formatted file. |
| 3 | # Declare variables to be passed into your templates. |
| 4 | global: # global defaults |
| 5 | nodePortPrefix: 302 |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 6 | readinessImage: onap/oom/readiness:3.0.1 |
Geora Barsky | 417b3b4 | 2018-08-17 13:31:36 -0400 | [diff] [blame] | 7 | |
| 8 | |
| 9 | # application image |
| 10 | repository: nexus3.onap.org:10001 |
Michael O'Brien | 294fade | 2019-05-13 14:46:18 -0400 | [diff] [blame] | 11 | image: onap/search-data-service:1.3.1 |
Geora Barsky | 417b3b4 | 2018-08-17 13:31:36 -0400 | [diff] [blame] | 12 | pullPolicy: Always |
| 13 | restartPolicy: Always |
| 14 | |
| 15 | # application configuration |
| 16 | config: |
| 17 | elasticsearchHttpPort: 9200 |
| 18 | keyStorePassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10 |
| 19 | keyManagerPassword: OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10 |
| 20 | |
| 21 | |
| 22 | # default number of instances |
| 23 | replicaCount: 1 |
| 24 | |
| 25 | nodeSelector: {} |
| 26 | |
| 27 | affinity: {} |
| 28 | |
| 29 | # probe configuration parameters |
| 30 | liveness: |
jmac | 15bf8cd | 2019-02-05 19:44:55 +0000 | [diff] [blame] | 31 | initialDelaySeconds: 30 |
Geora Barsky | 417b3b4 | 2018-08-17 13:31:36 -0400 | [diff] [blame] | 32 | periodSeconds: 10 |
| 33 | # necessary to disable liveness probe when setting breakpoints |
| 34 | # in debugger so K8s doesn't restart unresponsive container |
| 35 | enabled: true |
| 36 | |
| 37 | readiness: |
jmac | 15bf8cd | 2019-02-05 19:44:55 +0000 | [diff] [blame] | 38 | initialDelaySeconds: 30 |
Geora Barsky | 417b3b4 | 2018-08-17 13:31:36 -0400 | [diff] [blame] | 39 | periodSeconds: 10 |
| 40 | |
| 41 | service: |
| 42 | type: ClusterIP |
| 43 | portName: pomba-search-data |
| 44 | internalPort: 9509 |
| 45 | |
| 46 | ingress: |
| 47 | enabled: false |
| 48 | |
jmac | af645b5 | 2018-10-11 12:21:54 +0000 | [diff] [blame] | 49 | # Resource Limit flavor -By Default using small |
| 50 | flavor: small |
| 51 | # Segregation for Different environment (Small and Large) |
| 52 | resources: |
| 53 | small: |
| 54 | limits: |
| 55 | cpu: 1 |
| 56 | memory: 1800Mi |
| 57 | requests: |
| 58 | cpu: 50m |
| 59 | memory: 900Mi |
| 60 | large: |
| 61 | limits: |
| 62 | cpu: 2 |
| 63 | memory: 3600Mi |
| 64 | requests: |
| 65 | cpu: 100m |
| 66 | memory: 1800Mi |
Michael O'Brien | 294fade | 2019-05-13 14:46:18 -0400 | [diff] [blame] | 67 | unlimited: {} |