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#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 fc11051 commit 829a1da
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/updated-sasl-users.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
admin:badpassword:SCRAM-SHA-512
admin:badpassword:SCRAM-SHA-256
user1:pass1:SCRAM-SHA-512
someuser:ABC123:SCRAM-SHA-512
anotherme:2784a:SCRAM-SHA-512
anotherme:2784a:SCRAM-SHA-256
anotheranotherme:2784ablah:SCRAM-SHA-512
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 829a1da

Please sign in to comment.