BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 1 | ################################################################# |
| 2 | # Global configuration defaults. |
| 3 | ################################################################# |
| 4 | global: |
| 5 | nodePortPrefix: 302 |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 6 | readinessRepository: oomk8s |
BorislavG | 3d6f937 | 2018-04-15 11:55:39 +0000 | [diff] [blame] | 7 | readinessImage: readiness-check:2.0.0 |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 8 | |
| 9 | ################################################################# |
| 10 | # Application configuration defaults. |
| 11 | ################################################################# |
| 12 | # application image |
| 13 | repository: nexus3.onap.org:10001 |
Gary Wu | 4662166 | 2018-05-30 14:30:47 -0700 | [diff] [blame] | 14 | image: onap/msb/msb_discovery:1.1.0 |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 15 | pullPolicy: Always |
Huabing Zhao | 81b8976 | 2018-07-30 06:33:03 +0000 | [diff] [blame^] | 16 | istioSidecar: true |
BorislavG | 0433c91 | 2018-03-21 18:35:30 +0200 | [diff] [blame] | 17 | |
| 18 | # application configuration |
| 19 | config: {} |
| 20 | |
| 21 | # default number of instances |
| 22 | replicaCount: 1 |
| 23 | |
| 24 | nodeSelector: {} |
| 25 | |
| 26 | affinity: {} |
| 27 | |
| 28 | # probe configuration parameters |
| 29 | liveness: |
| 30 | initialDelaySeconds: 10 |
| 31 | periodSeconds: 10 |
| 32 | # necessary to disable liveness probe when setting breakpoints |
| 33 | # in debugger so K8s doesn't restart unresponsive container |
| 34 | enabled: true |
| 35 | |
| 36 | readiness: |
| 37 | initialDelaySeconds: 10 |
| 38 | periodSeconds: 10 |
| 39 | |
| 40 | service: |
| 41 | type: NodePort |
| 42 | name: msb-discovery |
| 43 | externalPort: 10081 |
| 44 | internalPort: 10081 |
| 45 | nodePort: 81 |
| 46 | |
| 47 | ingress: |
| 48 | enabled: false |
| 49 | |
| 50 | resources: {} |
| 51 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 52 | # choice for the user. This also increases chances charts run on environments with little |
| 53 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 54 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 55 | # |
| 56 | # Example: |
| 57 | # Configure resource requests and limits |
| 58 | # ref: http://kubernetes.io/docs/user-guide/compute-resources/ |
| 59 | # Minimum memory for development is 2 CPU cores and 4GB memory |
| 60 | # Minimum memory for production is 4 CPU cores and 8GB memory |
| 61 | #resources: |
| 62 | # limits: |
| 63 | # cpu: 2 |
| 64 | # memory: 4Gi |
| 65 | # requests: |
| 66 | # cpu: 2 |
| 67 | # memory: 4Gi |