vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 2 | # Modifications Copyright © 2018-2019 AT&T |
vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [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. |
| 15 | |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 16 | ################################################################# |
| 17 | # Global configuration defaults. |
| 18 | ################################################################# |
| 19 | global: # global defaults |
| 20 | nodePortPrefix: 302 |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 21 | readinessRepository: oomk8s |
BorislavG | 3d6f937 | 2018-04-15 11:55:39 +0000 | [diff] [blame] | 22 | readinessImage: readiness-check:2.0.0 |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 23 | loggingRepository: docker.elastic.co |
| 24 | loggingImage: beats/filebeat:5.5.0 |
| 25 | |
| 26 | subChartsOnly: |
| 27 | enabled: true |
| 28 | |
Sylvain Desbureaux | 45fba76 | 2018-11-23 11:35:46 +0100 | [diff] [blame] | 29 | flavor: small |
| 30 | |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 31 | # application image |
| 32 | repository: nexus3.onap.org:10001 |
sebdet | 9a4661e | 2019-10-11 18:23:57 +0200 | [diff] [blame] | 33 | image: onap/clamp-frontend:4.1.3 |
Dusan Rozman | f776f3d | 2017-09-18 13:07:56 -0400 | [diff] [blame] | 34 | pullPolicy: Always |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 35 | |
| 36 | # flag to enable debugging - application support required |
| 37 | debugEnabled: false |
| 38 | |
| 39 | ################################################################# |
| 40 | # Application configuration defaults. |
| 41 | ################################################################# |
| 42 | config: |
ac2550 | de00989 | 2018-05-24 15:47:05 +0200 | [diff] [blame] | 43 | log: |
| 44 | logstashServiceName: log-ls |
| 45 | logstashPort: 5044 |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 46 | dataRootDir: /dockerdata-nfs |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 47 | |
| 48 | # default number of instances |
| 49 | replicaCount: 1 |
| 50 | |
| 51 | nodeSelector: {} |
| 52 | |
| 53 | affinity: {} |
| 54 | |
| 55 | # probe configuration parameters |
| 56 | liveness: |
ac2550 | cfa75fe | 2018-08-07 15:36:10 +0200 | [diff] [blame] | 57 | initialDelaySeconds: 120 |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 58 | periodSeconds: 10 |
| 59 | # necessary to disable liveness probe when setting breakpoints |
| 60 | # in debugger so K8s doesn't restart unresponsive container |
| 61 | enabled: true |
| 62 | |
| 63 | readiness: |
| 64 | initialDelaySeconds: 10 |
| 65 | periodSeconds: 10 |
| 66 | |
| 67 | |
| 68 | service: |
| 69 | type: NodePort |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 70 | name: clamp-external |
| 71 | portName: clamp-external |
| 72 | internalPort: 443 |
Determe, Sebastien (sd378r) | 346ac69 | 2019-04-29 14:52:41 +0200 | [diff] [blame] | 73 | nodePort: 58 |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 74 | |
Michael O'Brien | cd4d4eb | 2018-09-04 20:56:34 -0400 | [diff] [blame] | 75 | # as of 20180904 port 58 is reserved for clamp from log/logdemonode |
| 76 | # see https://wiki.onap.org/display/DW/OOM+NodePort+List |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 77 | |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 78 | type2: ClusterIP |
| 79 | name2: clamp |
| 80 | portName2: clamp-internal |
| 81 | internalPort2: 443 |
| 82 | externalPort2: 8443 |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 83 | |
| 84 | ingress: |
| 85 | enabled: false |
| 86 | |
Determe, Sebastien (sd378r) | d600a8d | 2018-06-01 11:27:49 +0200 | [diff] [blame] | 87 | #resources: {} |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 88 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 89 | # choice for the user. This also increases chances charts run on environments with little |
| 90 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 91 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 92 | # |
| 93 | # Example: |
| 94 | # Configure resource requests and limits |
| 95 | # ref: http://kubernetes.io/docs/user-guide/compute-resources/ |
| 96 | # Minimum memory for development is 2 CPU cores and 4GB memory |
| 97 | # Minimum memory for production is 4 CPU cores and 8GB memory |
Determe, Sebastien (sd378r) | d600a8d | 2018-06-01 11:27:49 +0200 | [diff] [blame] | 98 | resources: |
Sylvain Desbureaux | 45fba76 | 2018-11-23 11:35:46 +0100 | [diff] [blame] | 99 | small: |
| 100 | limits: |
| 101 | cpu: 1 |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 102 | memory: 200Mi |
Sylvain Desbureaux | 45fba76 | 2018-11-23 11:35:46 +0100 | [diff] [blame] | 103 | requests: |
| 104 | cpu: 10m |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 105 | memory: 50Mi |
Sylvain Desbureaux | 45fba76 | 2018-11-23 11:35:46 +0100 | [diff] [blame] | 106 | large: |
| 107 | limits: |
| 108 | cpu: 1 |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 109 | memory: 500Mi |
Sylvain Desbureaux | 45fba76 | 2018-11-23 11:35:46 +0100 | [diff] [blame] | 110 | requests: |
| 111 | cpu: 10m |
sebdet | d85e24c | 2019-09-04 18:35:26 +0200 | [diff] [blame] | 112 | memory: 50Mi |
Sylvain Desbureaux | 45fba76 | 2018-11-23 11:35:46 +0100 | [diff] [blame] | 113 | unlimited: {} |