vaibhav_16dec | e04b2fe | 2018-03-22 09:07:12 +0000 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 15 | ################################################################# |
| 16 | # Global configuration defaults. |
| 17 | ################################################################# |
| 18 | global: # global defaults |
| 19 | nodePortPrefix: 302 |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 20 | readinessRepository: oomk8s |
BorislavG | 3d6f937 | 2018-04-15 11:55:39 +0000 | [diff] [blame] | 21 | readinessImage: readiness-check:2.0.0 |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 22 | loggingRepository: docker.elastic.co |
| 23 | loggingImage: beats/filebeat:5.5.0 |
| 24 | |
| 25 | subChartsOnly: |
| 26 | enabled: true |
| 27 | |
| 28 | # application image |
| 29 | repository: nexus3.onap.org:10001 |
Determe, Sebastien (sd378r) | b84a92d | 2018-08-28 13:28:12 +0200 | [diff] [blame] | 30 | image: onap/clamp:3.0-STAGING-latest |
Dusan Rozman | f776f3d | 2017-09-18 13:07:56 -0400 | [diff] [blame] | 31 | pullPolicy: Always |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 32 | |
| 33 | # flag to enable debugging - application support required |
| 34 | debugEnabled: false |
| 35 | |
| 36 | ################################################################# |
| 37 | # Application configuration defaults. |
| 38 | ################################################################# |
| 39 | config: |
ac2550 | de00989 | 2018-05-24 15:47:05 +0200 | [diff] [blame] | 40 | log: |
| 41 | logstashServiceName: log-ls |
| 42 | logstashPort: 5044 |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 43 | mysqlPassword: strong_pitchou |
| 44 | dataRootDir: /dockerdata-nfs |
ac2550 | a2619ed | 2018-04-04 13:01:04 +0200 | [diff] [blame] | 45 | springApplicationJson: > |
| 46 | { |
ac2550 | 7895b2c | 2018-05-16 14:31:23 +0200 | [diff] [blame] | 47 | "spring.datasource.cldsdb.url": "jdbc:mariadb:sequential://clampdb.{{ include "common.namespace" . }}:3306/cldsdb4?autoReconnect=true&connectTimeout=10000&socketTimeout=10000&retriesAllDown=3", |
| 48 | "clamp.config.sdc.catalog.url": "http://sdc-be.{{ include "common.namespace" . }}:8080/sdc/v1/catalog/", |
| 49 | "clamp.config.sdc.hostUrl": "http://sdc-be.{{ include "common.namespace" . }}:8080/", |
| 50 | "clamp.config.sdc.serviceUrl": "http://sdc-be.{{ include "common.namespace" . }}:8080/sdc/v1/catalog/services", |
ac2550 | a2619ed | 2018-04-04 13:01:04 +0200 | [diff] [blame] | 51 | "clamp.config.sdc.serviceUsername": "clamp", |
| 52 | "clamp.config.sdc.servicePassword": "b7acccda32b98c5bb7acccda32b98c5b05D511BD6D93626E90D18E9D24D9B78CD34C7EE8012F0A189A28763E82271E50A5D4EC10C7D93E06E0A2D27CAE66B981", |
ac2550 | 7895b2c | 2018-05-16 14:31:23 +0200 | [diff] [blame] | 53 | "clamp.config.files.sdcController": "file:/opt/clamp/sdc-controllers-config.json", |
ac2550 | 3f4be64 | 2018-05-18 13:13:17 +0200 | [diff] [blame] | 54 | "clamp.config.dcae.inventory.url": "http://inventory.{{ include "common.namespace" . }}:8080", |
| 55 | "clamp.config.dcae.dispatcher.url": "http://deployment-handler.{{ include "common.namespace" . }}:8443", |
ac2550 | 26fdda9 | 2018-05-24 17:41:24 +0200 | [diff] [blame] | 56 | "clamp.config.policy.pdpUrl1": "http://pdp.{{ include "common.namespace" . }}:8081/pdp/ , testpdp, alpha123", |
| 57 | "clamp.config.policy.pdpUrl2": "http://pdp.{{ include "common.namespace" . }}:8081/pdp/ , testpdp, alpha123", |
| 58 | "clamp.config.policy.papUrl": "http://pap.{{ include "common.namespace" . }}:9091/pap/ , testpap, alpha123", |
Determe, Sebastien (sd378r) | b84a92d | 2018-08-28 13:28:12 +0200 | [diff] [blame] | 59 | "clamp.config.policy.clientKey": "dGVzdA==", |
| 60 | "clamp.config.cadi.aafLocateUrl": "https://aaf-onap-test.osaaf.org:8095", |
| 61 | "com.att.eelf.logging.path": "/opt/clamp", |
| 62 | "com.att.eelf.logging.file": "logback.xml" |
ac2550 | a2619ed | 2018-04-04 13:01:04 +0200 | [diff] [blame] | 63 | } |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 64 | |
| 65 | # subchart configuration |
| 66 | mariadb: |
| 67 | nameOverride: clampdb |
| 68 | |
| 69 | |
| 70 | # default number of instances |
| 71 | replicaCount: 1 |
| 72 | |
| 73 | nodeSelector: {} |
| 74 | |
| 75 | affinity: {} |
| 76 | |
| 77 | # probe configuration parameters |
| 78 | liveness: |
ac2550 | cfa75fe | 2018-08-07 15:36:10 +0200 | [diff] [blame] | 79 | initialDelaySeconds: 120 |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 80 | periodSeconds: 10 |
| 81 | # necessary to disable liveness probe when setting breakpoints |
| 82 | # in debugger so K8s doesn't restart unresponsive container |
| 83 | enabled: true |
| 84 | |
| 85 | readiness: |
| 86 | initialDelaySeconds: 10 |
| 87 | periodSeconds: 10 |
| 88 | |
| 89 | |
| 90 | service: |
| 91 | type: NodePort |
| 92 | name: clamp |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 93 | portName: clamp |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 94 | internalPort: 8080 |
| 95 | nodePort: 95 |
Determe, Sebastien (sd378r) | b84a92d | 2018-08-28 13:28:12 +0200 | [diff] [blame] | 96 | portName2: clamp-ssl |
| 97 | internalPort2: 8443 |
| 98 | nodePort2: 34 |
| 99 | |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 100 | |
| 101 | ingress: |
| 102 | enabled: false |
| 103 | |
Determe, Sebastien (sd378r) | d600a8d | 2018-06-01 11:27:49 +0200 | [diff] [blame] | 104 | #resources: {} |
vaibhav_16dec | f67e418 | 2018-03-19 05:45:47 +0000 | [diff] [blame] | 105 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 106 | # choice for the user. This also increases chances charts run on environments with little |
| 107 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 108 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 109 | # |
| 110 | # Example: |
| 111 | # Configure resource requests and limits |
| 112 | # ref: http://kubernetes.io/docs/user-guide/compute-resources/ |
| 113 | # Minimum memory for development is 2 CPU cores and 4GB memory |
| 114 | # Minimum memory for production is 4 CPU cores and 8GB memory |
Determe, Sebastien (sd378r) | d600a8d | 2018-06-01 11:27:49 +0200 | [diff] [blame] | 115 | resources: |
| 116 | limits: |
| 117 | cpu: 1 |
| 118 | memory: 1.2Gi |
| 119 | requests: |
| 120 | cpu: 10m |
| 121 | memory: 800Mi |