├── .gitattributes ├── .gitignore ├── README.md ├── aws └── cloudformation │ ├── README.md │ └── dremio_cf.yaml ├── azure └── arm-templates │ ├── README.md │ ├── azuredeploy.json │ ├── nested │ ├── dremioCluster.json │ └── dremioState.json │ └── scripts │ └── setupDremio.sh ├── charts ├── dremio │ ├── Chart.yaml │ ├── README.md │ ├── config │ │ ├── core-site.xml │ │ ├── dremio-env │ │ ├── dremio.conf │ │ ├── logback-access.xml │ │ ├── logback-admin.xml │ │ └── logback.xml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── dremio-admin.yaml │ │ ├── dremio-configmap.yaml │ │ ├── dremio-coordinator.yaml │ │ ├── dremio-executor.yaml │ │ ├── dremio-master.yaml │ │ ├── dremio-service-client.yaml │ │ └── zookeeper.yaml │ └── values.yaml └── dremio_v2 │ ├── Chart.yaml │ ├── README.md │ ├── config │ ├── core-site.xml │ ├── dremio-env │ ├── dremio.conf │ ├── hive2 │ │ └── README.md │ ├── hive3 │ │ └── README.md │ ├── logback-access.xml │ ├── logback-admin.xml │ └── logback.xml │ ├── docs │ ├── README.md │ ├── Values-Reference.md │ ├── administration │ │ ├── Dremio-Administration.md │ │ ├── Scaling-Coordinators-and-Executors.md │ │ ├── Upgrading-Dremio.md │ │ └── Viewing-Logs.md │ └── setup │ │ ├── Custom-Dremio-Image.md │ │ ├── Customizing-Dremio-Configuration.md │ │ ├── Dynamic-Executor-Auto-Scaling.md │ │ ├── Important-Setup-Considerations.md │ │ ├── Migrating-Helm-Chart-Versions.md │ │ ├── Setup-Hive-2-and-3.md │ │ └── Writing-Logs-To-A-File.md │ ├── templates │ ├── _helpers_coordinator.tpl │ ├── _helpers_executor.tpl │ ├── _helpers_general.tpl │ ├── _helpers_hpa.tpl │ ├── _helpers_zookeeper.tpl │ ├── dremio-admin.yaml │ ├── dremio-configmap.yaml │ ├── dremio-coordinator.yaml │ ├── dremio-executor-pod-monitor.yaml │ ├── dremio-executor.yaml │ ├── dremio-hpa.yaml │ ├── dremio-master.yaml │ ├── dremio-service-client.yaml │ └── zookeeper.yaml │ ├── tests │ ├── dremio-coordinator_test.yaml │ ├── dremio-executor-pod-monitor_test.yaml │ ├── dremio-executor_test.yaml │ └── dremio-hpa_test.yaml │ └── values.yaml ├── images └── dremio-oss │ ├── Dockerfile │ └── README.md └── utils ├── Dockerfile └── helm-init.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/README.md -------------------------------------------------------------------------------- /aws/cloudformation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/aws/cloudformation/README.md -------------------------------------------------------------------------------- /aws/cloudformation/dremio_cf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/aws/cloudformation/dremio_cf.yaml -------------------------------------------------------------------------------- /azure/arm-templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/azure/arm-templates/README.md -------------------------------------------------------------------------------- /azure/arm-templates/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/azure/arm-templates/azuredeploy.json -------------------------------------------------------------------------------- /azure/arm-templates/nested/dremioCluster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/azure/arm-templates/nested/dremioCluster.json -------------------------------------------------------------------------------- /azure/arm-templates/nested/dremioState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/azure/arm-templates/nested/dremioState.json -------------------------------------------------------------------------------- /azure/arm-templates/scripts/setupDremio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/azure/arm-templates/scripts/setupDremio.sh -------------------------------------------------------------------------------- /charts/dremio/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio/Chart.yaml -------------------------------------------------------------------------------- /charts/dremio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio/README.md -------------------------------------------------------------------------------- /charts/dremio/config/core-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio/config/core-site.xml -------------------------------------------------------------------------------- /charts/dremio/config/dremio-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio/config/dremio-env -------------------------------------------------------------------------------- /charts/dremio/config/dremio.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio/config/dremio.conf -------------------------------------------------------------------------------- /charts/dremio/config/logback-access.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio/config/logback-access.xml -------------------------------------------------------------------------------- /charts/dremio/config/logback-admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio/config/logback-admin.xml -------------------------------------------------------------------------------- /charts/dremio/config/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio/config/logback.xml -------------------------------------------------------------------------------- /charts/dremio/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/dremio/templates/dremio-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio/templates/dremio-admin.yaml -------------------------------------------------------------------------------- /charts/dremio/templates/dremio-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio/templates/dremio-configmap.yaml -------------------------------------------------------------------------------- /charts/dremio/templates/dremio-coordinator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio/templates/dremio-coordinator.yaml -------------------------------------------------------------------------------- /charts/dremio/templates/dremio-executor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio/templates/dremio-executor.yaml -------------------------------------------------------------------------------- /charts/dremio/templates/dremio-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio/templates/dremio-master.yaml -------------------------------------------------------------------------------- /charts/dremio/templates/dremio-service-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio/templates/dremio-service-client.yaml -------------------------------------------------------------------------------- /charts/dremio/templates/zookeeper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio/templates/zookeeper.yaml -------------------------------------------------------------------------------- /charts/dremio/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio/values.yaml -------------------------------------------------------------------------------- /charts/dremio_v2/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/Chart.yaml -------------------------------------------------------------------------------- /charts/dremio_v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/README.md -------------------------------------------------------------------------------- /charts/dremio_v2/config/core-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/config/core-site.xml -------------------------------------------------------------------------------- /charts/dremio_v2/config/dremio-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/config/dremio-env -------------------------------------------------------------------------------- /charts/dremio_v2/config/dremio.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/config/dremio.conf -------------------------------------------------------------------------------- /charts/dremio_v2/config/hive2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/config/hive2/README.md -------------------------------------------------------------------------------- /charts/dremio_v2/config/hive3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/config/hive3/README.md -------------------------------------------------------------------------------- /charts/dremio_v2/config/logback-access.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/config/logback-access.xml -------------------------------------------------------------------------------- /charts/dremio_v2/config/logback-admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/config/logback-admin.xml -------------------------------------------------------------------------------- /charts/dremio_v2/config/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/config/logback.xml -------------------------------------------------------------------------------- /charts/dremio_v2/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/docs/README.md -------------------------------------------------------------------------------- /charts/dremio_v2/docs/Values-Reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/docs/Values-Reference.md -------------------------------------------------------------------------------- /charts/dremio_v2/docs/administration/Dremio-Administration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/docs/administration/Dremio-Administration.md -------------------------------------------------------------------------------- /charts/dremio_v2/docs/administration/Scaling-Coordinators-and-Executors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/docs/administration/Scaling-Coordinators-and-Executors.md -------------------------------------------------------------------------------- /charts/dremio_v2/docs/administration/Upgrading-Dremio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/docs/administration/Upgrading-Dremio.md -------------------------------------------------------------------------------- /charts/dremio_v2/docs/administration/Viewing-Logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/docs/administration/Viewing-Logs.md -------------------------------------------------------------------------------- /charts/dremio_v2/docs/setup/Custom-Dremio-Image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/docs/setup/Custom-Dremio-Image.md -------------------------------------------------------------------------------- /charts/dremio_v2/docs/setup/Customizing-Dremio-Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/docs/setup/Customizing-Dremio-Configuration.md -------------------------------------------------------------------------------- /charts/dremio_v2/docs/setup/Dynamic-Executor-Auto-Scaling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/docs/setup/Dynamic-Executor-Auto-Scaling.md -------------------------------------------------------------------------------- /charts/dremio_v2/docs/setup/Important-Setup-Considerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/docs/setup/Important-Setup-Considerations.md -------------------------------------------------------------------------------- /charts/dremio_v2/docs/setup/Migrating-Helm-Chart-Versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/docs/setup/Migrating-Helm-Chart-Versions.md -------------------------------------------------------------------------------- /charts/dremio_v2/docs/setup/Setup-Hive-2-and-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/docs/setup/Setup-Hive-2-and-3.md -------------------------------------------------------------------------------- /charts/dremio_v2/docs/setup/Writing-Logs-To-A-File.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/docs/setup/Writing-Logs-To-A-File.md -------------------------------------------------------------------------------- /charts/dremio_v2/templates/_helpers_coordinator.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/templates/_helpers_coordinator.tpl -------------------------------------------------------------------------------- /charts/dremio_v2/templates/_helpers_executor.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/templates/_helpers_executor.tpl -------------------------------------------------------------------------------- /charts/dremio_v2/templates/_helpers_general.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/templates/_helpers_general.tpl -------------------------------------------------------------------------------- /charts/dremio_v2/templates/_helpers_hpa.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/templates/_helpers_hpa.tpl -------------------------------------------------------------------------------- /charts/dremio_v2/templates/_helpers_zookeeper.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/templates/_helpers_zookeeper.tpl -------------------------------------------------------------------------------- /charts/dremio_v2/templates/dremio-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/templates/dremio-admin.yaml -------------------------------------------------------------------------------- /charts/dremio_v2/templates/dremio-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/templates/dremio-configmap.yaml -------------------------------------------------------------------------------- /charts/dremio_v2/templates/dremio-coordinator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/templates/dremio-coordinator.yaml -------------------------------------------------------------------------------- /charts/dremio_v2/templates/dremio-executor-pod-monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/templates/dremio-executor-pod-monitor.yaml -------------------------------------------------------------------------------- /charts/dremio_v2/templates/dremio-executor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/templates/dremio-executor.yaml -------------------------------------------------------------------------------- /charts/dremio_v2/templates/dremio-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/templates/dremio-hpa.yaml -------------------------------------------------------------------------------- /charts/dremio_v2/templates/dremio-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/templates/dremio-master.yaml -------------------------------------------------------------------------------- /charts/dremio_v2/templates/dremio-service-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/templates/dremio-service-client.yaml -------------------------------------------------------------------------------- /charts/dremio_v2/templates/zookeeper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/templates/zookeeper.yaml -------------------------------------------------------------------------------- /charts/dremio_v2/tests/dremio-coordinator_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/tests/dremio-coordinator_test.yaml -------------------------------------------------------------------------------- /charts/dremio_v2/tests/dremio-executor-pod-monitor_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/tests/dremio-executor-pod-monitor_test.yaml -------------------------------------------------------------------------------- /charts/dremio_v2/tests/dremio-executor_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/tests/dremio-executor_test.yaml -------------------------------------------------------------------------------- /charts/dremio_v2/tests/dremio-hpa_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/tests/dremio-hpa_test.yaml -------------------------------------------------------------------------------- /charts/dremio_v2/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/charts/dremio_v2/values.yaml -------------------------------------------------------------------------------- /images/dremio-oss/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/images/dremio-oss/Dockerfile -------------------------------------------------------------------------------- /images/dremio-oss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/images/dremio-oss/README.md -------------------------------------------------------------------------------- /utils/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/utils/Dockerfile -------------------------------------------------------------------------------- /utils/helm-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dremio/dremio-cloud-tools/HEAD/utils/helm-init.sh --------------------------------------------------------------------------------