| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- image:
- registry: "gethue"
- tag: "latest"
- pullPolicy: "IfNotPresent"
- hue:
- replicas: 2
- database:
- create: true
- persist: true
- engine: "postgresql_psycopg2"
- host: "postgres-hue"
- port: 5432
- user: "hue"
- password: "hue"
- name: "hue"
- storageName: "microk8s-hostpath"
- interpreters: |
- [[[postgresql]]]
- name = postgresql
- interface=sqlalchemy
- options='{"url": "postgresql://hue:hue@postgres-hue:5432/hue"}'
- ini: |
- [desktop]
- secret_key=hue123
- app_blacklist=filebrowser,search,hbase,security,jobbrowser,oozie
- django_debug_mode=false
- 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
- balancer:
- enabled: true
- workers:
- enabled: false
- replicas: 1
- scheduler:
- enabled: false
- websocket:
- enabled: false
- replicas: 1
- monitoring:
- enabled: true
- tracing:
- enabled: true
- cron:
- enabled: false
- emailStats: "0 13 * * WED,SUN"
- ingress:
- create: false
- hasAuth: false
- type: "nginx"
- # type: "nginx-ssl"
- # type: "nginx-ssl-staging"
- # type: "traefik"
- domain: "demo.gethue.com"
- email: "team@gethue.com"
- loadBalancerIp: "127.0.0.1"
- aws:
- accessKeyId: ""
- secretAccessKey: ""
- awsRegion: "us-east-1"
- ## Pod Annotations
- # podAnnotations: {}
|