ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
Mukul | 379e252 | 2018-09-05 12:26:02 +0000 | [diff] [blame] | 2 | # Modifications Copyright © 2018 AT&T |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 15 | |
| 16 | ################################################################# |
| 17 | # Global configuration defaults. |
| 18 | ################################################################# |
| 19 | global: |
| 20 | nodePortPrefix: 302 |
| 21 | repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ== |
| 22 | readinessRepository: oomk8s |
| 23 | readinessImage: readiness-check:1.1.0 |
| 24 | persistence: {} |
| 25 | |
| 26 | ################################################################# |
| 27 | # Application configuration defaults. |
| 28 | ################################################################# |
| 29 | |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 30 | # BusyBox image |
| 31 | busyboxRepository: registry.hub.docker.com |
| 32 | busyboxImage: library/busybox:latest |
| 33 | |
| 34 | # application image |
Julien Barbot | ed56cca | 2018-10-22 17:53:07 +0200 | [diff] [blame] | 35 | repository: nexus3.onap.org:10001 |
Gary Wu | 665f8b6 | 2018-11-14 14:39:11 -0800 | [diff] [blame] | 36 | image: onap/clamp-dashboard-kibana:3.0.3 |
ac2550 | 07f4696 | 2018-05-17 11:33:00 +0200 | [diff] [blame] | 37 | pullPolicy: Always |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 38 | |
| 39 | # flag to enable debugging - application support required |
| 40 | debugEnabled: false |
| 41 | |
| 42 | # application configuration |
| 43 | config: |
| 44 | elasticsearchServiceName: cdash-es |
| 45 | elasticsearchPort: 9200 |
| 46 | |
| 47 | # default number of instances |
| 48 | replicaCount: 1 |
| 49 | |
| 50 | nodeSelector: {} |
| 51 | |
| 52 | affinity: {} |
| 53 | |
| 54 | # probe configuration parameters |
| 55 | liveness: |
| 56 | initialDelaySeconds: 360 |
| 57 | periodSeconds: 10 |
| 58 | # necessary to disable liveness probe when setting breakpoints |
| 59 | # in debugger so K8s doesn't restart unresponsive container |
| 60 | enabled: true |
| 61 | |
| 62 | readiness: |
| 63 | initialDelaySeconds: 10 |
| 64 | periodSeconds: 10 |
| 65 | |
| 66 | service: |
| 67 | #Example service definition with external, internal and node ports. |
| 68 | #Services may use any combination of ports depending on the 'type' of |
| 69 | #service being defined. |
| 70 | type: NodePort |
| 71 | name: cdash-kibana |
| 72 | portName: cdash-kibana-http |
| 73 | externalPort: 5601 |
| 74 | internalPort: 5601 |
| 75 | nodePort: 90 |
| 76 | ingress: |
| 77 | enabled: false |
| 78 | |
Determe, Sebastien (sd378r) | d600a8d | 2018-06-01 11:27:49 +0200 | [diff] [blame] | 79 | #resources: {} |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 80 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 81 | # choice for the user. This also increases chances charts run on environments with little |
| 82 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 83 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 84 | # |
| 85 | # Example: |
| 86 | # Configure resource requests and limits |
| 87 | # ref: http://kubernetes.io/docs/user-guide/compute-resources/ |
| 88 | # Minimum memory for development is 2 CPU cores and 4GB memory |
| 89 | # Minimum memory for production is 4 CPU cores and 8GB memory |
Determe, Sebastien (sd378r) | d600a8d | 2018-06-01 11:27:49 +0200 | [diff] [blame] | 90 | resources: |
| 91 | limits: |
| 92 | cpu: 1 |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 93 | memory: 2Gi |
Determe, Sebastien (sd378r) | d600a8d | 2018-06-01 11:27:49 +0200 | [diff] [blame] | 94 | requests: |
| 95 | cpu: 10m |
| 96 | memory: 750Mi |
| 97 | |