fix(helm): typo on ssl_cert_reqs variable (#27094)

This commit is contained in:
pcop00 2024-02-12 20:49:33 -06:00 committed by GitHub
parent 884ea03480
commit 5e201bcd85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ maintainers:
- name: craig-rueda - name: craig-rueda
email: craig@craigrueda.com email: craig@craigrueda.com
url: https://github.com/craig-rueda url: https://github.com/craig-rueda
version: 0.12.4 version: 0.12.5
dependencies: dependencies:
- name: postgresql - name: postgresql
version: 12.1.6 version: 12.1.6

View File

@ -23,7 +23,7 @@ NOTE: This file is generated by helm-docs: https://github.com/norwoodj/helm-docs
# superset # superset
![Version: 0.12.4](https://img.shields.io/badge/Version-0.12.4-informational?style=flat-square) ![Version: 0.12.5](https://img.shields.io/badge/Version-0.12.5-informational?style=flat-square)
Apache Superset is a modern, enterprise-ready business intelligence web application Apache Superset is a modern, enterprise-ready business intelligence web application

View File

@ -78,7 +78,7 @@ REDIS_BASE_URL=f"{env('REDIS_PROTO')}://{env('REDIS_HOST')}:{env('REDIS_PORT')}"
# Redis URL Params # Redis URL Params
{{- if .Values.supersetNode.connections.redis_ssl.enabled }} {{- if .Values.supersetNode.connections.redis_ssl.enabled }}
REDIS_URL_PARAMS = f"?ssl_cert_req={env('REDIS_SSL_CERT_REQS')}" REDIS_URL_PARAMS = f"?ssl_cert_reqs={env('REDIS_SSL_CERT_REQS')}"
{{- else }} {{- else }}
REDIS_URL_PARAMS = "" REDIS_URL_PARAMS = ""
{{- end}} {{- end}}