| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- image:
- registry: "gethue"
- tag: "latest"
- pullPolicy: "IfNotPresent"
- hue:
- replicas: 1
- database:
- create: true
- persist: true
- engine: "postgresql_psycopg2"
- host: "hue-postgres"
- port: 5432
- user: "hue"
- password: "hue"
- name: "hue"
- interpreters: |
- [[[impala]]]
- name=Impala
- interface=hiveserver2
- [[[mysql]]]
- name = MySQL
- interface=sqlalchemy
- options='{"url": "mysql://hue:datasshue@romain2:3306/hue"}'
- [[[postgresql]]]
- name = postgresql
- interface=sqlalchemy
- options='{"url": "postgresql://hue:hue@hue-postgres:5432/hue"}'
- ini: |
- [desktop]
- app_blacklist=filebrowser,search,hbase,security,jobbrowser,metastore
- django_debug_mode=true
- use_cherrypy_server=false
- gunicorn_work_class=gevent
- [[task_server]]
- enabled=true
- broker_url=redis://redis:6379/0
- result_cache='{"BACKEND": "django_redis.cache.RedisCache", "LOCATION": "redis://redis:6379/0", "OPTIONS": {"CLIENT_CLASS": "django_redis.client.DefaultClient"},"KEY_PREFIX": "queries"}'
- celery_result_backend=redis://redis:6379/0
-
- [impala]
- server_host=172.31.114.171
- [dashboard]
- is_enabled=false
- has_sql_enabled=false
- [notebook]
- show_notebooks=false
- [hadoop]
- balancer:
- enabled: true
- workers:
- enabled: true
- replicas: 1
- scheduler:
- enabled: true
- aws:
- accessKeyId: ""
- secretAccessKey: ""
- region: "us-east-1"
- ingress:
- create: false
- type: "nginx-ssl"
- domain: "demo.gethue.com"
- email: "team@gethue.com"
- # type: "nginx"
- # type: "traefik"
- loadBalancerIp: "127.0.0.1"
- domain: "127.0.0.1.nip.io"
|