Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e5be8d2d06aa
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5a3b818368e7
Choose a head ref
  • 6 commits
  • 5 files changed
  • 2 contributors

Commits on Apr 23, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    millotp Pierre Millot
    Copy the full SHA
    ebedb91 View commit details
  2. nixos/cri-o: update maintainers

    zowoq committed Apr 23, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    millotp Pierre Millot
    Copy the full SHA
    4484e79 View commit details
  3. cni-plugins: update maintainers

    zowoq committed Apr 23, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    millotp Pierre Millot
    Copy the full SHA
    b1138cc View commit details
  4. cri-o: update maintainers

    zowoq committed Apr 23, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    millotp Pierre Millot
    Copy the full SHA
    e3025ca View commit details
  5. cri-tools: update maintainers

    zowoq committed Apr 23, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    millotp Pierre Millot
    Copy the full SHA
    d8e8169 View commit details

Commits on Apr 24, 2020

  1. Merge pull request #85894 from zowoq/podman-crio

    podman team: add cri-o packages/module
    adisbladis authored Apr 24, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    millotp Pierre Millot
    Copy the full SHA
    5a3b818 View commit details
2 changes: 1 addition & 1 deletion maintainers/team-list.nix
Original file line number Diff line number Diff line change
@@ -38,6 +38,6 @@ with lib.maintainers; {
vdemeester
zowoq
];
scope = "Maintain Podman related packages and modules.";
scope = "Maintain Podman and CRI-O related packages and modules.";
};
}
4 changes: 4 additions & 0 deletions nixos/modules/virtualisation/cri-o.nix
Original file line number Diff line number Diff line change
@@ -6,6 +6,10 @@ let
cfg = config.virtualisation.cri-o;
in
{
meta = {
maintainers = lib.teams.podman.members;
};

options.virtualisation.cri-o = {
enable = mkEnableOption "Container Runtime Interface for OCI (CRI-O)";

2 changes: 1 addition & 1 deletion pkgs/applications/networking/cluster/cni/plugins.nix
Original file line number Diff line number Diff line change
@@ -37,6 +37,6 @@ buildGoPackage rec {
homepage = "https://github.com/containernetworking/plugins";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ cstrahan saschagrunert ];
maintainers = with maintainers; [ cstrahan ] ++ teams.podman.members;
};
}
2 changes: 1 addition & 1 deletion pkgs/applications/virtualization/cri-o/default.nix
Original file line number Diff line number Diff line change
@@ -57,7 +57,7 @@ in buildGoPackage rec {
description = ''Open Container Initiative-based implementation of the
Kubernetes Container Runtime Interface'';
license = licenses.asl20;
maintainers = with maintainers; [ saschagrunert ];
maintainers = with maintainers; [ ] ++ teams.podman.members;
platforms = platforms.linux;
};
}
2 changes: 1 addition & 1 deletion pkgs/tools/virtualization/cri-tools/default.nix
Original file line number Diff line number Diff line change
@@ -21,6 +21,6 @@ buildGoPackage rec {
description = "CLI and validation tools for Kubelet Container Runtime Interface (CRI)";
homepage = "https://github.com/kubernetes-sigs/cri-tools";
license = lib.licenses.asl20;
maintainers = with maintainers; [ saschagrunert ];
maintainers = with maintainers; [ ] ++ teams.podman.members;
};
}