about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/k3s
diff options
context:
space:
mode:
authorsuperherointj <5861043+superherointj@users.noreply.github.com>2024-02-13 09:00:39 -0300
committersuperherointj <5861043+superherointj@users.noreply.github.com>2024-02-19 18:39:57 -0300
commit1930ecaa743ad13353ea88424daf2c62e5071ce1 (patch)
tree7c081a89ee91fbef08cb77e869c23ed18a21c80a /pkgs/applications/networking/cluster/k3s
parent171812ea70daf7636b2f3e25d5e6d3f5451e0496 (diff)
downloadnixlib-1930ecaa743ad13353ea88424daf2c62e5071ce1.tar
nixlib-1930ecaa743ad13353ea88424daf2c62e5071ce1.tar.gz
nixlib-1930ecaa743ad13353ea88424daf2c62e5071ce1.tar.bz2
nixlib-1930ecaa743ad13353ea88424daf2c62e5071ce1.tar.lz
nixlib-1930ecaa743ad13353ea88424daf2c62e5071ce1.tar.xz
nixlib-1930ecaa743ad13353ea88424daf2c62e5071ce1.tar.zst
nixlib-1930ecaa743ad13353ea88424daf2c62e5071ce1.zip
nixos/k3s: add test for etcd backend
Diffstat (limited to 'pkgs/applications/networking/cluster/k3s')
-rw-r--r--pkgs/applications/networking/cluster/k3s/builder.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/k3s/builder.nix b/pkgs/applications/networking/cluster/k3s/builder.nix
index 3f44deb9771d..2173748cd2df 100644
--- a/pkgs/applications/networking/cluster/k3s/builder.nix
+++ b/pkgs/applications/networking/cluster/k3s/builder.nix
@@ -355,6 +355,7 @@ buildGoModule rec {
   passthru.mkTests = version:
     let k3s_version = "k3s_" + lib.replaceStrings ["."] ["_"] (lib.versions.majorMinor version);
     in {
+      etcd = nixosTests.k3s.etcd.${k3s_version};
       single-node = nixosTests.k3s.single-node.${k3s_version};
       multi-node = nixosTests.k3s.multi-node.${k3s_version};
     };