mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-01 08:09:23 +08:00
podman: update to 3.4.1
A lot of changes since 3.3.1. Full (long) lists of release notes between versions are available at https://github.com/containers/podman/releases containers.conf updated Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
This commit is contained in:
parent
fb1c3f452b
commit
21885db523
@ -1,12 +1,12 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=podman
|
PKG_NAME:=podman
|
||||||
PKG_VERSION:=3.3.1
|
PKG_VERSION:=3.4.1
|
||||||
PKG_RELEASE:=$(AUTORELEASE)
|
PKG_RELEASE:=$(AUTORELEASE)
|
||||||
PKG_HASH:=6e3c57f5fd4199bc7603effb8c34268ee7f65fcd30c7b0d4778396b69388ae1f
|
|
||||||
|
|
||||||
PKG_SOURCE_URL:=https://github.com/containers/podman/archive/v$(PKG_VERSION)
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
|
PKG_SOURCE_URL:=https://github.com/containers/podman/archive/v$(PKG_VERSION)
|
||||||
|
PKG_HASH:=3fa70c499a4733524354518e839eefa3f14b630a519393418d082880535c1e33
|
||||||
|
|
||||||
PKG_LICENSE:=Apache-2.0
|
PKG_LICENSE:=Apache-2.0
|
||||||
PKG_LICENSE_FILES:=LICENSE
|
PKG_LICENSE_FILES:=LICENSE
|
||||||
|
@ -1,17 +1,60 @@
|
|||||||
|
#https://github.com/containers/common/blob/main/pkg/config/containers.conf
|
||||||
|
|
||||||
[containers]
|
[containers]
|
||||||
netns="private"
|
#annotations = []
|
||||||
|
#apparmor_profile = "container-default"
|
||||||
|
cgroupns = "private"
|
||||||
|
cgroups = "enabled"
|
||||||
|
netns = "private"
|
||||||
|
#pidns = "private"
|
||||||
|
#rootless_networking = "slirp4netns"
|
||||||
|
#seccomp_profile = "/usr/share/containers/seccomp.json"
|
||||||
|
#shm_size = "65536k"
|
||||||
|
|
||||||
|
default_capabilities = [
|
||||||
|
"CHOWN",
|
||||||
|
"DAC_OVERRIDE",
|
||||||
|
"FOWNER",
|
||||||
|
"FSETID",
|
||||||
|
"KILL",
|
||||||
|
"NET_BIND_SERVICE",
|
||||||
|
"SETFCAP",
|
||||||
|
"SETGID",
|
||||||
|
"SETPCAP",
|
||||||
|
"SETUID",
|
||||||
|
"SYS_CHROOT"
|
||||||
|
]
|
||||||
|
|
||||||
|
default_sysctls = [
|
||||||
|
"net.ipv4.ping_group_range=0 0",
|
||||||
|
]
|
||||||
|
|
||||||
[network]
|
[network]
|
||||||
cni_plugin_dir="/usr/lib/cni"
|
cni_plugin_dirs = [
|
||||||
network_config_dir="/etc/cni/net.d/"
|
"/usr/lib/cni"
|
||||||
default_network="podman"
|
]
|
||||||
|
network_config_dir = "/etc/cni/net.d/"
|
||||||
|
default_network = "podman"
|
||||||
|
|
||||||
[engine]
|
[engine]
|
||||||
runtime="/usr/bin/crun"
|
cgroup_manager = "cgroupfs"
|
||||||
# runtime="/usr/sbin/runc"
|
events_logger = "none"
|
||||||
# runtime="/sbin/uxc"
|
#image_default_transport = "docker://"
|
||||||
# runtime_supports_nocgroups = ["crun", "uxc"]
|
#image_parallel_copies = 0
|
||||||
# runtime_supports_json = ["crun", "runc", "kata", "uxc"]
|
#infra_command = "/pause"
|
||||||
|
#infra_image = "k8s.gcr.io/pause:3.4.1"
|
||||||
|
#lock_type** = "shm"
|
||||||
|
#namespace = ""
|
||||||
|
#network_cmd_path = ""
|
||||||
|
|
||||||
|
runtime = "crun"
|
||||||
|
# runtime = "runc"
|
||||||
|
# runtime = "uxc"
|
||||||
|
|
||||||
|
runtime_supports_json = ["crun", "runc", "kata", "uxc"]
|
||||||
|
#runtime_supports_kvm = ["kata", "krun"]
|
||||||
|
#runtime_supports_nocgroups = ["crun", "krun", "uxc"]
|
||||||
|
#static_dir = "/var/lib/containers/storage/libpod"
|
||||||
|
|
||||||
[engine.runtimes]
|
[engine.runtimes]
|
||||||
crun = [
|
crun = [
|
||||||
@ -25,3 +68,9 @@ runc = [
|
|||||||
uxc = [
|
uxc = [
|
||||||
"/sbin/uxc",
|
"/sbin/uxc",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[machine]
|
||||||
|
#cpus = 1
|
||||||
|
#disk_size = 10
|
||||||
|
#image = "testing"
|
||||||
|
#memory = 2048
|
||||||
|
Loading…
Reference in New Issue
Block a user