Commit 5266d2da authored by superherointj's avatar superherointj
Browse files

k3s/tests/auto-deploy: fix auto-deploy reference

* re-establish alphabetical order
* fix typo on comment
parent bbc168ab
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -7,6 +7,8 @@ let
  allK3s = lib.filterAttrs (n: _: lib.strings.hasPrefix "k3s_" n) pkgs;
in
{
  # Test whether container images are imported and auto deploying manifests work
  auto-deploy = lib.mapAttrs (_: k3s: import ./auto-deploy.nix { inherit system pkgs k3s; }) allK3s;
  # Testing K3s with Etcd backend
  etcd = lib.mapAttrs (
    _: k3s:
@@ -19,6 +21,4 @@ in
  single-node = lib.mapAttrs (_: k3s: import ./single-node.nix { inherit system pkgs k3s; }) allK3s;
  # Run a multi-node k3s cluster and verify pod networking works across nodes
  multi-node = lib.mapAttrs (_: k3s: import ./multi-node.nix { inherit system pkgs k3s; }) allK3s;
  # Test wether container images are imported and auto deploying manifests work
  auto-deploy = lib.mapAttrs (_: k3s: import ./auto-deploy.nix { inherit system pkgs k3s; }) allK3s;
}
+1 −0
Original line number Diff line number Diff line
@@ -419,6 +419,7 @@ buildGoModule rec {
      k3s_version = "k3s_" + lib.replaceStrings [ "." ] [ "_" ] (lib.versions.majorMinor version);
    in
    {
      auto-deploy = nixosTests.k3s.auto-deploy.${k3s_version};
      etcd = nixosTests.k3s.etcd.${k3s_version};
      single-node = nixosTests.k3s.single-node.${k3s_version};
      multi-node = nixosTests.k3s.multi-node.${k3s_version};