Skip to content

Commit

Permalink
Increase minio secret key length for FIPS (#10518)
Browse files Browse the repository at this point in the history
Signed-off-by: Luke Chen <[email protected]>
  • Loading branch information
showuon authored Aug 30, 2024
1 parent 3224ce8 commit f3b8493
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class SetupMinio {
private static final Logger LOGGER = LogManager.getLogger(SetupMinio.class);

public static final String MINIO = "minio";
public static final String ADMIN_CREDS = "minioadmin";
public static final String ADMIN_CREDS = "minioadminLongerThan16BytesForFIPS";
public static final String MINIO_STORAGE_ALIAS = "local";
public static final int MINIO_PORT = 9000;
private static final String MINIO_IMAGE = "quay.io/minio/minio:latest";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import io.strimzi.systemtest.AbstractST;
import io.strimzi.systemtest.Environment;
import io.strimzi.systemtest.TestConstants;
import io.strimzi.systemtest.annotations.FIPSNotSupported;
import io.strimzi.systemtest.annotations.MicroShiftNotSupported;
import io.strimzi.systemtest.annotations.ParallelTest;
import io.strimzi.systemtest.kafkaclients.internalClients.KafkaClients;
Expand Down Expand Up @@ -55,7 +54,6 @@
* - tiered-storage-integration
*/
@MicroShiftNotSupported("We are using Kaniko and OpenShift builds to build Kafka image with TS. To make it working on Microshift we will invest much time with not much additional value.")
@FIPSNotSupported("Aiven TieredStorage plugin doesn't work with FIPS - https://github.com/Aiven-Open/tiered-storage-for-apache-kafka/issues/573")
@Tag(REGRESSION)
@Tag(TIERED_STORAGE)
public class TieredStorageST extends AbstractST {
Expand Down

0 comments on commit f3b8493

Please sign in to comment.