-
Notifications
You must be signed in to change notification settings - Fork 43
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: TLS_ENABLED might not be defined #1291
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1291 +/- ##
=====================================
Coverage 0.00% 0.00%
=====================================
Files 69 69
Lines 6682 6682
=====================================
Misses 6682 6682 ☔ View full report in Codecov by Sentry. |
@@ -30,14 +30,14 @@ | |||
<raft_logs_level>warning</raft_logs_level> | |||
</coordination_settings> | |||
<raft_configuration> | |||
{{- if eq $.TLS_ENABLED "true" }} | |||
{{- if and (index . "TLS_ENABLED") (eq .TLS_ENABLED "true") }} |
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.
render failed with nest scope, define a var to resolve it
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.
Fixed
8dad780
to
2d60132
Compare
/approve |
/cherry-pick release-1.0-beta |
🤖 says: cherry pick action finished successfully 🎉! |
(cherry picked from commit 2fa7631)
resolve apecloud/kubeblocks#8598