diff options
author | Kate Hsuan <kate.hsuan@qct.io> | 2020-02-24 06:21:17 +0000 |
---|---|---|
committer | Kate Hsuan <kate.hsuan@qct.io> | 2020-02-24 06:21:17 +0000 |
commit | fdbe7434b8d9287223bc642cb5413f5eb0ed90d8 (patch) | |
tree | 915865251fbd98954a8aa2796ded6a18c9e2139e /components/datalake-handler/dpo/datalake_spec.json | |
parent | 06d595819918da57b6ce3ffeb9346c7913f2c66b (diff) |
Helm and blueprint implementation of datalake
1. Deployment Helm chart.
2. helm plugin based cloudify blueprints.
3. fix pom.xml and directory location for CI.
Issue-ID: DCAEGEN2-2008
Signed-off-by: Kate Hsuan <kate.hsuan@qct.io>
Change-Id: If24524576e72392b66ff556237154922b213a29b
Diffstat (limited to 'components/datalake-handler/dpo/datalake_spec.json')
-rw-r--r-- | components/datalake-handler/dpo/datalake_spec.json | 147 |
1 files changed, 147 insertions, 0 deletions
diff --git a/components/datalake-handler/dpo/datalake_spec.json b/components/datalake-handler/dpo/datalake_spec.json new file mode 100644 index 00000000..d0e8c38d --- /dev/null +++ b/components/datalake-handler/dpo/datalake_spec.json @@ -0,0 +1,147 @@ +{ + "self": { + "name": "docker.datalake", + "version": "1.0.0", + "description": "Datalake Docker", + "component_type": "docker" + }, + "streams": { + "subscribes": [ + + ], + "publishes": [ + + ] + }, + "services": { + "calls": [ + ], + "provides": [] + }, + "auxilary": { + "healthcheck": { + "type": "http", + "interval": "30s", + "timeout": "10s", + "endpoint": "actuator/health" + } + }, + "artifacts": [ + { + "uri": "registry.hub.docker.com/mizunoami123/datalake-feeder", + "type": "docker image" + } + ], + "parameters": [ + { + "name": "spring.datasource.url", + "value": "jdbc:mariadb://dl-mariadb:3306/datalake?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8", + "description": "Maria DB URL", + "designer_editable": true, + "sourced_at_deployment": false, + "policy_editable": false, + "type": "string", + "required": true + }, + { + "name": "spring.datasource.username", + "value": "dl", + "description": "Maria DB User name", + "designer_editable": true, + "sourced_at_deployment": false, + "policy_editable": false, + "type": "string", + "required": false + }, + { + "name": "spring.datasource.password", + "value": "dl1234", + "description": "Maria DB User name", + "designer_editable": true, + "sourced_at_deployment": false, + "policy_editable": false, + "type": "string", + "required": false + }, + { + "name": "dmaapZookeeperHostPort", + "value": "message-router-zookeeper:2181", + "description": "DMaaP zookeeper URL fqdn:port", + "designer_editable": true, + "sourced_at_deployment": false, + "policy_editable": false, + "type": "string", + "required": true + }, + { + "name": "dmaapKafkaHostPort", + "value": "message-router-kafka:9092", + "description": "Kafka URL fqdn:9092", + "designer_editable": true, + "sourced_at_deployment": false, + "policy_editable": false, + "type": "string", + "required": true + }, + { + "name": "dmaapKafkaGroup", + "value": "dlgroup44", + "description": "Kafka group name", + "designer_editable": true, + "sourced_at_deployment": false, + "policy_editable": false, + "type": "string", + "required": true + }, + { + "name": "couchbaseURL", + "value": "172.30.1.74:8093", + "description": "Couchbase URL fqdn:port", + "designer_editable": true, + "sourced_at_deployment": false, + "policy_editable": false, + "type": "string", + "required": true + }, + { + "name": "mariadbURL", + "value": "172.30.1.74:3306", + "description": "MariaDB URL fqdn:port", + "designer_editable": true, + "sourced_at_deployment": false, + "policy_editable": false, + "type": "string", + "required": true + }, + { + "name": "mongoDBURL", + "value": "172.30.1.74:27017", + "description": "MongoDB URL fqdn:port", + "designer_editable": true, + "sourced_at_deployment": false, + "policy_editable": false, + "type": "string", + "required": true + }, + { + "name": "hdfsURL", + "value": "172.30.1.74:8020", + "description": "HDFS URL fqdn:port", + "designer_editable": true, + "sourced_at_deployment": false, + "policy_editable": false, + "type": "string", + "required": true + }, + { + "name": "esURL", + "value": "172.30.1.74:9200", + "description": "Elasticsearch URL fqdn:port", + "designer_editable": true, + "sourced_at_deployment": false, + "policy_editable": false, + "type": "string", + "required": true + } + ] +} |