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 |
| 11 | repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ== |
| 12 | |
| 13 | # readiness check |
| 14 | readinessRepository: oomk8s |
BorislavG | 3d6f937 | 2018-04-15 11:55:39 +0000 | [diff] [blame] | 15 | readinessImage: readiness-check:2.0.0 |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 16 | |
| 17 | # logging agent |
| 18 | loggingRepository: docker.elastic.co |
| 19 | loggingImage: beats/filebeat:5.5.0 |
| 20 | |
| 21 | # image pull policy |
| 22 | pullPolicy: Always |
| 23 | |
| 24 | # default mount path root directory referenced |
| 25 | # by persistent volumes and log files |
| 26 | persistence: |
| 27 | mountPath: /dockerdata-nfs |
| 28 | |
| 29 | # flag to enable debugging - application support required |
| 30 | debugEnabled: true |
jmac | 4f76af4 | 2018-03-28 20:36:47 +0000 | [diff] [blame] | 31 | |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 32 | ################################################################# |
| 33 | # Application configuration defaults. |
| 34 | ################################################################# |
| 35 | # application image |
| 36 | repository: nexus3.onap.org:10001 |
jmac | 4f76af4 | 2018-03-28 20:36:47 +0000 | [diff] [blame] | 37 | image: onap/ccsdk-dgbuilder-image:0.2.1-SNAPSHOT |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 38 | pullPolicy: Always |
| 39 | |
| 40 | # flag to enable debugging - application support required |
| 41 | debugEnabled: false |
| 42 | |
| 43 | # application configuration |
| 44 | config: |
| 45 | dbRootPassword: openECOMP1.0 |
jmac | 4f76af4 | 2018-03-28 20:36:47 +0000 | [diff] [blame] | 46 | dbPodName: mysql-db |
| 47 | dbServiceName: sdnc-dbhost |
| 48 | |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 49 | |
| 50 | # default number of instances |
| 51 | replicaCount: 1 |
| 52 | |
| 53 | nodeSelector: {} |
| 54 | |
| 55 | affinity: {} |
| 56 | |
| 57 | # probe configuration parameters |
| 58 | liveness: |
| 59 | initialDelaySeconds: 10 |
| 60 | periodSeconds: 10 |
| 61 | # necessary to disable liveness probe when setting breakpoints |
| 62 | # in debugger so K8s doesn't restart unresponsive container |
| 63 | enabled: true |
| 64 | |
| 65 | readiness: |
| 66 | initialDelaySeconds: 10 |
| 67 | periodSeconds: 10 |
| 68 | |
| 69 | service: |
| 70 | type: NodePort |
| 71 | name: dgbuilder |
BorislavG | 1ffbd99 | 2018-04-24 07:56:27 +0000 | [diff] [blame^] | 72 | portName: dgbuilder |
Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 73 | externalPort: 3000 |
| 74 | internalPort: 3100 |
| 75 | nodePort: 28 |
| 76 | |
| 77 | ingress: |
| 78 | enabled: false |
| 79 | |
| 80 | resources: {} |
| 81 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 82 | # choice for the user. This also increases chances charts run on environments with little |
| 83 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 84 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 85 | # |
| 86 | # Example: |
| 87 | # Configure resource requests and limits |
| 88 | # ref: http://kubernetes.io/docs/user-guide/compute-resources/ |
| 89 | # Minimum memory for development is 2 CPU cores and 4GB memory |
| 90 | # Minimum memory for production is 4 CPU cores and 8GB memory |
| 91 | #resources: |
| 92 | # limits: |
| 93 | # cpu: 2 |
| 94 | # memory: 4Gi |
| 95 | # requests: |
| 96 | # cpu: 2 |
| 97 | # memory: 4Gi |