Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

podman: install package if enabled and create config files #6039

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 85 additions & 3 deletions modules/services/podman-linux/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,99 @@
{ config, pkgs, lib, ... }:

{
let
cfg = config.services.podman;
toml = pkgs.formats.toml { };
in {
meta.maintainers = with lib.hm.maintainers; [ bamhm182 n-hass ];

imports =
[ ./containers.nix ./install-quadlet.nix ./networks.nix ./services.nix ];

options.services.podman = {
enable = lib.mkEnableOption "Podman, a daemonless container engine";

config = {
containers = lib.mkOption {
type = toml.type;
default = { };
description = "containers.conf configuration";
};

storage = lib.mkOption {
type = toml.type;
description = "storage.conf configuration";
};

registries = {
search = lib.mkOption {
type = lib.types.listOf lib.types.str;
default = [ "docker.io" ];
description = ''
List of repositories to search.
'';
};

insecure = lib.mkOption {
default = [ ];
type = lib.types.listOf lib.types.str;
description = ''
List of insecure repositories.
'';
};

block = lib.mkOption {
default = [ ];
type = lib.types.listOf lib.types.str;
description = ''
List of blocked repositories.
'';
};
};

policy = lib.mkOption {
default = { };
type = lib.types.attrs;
example = lib.literalExpression ''
{
default = [ { type = "insecureAcceptAnything"; } ];
transports = {
docker-daemon = {
"" = [ { type = "insecureAcceptAnything"; } ];
};
};
}
'';
description = ''
Signature verification policy file.
If this option is empty the default policy file from
`skopeo` will be used.
'';
};
};
};

config = lib.mkIf config.services.podman.enable {
config = lib.mkIf cfg.enable {
assertions =
[ (lib.hm.assertions.assertPlatform "podman" pkgs lib.platforms.linux) ];

home.packages = [ cfg.package ];

services.podman.config.storage = {
storage.driver = lib.mkDefault "overlay";
};

xdg.configFile = {
"containers/policy.json".source = if cfg.config.policy != { } then
pkgs.writeText "policy.json" (builtins.toJSON cfg.config.policy)
else
"${pkgs.skopeo.policy}/default-policy.json";
"containers/registries.conf".source = toml.generate "registries.conf" {
registries =
lib.mapAttrs (n: v: { registries = v; }) cfg.config.registries;
};
"containers/storage.conf".source =
toml.generate "storage.conf" cfg.config.storage;
"containers/containers.conf".source =
toml.generate "containers.conf" cfg.config.containers;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[network]
default_subnet = "172.16.10.0/24"

[[network.default_subnet_pools]]
base = "172.16.11.0/24"
size = 24

[[network.default_subnet_pools]]
base = "172.16.12.0/24"
size = 24
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"default":[{"type":"insecureAcceptAnything"}]}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[registries.block]
registries = ["ghcr.io", "gallery.ecr.aws"]

[registries.insecure]
registries = ["quay.io"]

[registries.search]
registries = ["docker.io"]
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[storage]
driver = "overlay"
graphroot = "$HOME/.containers/graphroot"
runroot = "$HOME/.containers/runroot"
63 changes: 63 additions & 0 deletions tests/modules/services/podman-linux/configuration.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{ ... }:

{
services.podman = {
enable = true;
config = {
containers = {
network = {
default_subnet = "172.16.10.0/24";
default_subnet_pools = [
{
base = "172.16.11.0/24";
size = 24;
}
{
base = "172.16.12.0/24";
size = 24;
}
];
};
};
storage = {
storage = {
runroot = "$HOME/.containers/runroot";
graphroot = "$HOME/.containers/graphroot";
};
};
registries = {
block = [ "ghcr.io" "gallery.ecr.aws" ];
insecure = [ "quay.io" ];
search = [ "docker.io" ];
};
policy = { default = [{ type = "insecureAcceptAnything"; }]; };
};
};

nmt.script = ''
configPath=home-files/.config/containers
containersFile=$configPath/containers.conf
policyFile=$configPath/policy.json
registriesFile=$configPath/registries.conf
storageFile=$configPath/storage.conf

assertFileExists $containersFile
assertFileExists $policyFile
assertFileExists $registriesFile
assertFileExists $storageFile

containersFile=$(normalizeStorePaths $containersFile)
policyFile=$(normalizeStorePaths $policyFile)
registriesFile=$(normalizeStorePaths $registriesFile)
storageFile=$(normalizeStorePaths $storageFile)

assertFileContent $containersFile ${
./configuration-containers-expected.conf
}
assertFileContent $policyFile ${./configuration-policy-expected.json}
assertFileContent $registriesFile ${
./configuration-registries-expected.conf
}
assertFileContent $storageFile ${./configuration-storage-expected.conf}
'';
}
1 change: 1 addition & 0 deletions tests/modules/services/podman-linux/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
podman-configuration = ./configuration.nix;
podman-container = ./container.nix;
podman-integration = ./integration.nix;
podman-manifest = ./manifest.nix;
Expand Down
Loading