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 |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 23 | readinessImage: readiness-check:2.0.0 |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 24 | persistence: {} |
Sylvain Desbureaux | 45fba76 | 2018-11-23 11:35:46 +0100 | [diff] [blame] | 25 | flavor: small |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 26 | |
| 27 | ################################################################# |
| 28 | # Application configuration defaults. |
| 29 | ################################################################# |
| 30 | |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 31 | # BusyBox image |
| 32 | busyboxRepository: registry.hub.docker.com |
| 33 | busyboxImage: library/busybox:latest |
| 34 | |
| 35 | # application image |
Julien Barbot | ed56cca | 2018-10-22 17:53:07 +0200 | [diff] [blame] | 36 | repository: nexus3.onap.org:10001 |
osgn422w | fea3c09 | 2020-03-03 19:57:18 +0100 | [diff] [blame] | 37 | image: onap/clamp-dashboard-kibana:5.0.3 |
ac2550 | 07f4696 | 2018-05-17 11:33:00 +0200 | [diff] [blame] | 38 | pullPolicy: Always |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 39 | |
| 40 | # flag to enable debugging - application support required |
| 41 | debugEnabled: false |
| 42 | |
| 43 | # application configuration |
osgn422w | b561a59 | 2020-02-11 15:50:21 +0100 | [diff] [blame] | 44 | #the 'sslEnabled flag' here below is for the kibana UI connection (web browser connection to kibana) |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 45 | config: |
| 46 | elasticsearchServiceName: cdash-es |
| 47 | elasticsearchPort: 9200 |
osgn422w | 6e663e4 | 2019-08-02 11:31:11 +0200 | [diff] [blame] | 48 | elasticUSR: kibanaserver |
| 49 | elasticPWD: kibanaserver |
osgn422w | 10e3a8b | 2019-05-23 14:19:39 +0200 | [diff] [blame] | 50 | sslEnabled: true |
| 51 | sslPemCertFilePath: /usr/share/kibana/config/keystore/org.onap.clamp.crt.pem |
| 52 | sslPemkeyFilePath: /usr/share/kibana/config/keystore/org.onap.clamp.key.pem |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 53 | |
| 54 | # default number of instances |
| 55 | replicaCount: 1 |
| 56 | |
| 57 | nodeSelector: {} |
| 58 | |
| 59 | affinity: {} |
| 60 | |
| 61 | # probe configuration parameters |
| 62 | liveness: |
| 63 | initialDelaySeconds: 360 |
osgn422w | b561a59 | 2020-02-11 15:50:21 +0100 | [diff] [blame] | 64 | periodSeconds: 30 |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 65 | # necessary to disable liveness probe when setting breakpoints |
| 66 | # in debugger so K8s doesn't restart unresponsive container |
| 67 | enabled: true |
| 68 | |
| 69 | readiness: |
osgn422w | b561a59 | 2020-02-11 15:50:21 +0100 | [diff] [blame] | 70 | initialDelaySeconds: 360 |
| 71 | periodSeconds: 30 |
| 72 | |
| 73 | #internal ssl security scheme for elasticsearch connection mainly |
| 74 | security: |
| 75 | ssl: |
| 76 | enabled: true |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 77 | |
| 78 | service: |
| 79 | #Example service definition with external, internal and node ports. |
| 80 | #Services may use any combination of ports depending on the 'type' of |
| 81 | #service being defined. |
| 82 | type: NodePort |
| 83 | name: cdash-kibana |
| 84 | portName: cdash-kibana-http |
| 85 | externalPort: 5601 |
| 86 | internalPort: 5601 |
| 87 | nodePort: 90 |
| 88 | ingress: |
| 89 | enabled: false |
Sylvain Desbureaux | 0615535 | 2020-05-04 11:50:08 +0200 | [diff] [blame] | 90 | service: |
| 91 | - baseaddr: "cdash-kibana" |
| 92 | name: "cdash-kibana" |
| 93 | port: 5601 |
| 94 | config: |
| 95 | ssl: "redirect" |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 96 | |
Determe, Sebastien (sd378r) | d600a8d | 2018-06-01 11:27:49 +0200 | [diff] [blame] | 97 | #resources: {} |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 98 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 99 | # choice for the user. This also increases chances charts run on environments with little |
| 100 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 101 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 102 | # |
| 103 | # Example: |
| 104 | # Configure resource requests and limits |
| 105 | # ref: http://kubernetes.io/docs/user-guide/compute-resources/ |
| 106 | # Minimum memory for development is 2 CPU cores and 4GB memory |
| 107 | # Minimum memory for production is 4 CPU cores and 8GB memory |
Determe, Sebastien (sd378r) | d600a8d | 2018-06-01 11:27:49 +0200 | [diff] [blame] | 108 | resources: |
Sylvain Desbureaux | 45fba76 | 2018-11-23 11:35:46 +0100 | [diff] [blame] | 109 | small: |
| 110 | limits: |
| 111 | cpu: 1 |
| 112 | memory: 2Gi |
| 113 | requests: |
| 114 | cpu: 10m |
| 115 | memory: 750Mi |
| 116 | large: |
| 117 | limits: |
| 118 | cpu: 1 |
| 119 | memory: 2Gi |
| 120 | requests: |
| 121 | cpu: 10m |
| 122 | memory: 750Mi |
| 123 | unlimited: {} |