about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorSarah Brofeldt <sarah@qtr.dk>2024-02-07 18:58:52 +0100
committerSarah Brofeldt <sarah@qtr.dk>2024-06-17 09:01:28 +0200
commit27a384a0ab5c65d15732ab721bf5703a3b79b6e9 (patch)
tree0d7ddb7ae592afcd6d8b215e59a5ae8edc66eb5a /nixos/tests
parent1f45118e73e5fdcb28faf618952ef913d0aca8e5 (diff)
apacheKafka: drop 3.4 and older
General cleanup -- following the logic that NixOS 23.11 contains Kafka
3.5, so there is a sensible upgrade path for everyone as long as we keep
that around until after the next release.
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/kafka.nix6
1 files changed, 0 insertions, 6 deletions
diff --git a/nixos/tests/kafka.nix b/nixos/tests/kafka.nix
index d5d82d06acb62..763143a965d60 100644
--- a/nixos/tests/kafka.nix
+++ b/nixos/tests/kafka.nix
@@ -103,12 +103,6 @@ let
   }) { inherit system; });
 
 in with pkgs; {
-  kafka_2_8 = makeKafkaTest "kafka_2_8" { kafkaPackage = apacheKafka_2_8; };
-  kafka_3_0 = makeKafkaTest "kafka_3_0" { kafkaPackage = apacheKafka_3_0; };
-  kafka_3_1 = makeKafkaTest "kafka_3_1" { kafkaPackage = apacheKafka_3_1; };
-  kafka_3_2 = makeKafkaTest "kafka_3_2" { kafkaPackage = apacheKafka_3_2; };
-  kafka_3_3 = makeKafkaTest "kafka_3_3" { kafkaPackage = apacheKafka_3_3; };
-  kafka_3_4 = makeKafkaTest "kafka_3_4" { kafkaPackage = apacheKafka_3_4; };
   kafka_3_5 = makeKafkaTest "kafka_3_5" { kafkaPackage = apacheKafka_3_5; };
   kafka_3_6 = makeKafkaTest "kafka_3_6" { kafkaPackage = apacheKafka_3_6; };
   kafka = makeKafkaTest "kafka" { kafkaPackage = apacheKafka; };