Skip to content

Commit

Permalink
Change the test super user SASL mechanism
Browse files Browse the repository at this point in the history
The PR redpanda-data/helm-charts#544 does not pass
tests due to bug in Redpanda. The pandaproxy fix will be backported eventually
redpanda-data/redpanda#11425, but to unblock the
nightly build the test SASL mechanism should be change from `SCRAM-SHA-512`
to `SCRAM-SHA-256`.
  • Loading branch information
Rafal Korepta committed Jun 15, 2023
1 parent 3e48e7e commit b543dde
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
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.36
version: 4.0.37

# The app version is the default version of Redpanda to install.
appVersion: v23.1.12
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ auth:
users:
- name: admin
password: hunter2
mechanism: SCRAM-SHA-256

storage:
persistentVolume:
Expand Down
2 changes: 1 addition & 1 deletion charts/redpanda/ci/11-update-sasl-users-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ auth:
users:
- name: admin
password: badpassword
mechanism: SCRAM-SHA-512
mechanism: SCRAM-SHA-256
- name: user1
password: pass1word
mechanism: SCRAM-SHA-512
Expand Down

0 comments on commit b543dde

Please sign in to comment.