Compare commits

..

3 commits

Author SHA1 Message Date
af10b49f39 add zfs auto snapshop 2020-11-03 17:48:17 +01:00
b44f659e96 update podman config for 20.09 2020-11-03 17:47:39 +01:00
3304bb3533 add argocd 2020-11-03 17:47:18 +01:00
2 changed files with 11 additions and 35 deletions

View file

@ -8,47 +8,17 @@ in {
kubectl kubectl
pwgen pwgen
whois whois
unstable.argocd
unstable.kubernetes-helm unstable.kubernetes-helm
unstable.kustomize unstable.kustomize
unstable.vault unstable.vault
# podman
conmon
fuse-overlayfs
podman
podman-compose podman-compose
runc fuse-overlayfs
slirp4netns
]; ];
users.users.stefan.subUidRanges = [{ startUid = 100000; count = 65536; }]; virtualisation.podman = {
users.users.stefan.subGidRanges = [{ startGid = 100000; count = 65536; }]; enable = true;
dockerCompat = true;
environment.etc."containers/policy.json" = {
mode="0644";
text=''
{
"default": [
{
"type": "insecureAcceptAnything"
}
],
"transports":
{
"docker-daemon":
{
"": [{"type":"insecureAcceptAnything"}]
}
}
}
'';
};
environment.etc."containers/registries.conf" = {
mode="0644";
text=''
[registries.search]
registries = ['docker.io', 'quay.io']
'';
}; };
} }

View file

@ -98,4 +98,10 @@ in {
services.resolved.enable = true; services.resolved.enable = true;
services.lorri.enable = true; services.lorri.enable = true;
services.zfs.autoSnapshot = {
enable = true;
frequent = 8;
monthly = 6;
};
} }