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