diff --git a/charts/tooljet/templates/deployment.yaml b/charts/tooljet/templates/deployment.yaml index 0f3de88..a383f0a 100644 --- a/charts/tooljet/templates/deployment.yaml +++ b/charts/tooljet/templates/deployment.yaml @@ -86,13 +86,13 @@ spec: value: {{ .Values.env.jwt_secret }} - name: REDIS_HOST - value: {{ .Values.enterprise.REDIS_HOST }} + value: {{ .Values.redis_pod.REDIS_HOST }} - name: REDIS_PORT - value: {{ .Values.enterprise.REDIS_PORT }} + value: {{ .Values.redis_pod.REDIS_PORT }} - name: REDIS_USER - value: {{ .Values.enterprise.REDIS_USER }} + value: {{ .Values.redis_pod.REDIS_USER }} - name: REDIS_PASSWORD - value: {{ .Values.enterprise.REDIS_PASSWORD }} + value: {{ .Values.redis_pod.REDIS_PASSWORD }} envFrom: - secretRef: name: {{ .Values.apps.tooljet.secret.name }} diff --git a/charts/tooljet/values.yaml b/charts/tooljet/values.yaml index 0ef8cec..f6bc335 100644 --- a/charts/tooljet/values.yaml +++ b/charts/tooljet/values.yaml @@ -56,7 +56,7 @@ postgresql: storageClass: "" external_postgresql: #Please enter your external database vaules, Please set above posgtresql as false. - enabled: true + enabled: false PG_HOST: #Database hostname PG_USER: #Database username PG_PASS: #Database password @@ -69,7 +69,7 @@ env: DEPLOYMENT_PLATFORM: "k8s:helm" db_uri: "postgres://postgres:postgres@tooljet-postgresql.default.svc.cluster.local:5432/tooljet_db" jwt_secret: "779ce303294a7d84a2aea9ff1ef1912f9ac57220a0dd2c0861a11ca5ae6c5817" - ENABLE_TOOLJET_DB: '"false"' + ENABLE_TOOLJET_DB: '"true"' TOOLJET_DB_USER: "postgres" TOOLJET_DB_HOST: "tooljet-postgresql" TOOLJET_DB_PASS: "postgres" @@ -77,15 +77,13 @@ env: PGRST_HOST: "tooljet-postgrest.default.svc.cluster.local" tooljetdb_external_postgresql: - enabled: true + enabled: false TOOLJET_DB_USER: #Database username TOOLJET_DB_HOST: #Database hostname TOOLJET_DB_PASS: #Database password db_uri: #postgres://:<@postgres_hostname>/ -enterprise: - enabled: false - LICENSE_KEY: "" +redis_pod: REDIS_HOST: "redis-master" REDIS_PORT: '"6379"'