values.yaml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. image:
  2. registry: "gethue"
  3. tag: "latest"
  4. pullPolicy: "IfNotPresent"
  5. hue:
  6. replicas: 2
  7. database:
  8. create: true
  9. persist: true
  10. engine: "postgresql_psycopg2"
  11. host: "postgres-hue"
  12. port: 5432
  13. user: "hue"
  14. password: "hue"
  15. name: "hue"
  16. storageName: "microk8s-hostpath"
  17. interpreters: |
  18. [[[postgresql]]]
  19. name = postgresql
  20. interface=sqlalchemy
  21. options='{"url": "postgresql://hue:hue@postgres-hue:5432/hue"}'
  22. ini: |
  23. [desktop]
  24. secret_key=hue123
  25. app_blacklist=filebrowser,search,hbase,security,jobbrowser,oozie
  26. django_debug_mode=false
  27. gunicorn_work_class=gevent
  28. enable_prometheus=true
  29. [[task_server]]
  30. enabled=false
  31. broker_url=redis://redis:6379/0
  32. result_cache='{"BACKEND": "django_redis.cache.RedisCache", "LOCATION": "redis://redis:6379/0", "OPTIONS": {"CLIENT_CLASS": "django_redis.client.DefaultClient"},"KEY_PREFIX": "queries"}'
  33. celery_result_backend=redis://redis:6379/0
  34. balancer:
  35. enabled: true
  36. workers:
  37. enabled: false
  38. replicas: 1
  39. scheduler:
  40. enabled: false
  41. websocket:
  42. enabled: false
  43. replicas: 1
  44. monitoring:
  45. enabled: true
  46. tracing:
  47. enabled: true
  48. cron:
  49. enabled: false
  50. emailStats: "0 13 * * WED,SUN"
  51. ingress:
  52. create: false
  53. hasAuth: false
  54. type: "nginx"
  55. # type: "nginx-ssl"
  56. # type: "nginx-ssl-staging"
  57. # type: "traefik"
  58. domain: "demo.gethue.com"
  59. email: "team@gethue.com"
  60. loadBalancerIp: "127.0.0.1"
  61. aws:
  62. accessKeyId: ""
  63. secretAccessKey: ""
  64. awsRegion: "us-east-1"
  65. ## Pod Annotations
  66. # podAnnotations: {}