From 829a1da01a169b92cfcc31b6537072fb586fdc6b Mon Sep 17 00:00:00 2001 From: Rafal Korepta Date: Thu, 15 Jun 2023 11:18:28 +0200 Subject: [PATCH] Change the test super user SASL mechanism The PR https://github.com/redpanda-data/helm-charts/pull/544 does not pass tests due to bug in Redpanda. The pandaproxy fix will be backported eventually https://github.com/redpanda-data/redpanda/pull/11425, but to unblock the nightly build the test SASL mechanism should be change from `SCRAM-SHA-512` to `SCRAM-SHA-256`. --- .github/updated-sasl-users.txt | 4 ++-- charts/redpanda/Chart.yaml | 2 +- .../redpanda/ci/04-one-node-cluster-no-tls-sasl-values.yaml | 1 + charts/redpanda/ci/11-update-sasl-users-values.yaml | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/updated-sasl-users.txt b/.github/updated-sasl-users.txt index 9d3c7320a7..aa224842c5 100644 --- a/.github/updated-sasl-users.txt +++ b/.github/updated-sasl-users.txt @@ -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 diff --git a/charts/redpanda/Chart.yaml b/charts/redpanda/Chart.yaml index a601a5d092..06e6ead819 100644 --- a/charts/redpanda/Chart.yaml +++ b/charts/redpanda/Chart.yaml @@ -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 diff --git a/charts/redpanda/ci/04-one-node-cluster-no-tls-sasl-values.yaml b/charts/redpanda/ci/04-one-node-cluster-no-tls-sasl-values.yaml index c59597561e..f1e390a3e8 100644 --- a/charts/redpanda/ci/04-one-node-cluster-no-tls-sasl-values.yaml +++ b/charts/redpanda/ci/04-one-node-cluster-no-tls-sasl-values.yaml @@ -23,6 +23,7 @@ auth: users: - name: admin password: hunter2 + mechanism: SCRAM-SHA-256 storage: persistentVolume: diff --git a/charts/redpanda/ci/11-update-sasl-users-values.yaml b/charts/redpanda/ci/11-update-sasl-users-values.yaml index dd90ef1cb3..9fa71214c2 100644 --- a/charts/redpanda/ci/11-update-sasl-users-values.yaml +++ b/charts/redpanda/ci/11-update-sasl-users-values.yaml @@ -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