├── CHANGELOG.md ├── README.md ├── k8s ├── README.md ├── TESTING.md ├── devicehive-cassandra-plugin │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── secret.yaml │ └── values.yaml └── devicehive │ ├── Chart.yaml │ ├── requirements.lock │ ├── requirements.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── devicehive-role.yaml │ ├── devicehive-rolebinding.yaml │ ├── devicehive-serviceaccount.yaml │ ├── dh-auth-deployment.yaml │ ├── dh-auth-service.yaml │ ├── dh-backend-deployment.yaml │ ├── dh-backend-node-deployment.yaml │ ├── dh-frontend-deployment.yaml │ ├── dh-frontend-service.yaml │ ├── dh-hazelcast-deployment.yaml │ ├── dh-hazelcast-service.yaml │ ├── dh-plugin-deployment.yaml │ ├── dh-plugin-service.yaml │ ├── dh-proxy-deployment.yaml │ ├── dh-proxy-ingress.yaml │ ├── dh-proxy-locations-configmap.yaml │ ├── dh-proxy-service.yaml │ ├── dh-proxy-upstreams-configmap.yaml │ ├── ingress.yaml │ ├── jwt-secret.yaml │ ├── mqtt-broker-deployment.yaml │ ├── mqtt-broker-service.yaml │ ├── ws-proxy-external-deployment.yaml │ ├── ws-proxy-external-service.yaml │ ├── ws-proxy-internal-deployment.yaml │ └── ws-proxy-internal-service.yaml │ └── values.yaml ├── rdbms-image ├── .gitignore ├── README.md ├── UPDATING.md ├── cadvisor.yml ├── ci-images.yml ├── dev-proxy.yml ├── dev-rpc.yml ├── devicehive-metrics.yml ├── dh_plugin-ci-image.yml ├── dh_plugin.yml ├── dh_proxy_custom_certificate.yml ├── docker-compose-node.yml ├── docker-compose.yml ├── env_default ├── grafana_location.conf ├── hazelcast-management-center.yml ├── hazelcast.xml ├── jmx-remote.yml ├── lib │ ├── jmx_prometheus_javaagent-0.3.0.jar │ ├── kafka-0-8-2.yml │ └── monitoring │ │ ├── devicehive-dashboard.json │ │ ├── grafana-dashboards-config.yaml │ │ ├── grafana-datasources-config.yaml │ │ └── prometheus.yml ├── monitoring.yml ├── mqtt-brokers.yml ├── nginx-mqtt-brokers.conf └── tests │ └── localhost_cert.tar.gz └── releasing.md /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/README.md -------------------------------------------------------------------------------- /k8s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/README.md -------------------------------------------------------------------------------- /k8s/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/TESTING.md -------------------------------------------------------------------------------- /k8s/devicehive-cassandra-plugin/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive-cassandra-plugin/.helmignore -------------------------------------------------------------------------------- /k8s/devicehive-cassandra-plugin/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive-cassandra-plugin/Chart.yaml -------------------------------------------------------------------------------- /k8s/devicehive-cassandra-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive-cassandra-plugin/README.md -------------------------------------------------------------------------------- /k8s/devicehive-cassandra-plugin/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive-cassandra-plugin/templates/_helpers.tpl -------------------------------------------------------------------------------- /k8s/devicehive-cassandra-plugin/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive-cassandra-plugin/templates/deployment.yaml -------------------------------------------------------------------------------- /k8s/devicehive-cassandra-plugin/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive-cassandra-plugin/templates/secret.yaml -------------------------------------------------------------------------------- /k8s/devicehive-cassandra-plugin/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive-cassandra-plugin/values.yaml -------------------------------------------------------------------------------- /k8s/devicehive/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/Chart.yaml -------------------------------------------------------------------------------- /k8s/devicehive/requirements.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/requirements.lock -------------------------------------------------------------------------------- /k8s/devicehive/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/requirements.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/NOTES.txt -------------------------------------------------------------------------------- /k8s/devicehive/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/_helpers.tpl -------------------------------------------------------------------------------- /k8s/devicehive/templates/devicehive-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/devicehive-role.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/devicehive-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/devicehive-rolebinding.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/devicehive-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/devicehive-serviceaccount.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/dh-auth-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/dh-auth-deployment.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/dh-auth-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/dh-auth-service.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/dh-backend-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/dh-backend-deployment.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/dh-backend-node-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/dh-backend-node-deployment.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/dh-frontend-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/dh-frontend-deployment.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/dh-frontend-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/dh-frontend-service.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/dh-hazelcast-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/dh-hazelcast-deployment.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/dh-hazelcast-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/dh-hazelcast-service.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/dh-plugin-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/dh-plugin-deployment.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/dh-plugin-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/dh-plugin-service.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/dh-proxy-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/dh-proxy-deployment.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/dh-proxy-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/dh-proxy-ingress.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/dh-proxy-locations-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/dh-proxy-locations-configmap.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/dh-proxy-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/dh-proxy-service.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/dh-proxy-upstreams-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/dh-proxy-upstreams-configmap.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/ingress.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/jwt-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/jwt-secret.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/mqtt-broker-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/mqtt-broker-deployment.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/mqtt-broker-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/mqtt-broker-service.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/ws-proxy-external-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/ws-proxy-external-deployment.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/ws-proxy-external-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/ws-proxy-external-service.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/ws-proxy-internal-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/ws-proxy-internal-deployment.yaml -------------------------------------------------------------------------------- /k8s/devicehive/templates/ws-proxy-internal-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/templates/ws-proxy-internal-service.yaml -------------------------------------------------------------------------------- /k8s/devicehive/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/k8s/devicehive/values.yaml -------------------------------------------------------------------------------- /rdbms-image/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/.gitignore -------------------------------------------------------------------------------- /rdbms-image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/README.md -------------------------------------------------------------------------------- /rdbms-image/UPDATING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/UPDATING.md -------------------------------------------------------------------------------- /rdbms-image/cadvisor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/cadvisor.yml -------------------------------------------------------------------------------- /rdbms-image/ci-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/ci-images.yml -------------------------------------------------------------------------------- /rdbms-image/dev-proxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/dev-proxy.yml -------------------------------------------------------------------------------- /rdbms-image/dev-rpc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/dev-rpc.yml -------------------------------------------------------------------------------- /rdbms-image/devicehive-metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/devicehive-metrics.yml -------------------------------------------------------------------------------- /rdbms-image/dh_plugin-ci-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/dh_plugin-ci-image.yml -------------------------------------------------------------------------------- /rdbms-image/dh_plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/dh_plugin.yml -------------------------------------------------------------------------------- /rdbms-image/dh_proxy_custom_certificate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/dh_proxy_custom_certificate.yml -------------------------------------------------------------------------------- /rdbms-image/docker-compose-node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/docker-compose-node.yml -------------------------------------------------------------------------------- /rdbms-image/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/docker-compose.yml -------------------------------------------------------------------------------- /rdbms-image/env_default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/env_default -------------------------------------------------------------------------------- /rdbms-image/grafana_location.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/grafana_location.conf -------------------------------------------------------------------------------- /rdbms-image/hazelcast-management-center.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/hazelcast-management-center.yml -------------------------------------------------------------------------------- /rdbms-image/hazelcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/hazelcast.xml -------------------------------------------------------------------------------- /rdbms-image/jmx-remote.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/jmx-remote.yml -------------------------------------------------------------------------------- /rdbms-image/lib/jmx_prometheus_javaagent-0.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/lib/jmx_prometheus_javaagent-0.3.0.jar -------------------------------------------------------------------------------- /rdbms-image/lib/kafka-0-8-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/lib/kafka-0-8-2.yml -------------------------------------------------------------------------------- /rdbms-image/lib/monitoring/devicehive-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/lib/monitoring/devicehive-dashboard.json -------------------------------------------------------------------------------- /rdbms-image/lib/monitoring/grafana-dashboards-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/lib/monitoring/grafana-dashboards-config.yaml -------------------------------------------------------------------------------- /rdbms-image/lib/monitoring/grafana-datasources-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/lib/monitoring/grafana-datasources-config.yaml -------------------------------------------------------------------------------- /rdbms-image/lib/monitoring/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/lib/monitoring/prometheus.yml -------------------------------------------------------------------------------- /rdbms-image/monitoring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/monitoring.yml -------------------------------------------------------------------------------- /rdbms-image/mqtt-brokers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/mqtt-brokers.yml -------------------------------------------------------------------------------- /rdbms-image/nginx-mqtt-brokers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/nginx-mqtt-brokers.conf -------------------------------------------------------------------------------- /rdbms-image/tests/localhost_cert.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/rdbms-image/tests/localhost_cert.tar.gz -------------------------------------------------------------------------------- /releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devicehive/devicehive-docker/HEAD/releasing.md --------------------------------------------------------------------------------