-
Notifications
You must be signed in to change notification settings - Fork 14.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(helm): Include option to use Redis with SSL #26663
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
12455be
Update Superset config for redis ssl connection
shakeelansari63 0519149
Use CERT_NONE instead of none in ssl_cert_reqs
shakeelansari63 dbe4043
Use Cache_Redis_Url instead of Cache_Redis_Host
shakeelansari63 f385766
Bumped up Chart Version
shakeelansari63 09e1453
Cleaned Up Trailing Spaces
shakeelansari63 f5d18fd
Merge branch 'master' into master
shakeelansari63 a36984a
Create envvars for Redis_proto, Redis_db and celery_db
shakeelansari63 7d09d93
Bump up chart version
shakeelansari63 4ba119a
Merge branch 'master' into master
shakeelansari63 4ffe609
Build Redis URL Params based REDIS_SSL_CERT_REQS envvar
shakeelansari63 690abf7
Build Redis URLs tohether
shakeelansari63 56434c3
used new redis_ssl with enabled prop instead of use_redis_ssl
shakeelansari63 d984761
Merge branch 'master' into master
shakeelansari63 250948e
Fix old use_redis_ssl
shakeelansari63 7d79c70
Add Redis User
shakeelansari63 1000b62
Add Helm Documentation
shakeelansari63 4d3249f
Fix helm version in readme
shakeelansari63 29d7a7a
Fix helm version in helm readme
shakeelansari63 cb3567b
fix auto formatting caused by editor
shakeelansari63 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This has broken those w/o generating the default secret, which is a very common use case to manage secrets separately (rather than relying on the Helm chart).
This kind of backward compatibility should have been implemented somewhere else, and it's not a good practice not to even document/mention this feature/behavior change at all.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The solution was to add the new
REDIS_PROTO
in the managed secret. However, it was a hassle to root cause it, due to lacking of documentation.