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