Skip to content
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: rpk cluster config set needs full list of brokers #522

Merged
merged 2 commits into from
May 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/redpanda/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type: application
# The chart version and the app version are not the same and will not track
# together. The chart version is a semver representation of changes to this
# chart.
version: 4.0.24
version: 4.0.25

# The app version is the default version of Redpanda to install.
appVersion: v23.1.10
Expand Down
2 changes: 1 addition & 1 deletion charts/redpanda/templates/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ stringData:

if [[ -n "${USERS_LIST}" && ${READ_LIST_SUCCESS} ]]; then
echo "Setting superusers configurations with users [${USERS_LIST}]"
superuser_result=$(rpk cluster config set superusers [${USERS_LIST}] {{ template "rpk-flags-no-sasl" $ }} 2>&1) && superuser_result_exit_code=$? || superuser_result_exit_code=$?
superuser_result=$(rpk cluster config set superusers [${USERS_LIST}] {{ template "rpk-acl-user-flags" $ }} 2>&1) && superuser_result_exit_code=$? || superuser_result_exit_code=$?
if [[ $superuser_result_exit_code -ne 0 ]]; then
echo "Setting superusers configurations failed: ${superuser_result}"
else
Expand Down