Skip to content

Commit 5e201bc

Browse files
authored
fix(helm): typo on ssl_cert_reqs variable (#27094)
1 parent 884ea03 commit 5e201bc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

helm/superset/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ maintainers:
2929
- name: craig-rueda
3030
3131
url: https://github.com/craig-rueda
32-
version: 0.12.4
32+
version: 0.12.5
3333
dependencies:
3434
- name: postgresql
3535
version: 12.1.6

helm/superset/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ NOTE: This file is generated by helm-docs: https://github.com/norwoodj/helm-docs
2323

2424
# superset
2525

26-
![Version: 0.12.4](https://img.shields.io/badge/Version-0.12.4-informational?style=flat-square)
26+
![Version: 0.12.5](https://img.shields.io/badge/Version-0.12.5-informational?style=flat-square)
2727

2828
Apache Superset is a modern, enterprise-ready business intelligence web application
2929

helm/superset/templates/_helpers.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ REDIS_BASE_URL=f"{env('REDIS_PROTO')}://{env('REDIS_HOST')}:{env('REDIS_PORT')}"
7878

7979
# Redis URL Params
8080
{{- if .Values.supersetNode.connections.redis_ssl.enabled }}
81-
REDIS_URL_PARAMS = f"?ssl_cert_req={env('REDIS_SSL_CERT_REQS')}"
81+
REDIS_URL_PARAMS = f"?ssl_cert_reqs={env('REDIS_SSL_CERT_REQS')}"
8282
{{- else }}
8383
REDIS_URL_PARAMS = ""
8484
{{- end}}

0 commit comments

Comments
 (0)