vaibhavjayas | ea9aee0 | 2018-08-31 06:22:26 +0000 | [diff] [blame] | 1 | # Copyright © 2018 AT&T, 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 | |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 15 | # Global configuration default values that can be inherited by |
| 16 | # all subcharts. |
| 17 | ################################################################# |
| 18 | global: |
| 19 | # Change to an unused port prefix range to prevent port conflicts |
| 20 | # with other instances running within the same k8s cluster |
| 21 | nodePortPrefix: 302 |
| 22 | |
| 23 | # image repositories |
| 24 | repository: nexus3.onap.org:10001 |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 25 | |
| 26 | # readiness check |
| 27 | readinessRepository: oomk8s |
BorislavG | 3d6f937 | 2018-04-15 11:55:39 +0000 | [diff] [blame] | 28 | readinessImage: readiness-check:2.0.0 |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 29 | |
| 30 | # logging agent |
| 31 | loggingRepository: docker.elastic.co |
| 32 | loggingImage: beats/filebeat:5.5.0 |
| 33 | |
| 34 | # image pull policy |
| 35 | pullPolicy: Always |
| 36 | |
| 37 | # default mount path root directory referenced |
| 38 | # by persistent volumes and log files |
| 39 | persistence: |
| 40 | mountPath: /dockerdata-nfs |
| 41 | |
| 42 | # flag to enable debugging - application support required |
| 43 | debugEnabled: true |
jmac | 4f76af4 | 2018-03-28 20:36:47 +0000 | [diff] [blame] | 44 | |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 45 | ################################################################# |
| 46 | # Application configuration defaults. |
| 47 | ################################################################# |
| 48 | # application image |
| 49 | repository: nexus3.onap.org:10001 |
Gary Wu | 6516dc4 | 2019-01-16 17:37:13 -0800 | [diff] [blame^] | 50 | image: onap/ccsdk-dgbuilder-image:0.3.3 |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 51 | pullPolicy: Always |
| 52 | |
| 53 | # flag to enable debugging - application support required |
| 54 | debugEnabled: false |
| 55 | |
| 56 | # application configuration |
| 57 | config: |
| 58 | dbRootPassword: openECOMP1.0 |
jmac | 70863e1 | 2018-05-16 14:53:03 +0000 | [diff] [blame] | 59 | dbSdnctlPassword: gamma |
jmac | 4f76af4 | 2018-03-28 20:36:47 +0000 | [diff] [blame] | 60 | dbPodName: mysql-db |
| 61 | dbServiceName: sdnc-dbhost |
jmac | 70863e1 | 2018-05-16 14:53:03 +0000 | [diff] [blame] | 62 | # MD5 hash of dguser password ( default: test123 ) |
| 63 | dgUserPassword: cc03e747a6afbbcbf8be7668acfebee5 |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 64 | |
| 65 | # default number of instances |
| 66 | replicaCount: 1 |
| 67 | |
| 68 | nodeSelector: {} |
| 69 | |
| 70 | affinity: {} |
| 71 | |
| 72 | # probe configuration parameters |
| 73 | liveness: |
| 74 | initialDelaySeconds: 10 |
| 75 | periodSeconds: 10 |
| 76 | # necessary to disable liveness probe when setting breakpoints |
| 77 | # in debugger so K8s doesn't restart unresponsive container |
| 78 | enabled: true |
| 79 | |
| 80 | readiness: |
| 81 | initialDelaySeconds: 10 |
| 82 | periodSeconds: 10 |
| 83 | |
| 84 | service: |
| 85 | type: NodePort |
| 86 | name: dgbuilder |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 87 | portName: dgbuilder |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 88 | externalPort: 3000 |
| 89 | internalPort: 3100 |
| 90 | nodePort: 28 |
| 91 | |
| 92 | ingress: |
| 93 | enabled: false |
| 94 | |
| 95 | resources: {} |
| 96 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 97 | # choice for the user. This also increases chances charts run on environments with little |
| 98 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 99 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 100 | # |
| 101 | # Example: |
| 102 | # Configure resource requests and limits |
| 103 | # ref: http://kubernetes.io/docs/user-guide/compute-resources/ |
| 104 | # Minimum memory for development is 2 CPU cores and 4GB memory |
| 105 | # Minimum memory for production is 4 CPU cores and 8GB memory |
| 106 | #resources: |
| 107 | # limits: |
| 108 | # cpu: 2 |
| 109 | # memory: 4Gi |
| 110 | # requests: |
| 111 | # cpu: 2 |
| 112 | # memory: 4Gi |