Merge pull request #298481 from superherointj/k3s-nixos-tests-fix-maintainers

k3s/nixos/tests: sync meta.maintainers to k3s package

authored by superherointj and committed by GitHub 283fa362 e20e5fb4

+3 -7
+1 -3
nixos/tests/k3s/multi-node.nix
··· 128 128 }; 129 129 }; 130 130 131 - meta = with pkgs.lib.maintainers; { 132 - maintainers = [ euank ]; 133 - }; 131 + meta.maintainers = k3s.meta.maintainers; 134 132 135 133 testScript = '' 136 134 machines = [server, server2, agent]
+1 -3
nixos/tests/k3s/single-node.nix
··· 25 25 in 26 26 { 27 27 name = "${k3s.name}-single-node"; 28 - meta = with pkgs.lib.maintainers; { 29 - maintainers = [ euank ]; 30 - }; 28 + meta.maintainers = k3s.meta.maintainers; 31 29 32 30 nodes.machine = { pkgs, ... }: { 33 31 environment.systemPackages = with pkgs; [ k3s gzip ];
+1 -1
pkgs/applications/networking/cluster/k3s/builder.nix
··· 83 83 description = "A lightweight Kubernetes distribution"; 84 84 license = licenses.asl20; 85 85 homepage = "https://k3s.io"; 86 - maintainers = with maintainers; [ euank mic92 yajo ]; 86 + maintainers = with maintainers; [ euank mic92 superherointj yajo ]; 87 87 platforms = platforms.linux; 88 88 89 89 # resolves collisions with other installations of kubectl, crictl, ctr