values.yaml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. image:
  2. registry: "gethue"
  3. tag: "latest"
  4. pullPolicy: "IfNotPresent"
  5. hue:
  6. replicas: 1
  7. database:
  8. create: true
  9. engine: "postgresql_psycopg2"
  10. host: "hue-postgres"
  11. port: 5432
  12. user: "hue"
  13. password: "hue"
  14. name: "hue"
  15. interpreters: |
  16. [[[impala]]]
  17. name=Impala
  18. interface=hiveserver2
  19. [[[mysql]]]
  20. name = MySQL
  21. interface=sqlalchemy
  22. options='{"url": "mysql://hue:datasshue@romain2:3306/hue"}'
  23. [[[postgresql]]]
  24. name = postgresql
  25. interface=sqlalchemy
  26. options='{"url": "postgresql://hue:hue@hue-postgres:5432/hue"}'
  27. ini: |
  28. [desktop]
  29. app_blacklist=filebrowser,search,hbase,security,jobbrowser,metastore
  30. django_debug_mode=true
  31. [[task_server]]
  32. enabled=true
  33. ## broker_url=amqp://guest:guest@127.0.0.1//
  34. broker_url=redis://redis:6379/0
  35. result_cache='{"BACKEND": "django_redis.cache.RedisCache", "LOCATION": "redis://redis:6379/0", "OPTIONS": {"CLIENT_CLASS": "django_redis.client.DefaultClient"},"KEY_PREFIX": "queries"}'
  36. [impala]
  37. server_host=172.31.114.171
  38. [dashboard]
  39. is_enabled=false
  40. has_sql_enabled=false
  41. [notebook]
  42. show_notebooks=false
  43. [hadoop]
  44. balancer:
  45. enabled: true
  46. workers:
  47. enabled: true
  48. replicas: 1
  49. scheduler:
  50. enabled: true
  51. aws:
  52. accessKeyId: ""
  53. secretAccessKey: ""
  54. region: "us-east-1"
  55. ingress:
  56. create: false
  57. type: "traefik"
  58. loadBalancerIp: "127.0.0.1"
  59. domain: "127.0.0.1.nip.io"