| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- image:
- registry: "gethue"
- tag: "latest"
- pullPolicy: "IfNotPresent"
- hue:
- replicas: 1
- database:
- create: true
- persist: true
- engine: "postgresql_psycopg2"
- host: "postgres-hue"
- 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@postgres-hue:5432/hue"}'
- ini: |
- [desktop]
- app_blacklist=filebrowser,search,hbase,security,jobbrowser,metastore
- django_debug_mode=true
- use_cherrypy_server=true
- gunicorn_work_class=gevent
- enable_prometheus=true
- [[task_server]]
- enabled=false
- 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: false
- replicas: 1
- scheduler:
- enabled: false
- cron:
- emailStats: "0 13 * * WED,SUN"
- aws:
- accessKeyId: ""
- secretAccessKey: ""
- region: "us-east-1"
- ingress:
- create: false
- # type: "nginx-ssl"
- type: "nginx"
- # type: "traefik"
- domain: "demo.gethue.com"
- email: "team@gethue.com"
- loadBalancerIp: "127.0.0.1"
- monitoring:
- enabled: true
|