ansible-role-hadoop-cdh/defaults/main.yml

71 lines
2.7 KiB
YAML

---
cdh_manager_install: False
cdh_letsencrypt_acme_install: True
cdh_major_version: 5
cdh_release_version: '16.2'
cdh_version: '{{ cdh_major_version }}.{{ cdh_release_version }}'
#cdh_manager_repo: 'deb https://archive.cloudera.com/cm5/ubuntu/trusty/amd64/cm/dists/trusty-cm{{ cdh_version }}/'
cdh_ubuntu_repo_key: 'http://archive.cloudera.com/cm5/ubuntu/xenial/amd64/cm/archive.key'
cdh_ubuntu_packages_repo: 'deb [arch=amd64] http://archive.cloudera.com/cm5/ubuntu/xenial/amd64/cm xenial-cm5 contrib'
cdh_ubuntu_manager_repo_url: 'https://archive.cloudera.com/cdh5/ubuntu/xenial/amd64/cdh/cloudera.list'
#cdh_manager_download_url: 'http://archive.cloudera.com/cm5/installer/5.9.3/cloudera-manager-installer.bin'
cdh_centos_repo_url: 'https://archive.cloudera.com/cm5/redhat/7/x86_64/cm/cloudera-manager.repo'
cdh_csd_directory: /opt/cloudera/csd
cdh_el_firewalld_ports:
- { port: '1-65535', protocol: 'tcp', state: 'enabled', zone: '{{ firewalld_default_zone }}' }
- { port: '1-65535', protocol: 'udp', state: 'enabled', zone: '{{ firewalld_default_zone }}' }
cdh_cm_deb_packages:
- 'cloudera-manager-server'
- 'cloudera-manager-daemons'
- 'postgresql-client'
cdh_cm_el_packages:
- 'cloudera-manager-server'
- 'postgresql'
cdh_agent_packages:
- 'cloudera-manager-agent'
- 'cloudera-manager-daemons'
# Set it to true on the oozie server nodes
cdh_oozie_server: False
cdh_oozie_ext_libs_url: 'https://archive.cloudera.com/gplextras/misc/ext-2.2.zip'
cdh_impala_haproxy: False
cdh_cmf_server_args: ''
cdh_cmf_heap: '4G'
cdh_cmf_java_opts: '-Xmx{{ cdh_cmf_heap }} -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/tmp'
cdh_cmf_jdbc_pg_driver: '/srv/postgresql-jdbc.jar'
cdh_use_separate_postgres_db: True
cdh_postgres_db_host: localhost
cdh_postgres_db_name: cdh
cdh_postgres_db_user: cdh
cdh_postgres_db_schema: cdh
cdh_postgresql_version: 10
postgresql_jdbc_driver_version: 42.2.14
# Cloudera Manager is reachable via a nginx reverse proxy. See the vars file
https_allowed_hosts:
- '0.0.0.0/0'
###
# Spark2: the installation is completely manual, see
# https://www.cloudera.com/documentation/spark2/latest/topics/spark2_installing.html
#
# To integrate spark2 and oozie:
# https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.6.0/bk_spark-component-guide/content/ch_oozie-spark-action.html#spark-config-oozie-spark2
# https://community.cloudera.com/t5/Advanced-Analytics-Apache-Spark/Spark2-classpath-issues-with-Oozie/td-p/59782
cdh_spark2_enabled: True
cdh_spark2_jar: SPARK2_ON_YARN-2.4.0.cloudera2.jar
cdh_spark2_csd_url: 'http://archive.cloudera.com/spark2/csd/{{ cdh_spark2_jar }}'
cdh_impala_load_balancer: False
http_port: '{{ cdh_http_port }}'
https_port: '{{ cdh_https_port }}'
nginx_virthosts: '{{ cdh_nginx_virthosts }}'