├── CONTRIBUTING.md ├── Cloudera CCLA_25APR2018.pdf ├── Cloudera ICLA_25APR2018.pdf ├── LICENSE.txt ├── NOTICE ├── README.md ├── application-properties ├── README.md └── application.properties ├── azure-bootstrap-scripts ├── README.md └── os-generic-bootstrap.sh ├── azure-dns-scripts ├── README.md ├── bind-dns-reset.sh ├── bind-dns-setup.sh ├── bootstrap_dns_dhclient.sh ├── bootstrap_dns_nm.sh ├── dhclient-exit-hooks └── dns-test.sh ├── azure-plugin-config ├── README.md ├── azure-plugin.conf └── images.conf ├── c6 ├── README.md └── hue-c6.sh ├── cm-script-dependency-installer └── cm-script-dependency-installer.sh ├── configs ├── aws.cdsw.conf ├── aws.ha.reference.conf ├── aws.reference.conf ├── aws.simple.conf ├── aws.simple_setup.conf ├── azure-os-generic-bootstrap.conf ├── azure.cdsw.conf ├── azure.kerberos.conf ├── azure.reference.conf ├── azure.simple.conf ├── azure.simple_setup.conf └── gcp.simple.conf ├── dispatch ├── README.md ├── dispatch.sh ├── job-example-script.sh ├── oozie-fs-job │ ├── job-example-script.sh │ └── workflow.xml └── sandbox.sample.conf ├── faster-bootstrap-azure ├── .gitignore ├── README.md ├── build-image.sh ├── credentials.json.example ├── files │ └── jce │ │ └── .gitignore ├── image-usage.md ├── packer-json │ └── rhel.json └── scripts │ ├── building │ └── base_images.sh │ └── provisioning │ ├── hue-c6.sh │ ├── internal │ └── .gitignore │ ├── parcel_provisioner.sh │ ├── resize_root_filesystem.sh │ ├── rewrite_root_disk_partition_table.sh │ ├── rhel_deprovision_image.sh │ ├── rhel_provisioner.sh │ ├── service_control.sh │ └── setup_unlimited_strength_jce.sh ├── faster-bootstrap-gcp ├── .gitignore ├── README.md ├── build-image.sh ├── config.json ├── files │ └── jce │ │ └── .gitignore ├── instance-usage.md ├── networking.json ├── notes.org ├── packer-json │ └── gcp.json ├── scripts │ ├── building │ │ ├── base_images.sh │ │ └── shellcheck-result.xml │ └── provisioning │ │ ├── hue-c6.sh │ │ ├── internal │ │ ├── .gitignore │ │ └── shellcheck-result.xml │ │ ├── parcel_provisioner.sh │ │ ├── rewrite_root_disk_partition_table.sh │ │ ├── rhel_destroy_ssh_host_keys.sh │ │ ├── rhel_provisioner.sh │ │ ├── service_control.sh │ │ ├── setup_unlimited_strength_jce.sh │ │ └── shellcheck-result.xml └── shellcheck-result.xml ├── faster-bootstrap ├── .gitignore ├── README.md ├── ami-usage.md ├── build-ami.sh ├── files │ └── jce │ │ └── .gitignore ├── packer-json │ └── rhel.json ├── scripts │ ├── building │ │ ├── base_amis_eu-central-1.sh │ │ ├── base_amis_us-east-1.sh │ │ ├── base_amis_us-east-2.sh │ │ ├── base_amis_us-west-1.sh │ │ ├── base_amis_us-west-2.sh │ │ └── shellcheck-result.xml │ └── provisioning │ │ ├── hue-c6.sh │ │ ├── internal │ │ ├── .gitignore │ │ └── shellcheck-result.xml │ │ ├── parcel_provisioner.sh │ │ ├── rewrite_root_disk_partition_table.sh │ │ ├── rhel_destroy_ssh_host_keys.sh │ │ ├── rhel_provisioner.sh │ │ ├── service_control.sh │ │ ├── setup_unlimited_strength_jce.sh │ │ └── shellcheck-result.xml └── shellcheck-result.xml ├── high-availability ├── README.md ├── aws.enableha.minimal.conf ├── aws.enableha.sample.conf ├── groovy │ └── enableHdfsHa.groovy └── python │ ├── enable-hdfs-ha.py │ └── requirements.txt ├── instanceNormalization.md ├── java8 ├── README.md └── java8-bootstrap-script.sh ├── kerberos ├── README.md ├── aws.kerberos.sample.conf ├── kerberize-cluster.py └── requirements.txt ├── preloaded-ami-builder └── README.md ├── sdx ├── README.md ├── sdx-altus-sample.conf ├── sdx-aws-sample.conf └── sdx-azure-sample.conf ├── setup-default ├── README.md ├── requirements.txt └── setup-default.py ├── tls ├── README.md ├── configure_cm_tls_level_0.sh ├── requirements-update-tls.d6.txt ├── requirements-update-tls.txt ├── update-tls.d6.py └── update-tls.py ├── transient-aws ├── README.md ├── hive-example │ ├── cluster_bare_amis.conf │ ├── cluster_preloaded_amis.conf │ ├── dispatch.sh │ ├── hive_job.sh │ ├── query.sql │ └── run_all.sh └── install_director.sh ├── usage-based-billing └── aws.usage-based-billing.sample.conf └── util └── update-deployment.py /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cloudera CCLA_25APR2018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/Cloudera CCLA_25APR2018.pdf -------------------------------------------------------------------------------- /Cloudera ICLA_25APR2018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/Cloudera ICLA_25APR2018.pdf -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/README.md -------------------------------------------------------------------------------- /application-properties/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/application-properties/README.md -------------------------------------------------------------------------------- /application-properties/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/application-properties/application.properties -------------------------------------------------------------------------------- /azure-bootstrap-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/azure-bootstrap-scripts/README.md -------------------------------------------------------------------------------- /azure-bootstrap-scripts/os-generic-bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/azure-bootstrap-scripts/os-generic-bootstrap.sh -------------------------------------------------------------------------------- /azure-dns-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/azure-dns-scripts/README.md -------------------------------------------------------------------------------- /azure-dns-scripts/bind-dns-reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/azure-dns-scripts/bind-dns-reset.sh -------------------------------------------------------------------------------- /azure-dns-scripts/bind-dns-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/azure-dns-scripts/bind-dns-setup.sh -------------------------------------------------------------------------------- /azure-dns-scripts/bootstrap_dns_dhclient.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/azure-dns-scripts/bootstrap_dns_dhclient.sh -------------------------------------------------------------------------------- /azure-dns-scripts/bootstrap_dns_nm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/azure-dns-scripts/bootstrap_dns_nm.sh -------------------------------------------------------------------------------- /azure-dns-scripts/dhclient-exit-hooks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/azure-dns-scripts/dhclient-exit-hooks -------------------------------------------------------------------------------- /azure-dns-scripts/dns-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/azure-dns-scripts/dns-test.sh -------------------------------------------------------------------------------- /azure-plugin-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/azure-plugin-config/README.md -------------------------------------------------------------------------------- /azure-plugin-config/azure-plugin.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/azure-plugin-config/azure-plugin.conf -------------------------------------------------------------------------------- /azure-plugin-config/images.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/azure-plugin-config/images.conf -------------------------------------------------------------------------------- /c6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/c6/README.md -------------------------------------------------------------------------------- /c6/hue-c6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/c6/hue-c6.sh -------------------------------------------------------------------------------- /cm-script-dependency-installer/cm-script-dependency-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/cm-script-dependency-installer/cm-script-dependency-installer.sh -------------------------------------------------------------------------------- /configs/aws.cdsw.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/configs/aws.cdsw.conf -------------------------------------------------------------------------------- /configs/aws.ha.reference.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/configs/aws.ha.reference.conf -------------------------------------------------------------------------------- /configs/aws.reference.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/configs/aws.reference.conf -------------------------------------------------------------------------------- /configs/aws.simple.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/configs/aws.simple.conf -------------------------------------------------------------------------------- /configs/aws.simple_setup.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/configs/aws.simple_setup.conf -------------------------------------------------------------------------------- /configs/azure-os-generic-bootstrap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/configs/azure-os-generic-bootstrap.conf -------------------------------------------------------------------------------- /configs/azure.cdsw.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/configs/azure.cdsw.conf -------------------------------------------------------------------------------- /configs/azure.kerberos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/configs/azure.kerberos.conf -------------------------------------------------------------------------------- /configs/azure.reference.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/configs/azure.reference.conf -------------------------------------------------------------------------------- /configs/azure.simple.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/configs/azure.simple.conf -------------------------------------------------------------------------------- /configs/azure.simple_setup.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/configs/azure.simple_setup.conf -------------------------------------------------------------------------------- /configs/gcp.simple.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/configs/gcp.simple.conf -------------------------------------------------------------------------------- /dispatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/dispatch/README.md -------------------------------------------------------------------------------- /dispatch/dispatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/dispatch/dispatch.sh -------------------------------------------------------------------------------- /dispatch/job-example-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/dispatch/job-example-script.sh -------------------------------------------------------------------------------- /dispatch/oozie-fs-job/job-example-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/dispatch/oozie-fs-job/job-example-script.sh -------------------------------------------------------------------------------- /dispatch/oozie-fs-job/workflow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/dispatch/oozie-fs-job/workflow.xml -------------------------------------------------------------------------------- /dispatch/sandbox.sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/dispatch/sandbox.sample.conf -------------------------------------------------------------------------------- /faster-bootstrap-azure/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-azure/.gitignore -------------------------------------------------------------------------------- /faster-bootstrap-azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-azure/README.md -------------------------------------------------------------------------------- /faster-bootstrap-azure/build-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-azure/build-image.sh -------------------------------------------------------------------------------- /faster-bootstrap-azure/credentials.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-azure/credentials.json.example -------------------------------------------------------------------------------- /faster-bootstrap-azure/files/jce/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | -------------------------------------------------------------------------------- /faster-bootstrap-azure/image-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-azure/image-usage.md -------------------------------------------------------------------------------- /faster-bootstrap-azure/packer-json/rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-azure/packer-json/rhel.json -------------------------------------------------------------------------------- /faster-bootstrap-azure/scripts/building/base_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-azure/scripts/building/base_images.sh -------------------------------------------------------------------------------- /faster-bootstrap-azure/scripts/provisioning/hue-c6.sh: -------------------------------------------------------------------------------- 1 | ../../../faster-bootstrap/scripts/provisioning/hue-c6.sh -------------------------------------------------------------------------------- /faster-bootstrap-azure/scripts/provisioning/internal/.gitignore: -------------------------------------------------------------------------------- 1 | *.sh 2 | -------------------------------------------------------------------------------- /faster-bootstrap-azure/scripts/provisioning/parcel_provisioner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-azure/scripts/provisioning/parcel_provisioner.sh -------------------------------------------------------------------------------- /faster-bootstrap-azure/scripts/provisioning/resize_root_filesystem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-azure/scripts/provisioning/resize_root_filesystem.sh -------------------------------------------------------------------------------- /faster-bootstrap-azure/scripts/provisioning/rewrite_root_disk_partition_table.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-azure/scripts/provisioning/rewrite_root_disk_partition_table.sh -------------------------------------------------------------------------------- /faster-bootstrap-azure/scripts/provisioning/rhel_deprovision_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-azure/scripts/provisioning/rhel_deprovision_image.sh -------------------------------------------------------------------------------- /faster-bootstrap-azure/scripts/provisioning/rhel_provisioner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-azure/scripts/provisioning/rhel_provisioner.sh -------------------------------------------------------------------------------- /faster-bootstrap-azure/scripts/provisioning/service_control.sh: -------------------------------------------------------------------------------- 1 | ../../../faster-bootstrap/scripts/provisioning/service_control.sh -------------------------------------------------------------------------------- /faster-bootstrap-azure/scripts/provisioning/setup_unlimited_strength_jce.sh: -------------------------------------------------------------------------------- 1 | ../../../faster-bootstrap/scripts/provisioning/setup_unlimited_strength_jce.sh -------------------------------------------------------------------------------- /faster-bootstrap-gcp/.gitignore: -------------------------------------------------------------------------------- 1 | packer_cache 2 | ??-*-[0-9].json 3 | -------------------------------------------------------------------------------- /faster-bootstrap-gcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-gcp/README.md -------------------------------------------------------------------------------- /faster-bootstrap-gcp/build-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-gcp/build-image.sh -------------------------------------------------------------------------------- /faster-bootstrap-gcp/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-gcp/config.json -------------------------------------------------------------------------------- /faster-bootstrap-gcp/files/jce/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | -------------------------------------------------------------------------------- /faster-bootstrap-gcp/instance-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-gcp/instance-usage.md -------------------------------------------------------------------------------- /faster-bootstrap-gcp/networking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-gcp/networking.json -------------------------------------------------------------------------------- /faster-bootstrap-gcp/notes.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-gcp/notes.org -------------------------------------------------------------------------------- /faster-bootstrap-gcp/packer-json/gcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-gcp/packer-json/gcp.json -------------------------------------------------------------------------------- /faster-bootstrap-gcp/scripts/building/base_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-gcp/scripts/building/base_images.sh -------------------------------------------------------------------------------- /faster-bootstrap-gcp/scripts/building/shellcheck-result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-gcp/scripts/building/shellcheck-result.xml -------------------------------------------------------------------------------- /faster-bootstrap-gcp/scripts/provisioning/hue-c6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-gcp/scripts/provisioning/hue-c6.sh -------------------------------------------------------------------------------- /faster-bootstrap-gcp/scripts/provisioning/internal/.gitignore: -------------------------------------------------------------------------------- 1 | *.sh 2 | -------------------------------------------------------------------------------- /faster-bootstrap-gcp/scripts/provisioning/internal/shellcheck-result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-gcp/scripts/provisioning/internal/shellcheck-result.xml -------------------------------------------------------------------------------- /faster-bootstrap-gcp/scripts/provisioning/parcel_provisioner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-gcp/scripts/provisioning/parcel_provisioner.sh -------------------------------------------------------------------------------- /faster-bootstrap-gcp/scripts/provisioning/rewrite_root_disk_partition_table.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-gcp/scripts/provisioning/rewrite_root_disk_partition_table.sh -------------------------------------------------------------------------------- /faster-bootstrap-gcp/scripts/provisioning/rhel_destroy_ssh_host_keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-gcp/scripts/provisioning/rhel_destroy_ssh_host_keys.sh -------------------------------------------------------------------------------- /faster-bootstrap-gcp/scripts/provisioning/rhel_provisioner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-gcp/scripts/provisioning/rhel_provisioner.sh -------------------------------------------------------------------------------- /faster-bootstrap-gcp/scripts/provisioning/service_control.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-gcp/scripts/provisioning/service_control.sh -------------------------------------------------------------------------------- /faster-bootstrap-gcp/scripts/provisioning/setup_unlimited_strength_jce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-gcp/scripts/provisioning/setup_unlimited_strength_jce.sh -------------------------------------------------------------------------------- /faster-bootstrap-gcp/scripts/provisioning/shellcheck-result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-gcp/scripts/provisioning/shellcheck-result.xml -------------------------------------------------------------------------------- /faster-bootstrap-gcp/shellcheck-result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap-gcp/shellcheck-result.xml -------------------------------------------------------------------------------- /faster-bootstrap/.gitignore: -------------------------------------------------------------------------------- 1 | packer_cache 2 | ??-*-[0-9].json 3 | -------------------------------------------------------------------------------- /faster-bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap/README.md -------------------------------------------------------------------------------- /faster-bootstrap/ami-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap/ami-usage.md -------------------------------------------------------------------------------- /faster-bootstrap/build-ami.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap/build-ami.sh -------------------------------------------------------------------------------- /faster-bootstrap/files/jce/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | -------------------------------------------------------------------------------- /faster-bootstrap/packer-json/rhel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap/packer-json/rhel.json -------------------------------------------------------------------------------- /faster-bootstrap/scripts/building/base_amis_eu-central-1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap/scripts/building/base_amis_eu-central-1.sh -------------------------------------------------------------------------------- /faster-bootstrap/scripts/building/base_amis_us-east-1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap/scripts/building/base_amis_us-east-1.sh -------------------------------------------------------------------------------- /faster-bootstrap/scripts/building/base_amis_us-east-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap/scripts/building/base_amis_us-east-2.sh -------------------------------------------------------------------------------- /faster-bootstrap/scripts/building/base_amis_us-west-1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap/scripts/building/base_amis_us-west-1.sh -------------------------------------------------------------------------------- /faster-bootstrap/scripts/building/base_amis_us-west-2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap/scripts/building/base_amis_us-west-2.sh -------------------------------------------------------------------------------- /faster-bootstrap/scripts/building/shellcheck-result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap/scripts/building/shellcheck-result.xml -------------------------------------------------------------------------------- /faster-bootstrap/scripts/provisioning/hue-c6.sh: -------------------------------------------------------------------------------- 1 | ../../../c6/hue-c6.sh -------------------------------------------------------------------------------- /faster-bootstrap/scripts/provisioning/internal/.gitignore: -------------------------------------------------------------------------------- 1 | *.sh 2 | -------------------------------------------------------------------------------- /faster-bootstrap/scripts/provisioning/internal/shellcheck-result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap/scripts/provisioning/internal/shellcheck-result.xml -------------------------------------------------------------------------------- /faster-bootstrap/scripts/provisioning/parcel_provisioner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap/scripts/provisioning/parcel_provisioner.sh -------------------------------------------------------------------------------- /faster-bootstrap/scripts/provisioning/rewrite_root_disk_partition_table.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap/scripts/provisioning/rewrite_root_disk_partition_table.sh -------------------------------------------------------------------------------- /faster-bootstrap/scripts/provisioning/rhel_destroy_ssh_host_keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap/scripts/provisioning/rhel_destroy_ssh_host_keys.sh -------------------------------------------------------------------------------- /faster-bootstrap/scripts/provisioning/rhel_provisioner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap/scripts/provisioning/rhel_provisioner.sh -------------------------------------------------------------------------------- /faster-bootstrap/scripts/provisioning/service_control.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap/scripts/provisioning/service_control.sh -------------------------------------------------------------------------------- /faster-bootstrap/scripts/provisioning/setup_unlimited_strength_jce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap/scripts/provisioning/setup_unlimited_strength_jce.sh -------------------------------------------------------------------------------- /faster-bootstrap/scripts/provisioning/shellcheck-result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap/scripts/provisioning/shellcheck-result.xml -------------------------------------------------------------------------------- /faster-bootstrap/shellcheck-result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/faster-bootstrap/shellcheck-result.xml -------------------------------------------------------------------------------- /high-availability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/high-availability/README.md -------------------------------------------------------------------------------- /high-availability/aws.enableha.minimal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/high-availability/aws.enableha.minimal.conf -------------------------------------------------------------------------------- /high-availability/aws.enableha.sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/high-availability/aws.enableha.sample.conf -------------------------------------------------------------------------------- /high-availability/groovy/enableHdfsHa.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/high-availability/groovy/enableHdfsHa.groovy -------------------------------------------------------------------------------- /high-availability/python/enable-hdfs-ha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/high-availability/python/enable-hdfs-ha.py -------------------------------------------------------------------------------- /high-availability/python/requirements.txt: -------------------------------------------------------------------------------- 1 | argparse; python_version < '2.7' 2 | cm-api==9.0.0 3 | retrying==1.3.3 4 | -------------------------------------------------------------------------------- /instanceNormalization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/instanceNormalization.md -------------------------------------------------------------------------------- /java8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/java8/README.md -------------------------------------------------------------------------------- /java8/java8-bootstrap-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/java8/java8-bootstrap-script.sh -------------------------------------------------------------------------------- /kerberos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/kerberos/README.md -------------------------------------------------------------------------------- /kerberos/aws.kerberos.sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/kerberos/aws.kerberos.sample.conf -------------------------------------------------------------------------------- /kerberos/kerberize-cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/kerberos/kerberize-cluster.py -------------------------------------------------------------------------------- /kerberos/requirements.txt: -------------------------------------------------------------------------------- 1 | argparse; python_version < '2.7' 2 | cm-api==9.0.0 3 | -------------------------------------------------------------------------------- /preloaded-ami-builder/README.md: -------------------------------------------------------------------------------- 1 | The preloaded AMI build scripts have been [moved](../faster-bootstrap/README.md). 2 | -------------------------------------------------------------------------------- /sdx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/sdx/README.md -------------------------------------------------------------------------------- /sdx/sdx-altus-sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/sdx/sdx-altus-sample.conf -------------------------------------------------------------------------------- /sdx/sdx-aws-sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/sdx/sdx-aws-sample.conf -------------------------------------------------------------------------------- /sdx/sdx-azure-sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/sdx/sdx-azure-sample.conf -------------------------------------------------------------------------------- /setup-default/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/setup-default/README.md -------------------------------------------------------------------------------- /setup-default/requirements.txt: -------------------------------------------------------------------------------- 1 | cloudera-director-python-client==6.3.0 2 | pyhocon==0.3.8 3 | -------------------------------------------------------------------------------- /setup-default/setup-default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/setup-default/setup-default.py -------------------------------------------------------------------------------- /tls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/tls/README.md -------------------------------------------------------------------------------- /tls/configure_cm_tls_level_0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/tls/configure_cm_tls_level_0.sh -------------------------------------------------------------------------------- /tls/requirements-update-tls.d6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/tls/requirements-update-tls.d6.txt -------------------------------------------------------------------------------- /tls/requirements-update-tls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/tls/requirements-update-tls.txt -------------------------------------------------------------------------------- /tls/update-tls.d6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/tls/update-tls.d6.py -------------------------------------------------------------------------------- /tls/update-tls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/tls/update-tls.py -------------------------------------------------------------------------------- /transient-aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/transient-aws/README.md -------------------------------------------------------------------------------- /transient-aws/hive-example/cluster_bare_amis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/transient-aws/hive-example/cluster_bare_amis.conf -------------------------------------------------------------------------------- /transient-aws/hive-example/cluster_preloaded_amis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/transient-aws/hive-example/cluster_preloaded_amis.conf -------------------------------------------------------------------------------- /transient-aws/hive-example/dispatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/transient-aws/hive-example/dispatch.sh -------------------------------------------------------------------------------- /transient-aws/hive-example/hive_job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/transient-aws/hive-example/hive_job.sh -------------------------------------------------------------------------------- /transient-aws/hive-example/query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/transient-aws/hive-example/query.sql -------------------------------------------------------------------------------- /transient-aws/hive-example/run_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/transient-aws/hive-example/run_all.sh -------------------------------------------------------------------------------- /transient-aws/install_director.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/transient-aws/install_director.sh -------------------------------------------------------------------------------- /usage-based-billing/aws.usage-based-billing.sample.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/usage-based-billing/aws.usage-based-billing.sample.conf -------------------------------------------------------------------------------- /util/update-deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera/director-scripts/HEAD/util/update-deployment.py --------------------------------------------------------------------------------