Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 1 | # Global configuration default values that can be inherited by |
| 2 | # all subcharts. |
| 3 | ################################################################# |
| 4 | global: |
| 5 | # Change to an unused port prefix range to prevent port conflicts |
| 6 | # with other instances running within the same k8s cluster |
| 7 | nodePortPrefix: 302 |
| 8 | |
| 9 | # image repositories |
| 10 | repository: nexus3.onap.org:10001 |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 11 | |
| 12 | # readiness check |
| 13 | readinessRepository: oomk8s |
BorislavG | 3d6f937 | 2018-04-15 11:55:39 +0000 | [diff] [blame] | 14 | readinessImage: readiness-check:2.0.0 |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 15 | |
| 16 | # logging agent |
| 17 | loggingRepository: docker.elastic.co |
| 18 | loggingImage: beats/filebeat:5.5.0 |
| 19 | |
| 20 | # image pull policy |
| 21 | pullPolicy: Always |
| 22 | |
| 23 | # default mount path root directory referenced |
| 24 | # by persistent volumes and log files |
| 25 | persistence: |
| 26 | mountPath: /dockerdata-nfs |
| 27 | |
| 28 | # flag to enable debugging - application support required |
| 29 | debugEnabled: true |
jmac | 4f76af4 | 2018-03-28 20:36:47 +0000 | [diff] [blame] | 30 | |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 31 | ################################################################# |
| 32 | # Application configuration defaults. |
| 33 | ################################################################# |
| 34 | # application image |
| 35 | repository: nexus3.onap.org:10001 |
Michael O'Brien | d769fd1 | 2018-05-07 13:45:58 -0400 | [diff] [blame] | 36 | image: onap/ccsdk-dgbuilder-image:0.2-STAGING-latest |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 37 | pullPolicy: Always |
| 38 | |
| 39 | # flag to enable debugging - application support required |
| 40 | debugEnabled: false |
| 41 | |
| 42 | # application configuration |
| 43 | config: |
| 44 | dbRootPassword: openECOMP1.0 |
jmac | 4f76af4 | 2018-03-28 20:36:47 +0000 | [diff] [blame] | 45 | dbPodName: mysql-db |
| 46 | dbServiceName: sdnc-dbhost |
| 47 | |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 48 | |
| 49 | # default number of instances |
| 50 | replicaCount: 1 |
| 51 | |
| 52 | nodeSelector: {} |
| 53 | |
| 54 | affinity: {} |
| 55 | |
| 56 | # probe configuration parameters |
| 57 | liveness: |
| 58 | initialDelaySeconds: 10 |
| 59 | periodSeconds: 10 |
| 60 | # necessary to disable liveness probe when setting breakpoints |
| 61 | # in debugger so K8s doesn't restart unresponsive container |
| 62 | enabled: true |
| 63 | |
| 64 | readiness: |
| 65 | initialDelaySeconds: 10 |
| 66 | periodSeconds: 10 |
| 67 | |
| 68 | service: |
| 69 | type: NodePort |
| 70 | name: dgbuilder |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame] | 71 | portName: dgbuilder |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 72 | externalPort: 3000 |
| 73 | internalPort: 3100 |
| 74 | nodePort: 28 |
| 75 | |
| 76 | ingress: |
| 77 | enabled: false |
| 78 | |
| 79 | resources: {} |
| 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 |
| 90 | #resources: |
| 91 | # limits: |
| 92 | # cpu: 2 |
| 93 | # memory: 4Gi |
| 94 | # requests: |
| 95 | # cpu: 2 |
| 96 | # memory: 4Gi |