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 |
| 16 | |
| 17 | # application configuration |
| 18 | config: {} |
| 19 | |
| 20 | # default number of instances |
| 21 | replicaCount: 1 |
| 22 | |
| 23 | nodeSelector: {} |
| 24 | |
| 25 | affinity: {} |
| 26 | |
| 27 | # probe configuration parameters |
| 28 | liveness: |
| 29 | initialDelaySeconds: 10 |
| 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: |
| 36 | initialDelaySeconds: 10 |
| 37 | periodSeconds: 10 |
| 38 | |
| 39 | service: |
| 40 | type: NodePort |
| 41 | name: msb-discovery |
| 42 | externalPort: 10081 |
| 43 | internalPort: 10081 |
| 44 | nodePort: 81 |
| 45 | |
| 46 | ingress: |
| 47 | enabled: false |
| 48 | |
| 49 | resources: {} |
| 50 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 51 | # choice for the user. This also increases chances charts run on environments with little |
| 52 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 53 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 54 | # |
| 55 | # Example: |
| 56 | # Configure resource requests and limits |
| 57 | # ref: http://kubernetes.io/docs/user-guide/compute-resources/ |
| 58 | # Minimum memory for development is 2 CPU cores and 4GB memory |
| 59 | # Minimum memory for production is 4 CPU cores and 8GB memory |
| 60 | #resources: |
| 61 | # limits: |
| 62 | # cpu: 2 |
| 63 | # memory: 4Gi |
| 64 | # requests: |
| 65 | # cpu: 2 |
| 66 | # memory: 4Gi |