import containers-common-1-46.module+el8.7.0+17824+66a0202b

This commit is contained in:
CentOS Sources 2023-02-21 08:51:19 +00:00 committed by Stepan Oksanichenko
parent 81136850c3
commit eabbd24ea8
5 changed files with 520 additions and 221 deletions

File diff suppressed because it is too large Load Diff

View File

@ -6,7 +6,7 @@ if [ "$TOTAL" == "null" ]; then
echo "Error comunicating with Pyxis API." echo "Error comunicating with Pyxis API."
exit 1 exit 1
fi fi
PAGES=$(($TOTAL/500)) PAGES=$(($TOTAL/250))
for P in `seq 0 $PAGES`; do for P in `seq 0 $PAGES`; do
curl -s --negotiate -u: -H 'Content-Type: application/json' -H 'Accept: application/json' -X GET "https://pyxis.engineering.redhat.com/v1/repositories?page_size=500&page=$P" > /tmp/pyxis$P.json curl -s --negotiate -u: -H 'Content-Type: application/json' -H 'Accept: application/json' -X GET "https://pyxis.engineering.redhat.com/v1/repositories?page_size=500&page=$P" > /tmp/pyxis$P.json
done done

View File

@ -3,7 +3,7 @@
"almalinux" = "docker.io/library/almalinux" "almalinux" = "docker.io/library/almalinux"
"almalinux-minimal" = "docker.io/library/almalinux-minimal" "almalinux-minimal" = "docker.io/library/almalinux-minimal"
# Arch Linux # Arch Linux
"archlinux" = "docker.io/archlinux/archlinux" "archlinux" = "docker.io/library/archlinux"
# centos # centos
"centos" = "quay.io/centos/centos" "centos" = "quay.io/centos/centos"
# containers # containers
@ -42,6 +42,10 @@
"sles12sp5" = "registry.suse.com/suse/sles12sp5" "sles12sp5" = "registry.suse.com/suse/sles12sp5"
"sles12sp4" = "registry.suse.com/suse/sles12sp4" "sles12sp4" = "registry.suse.com/suse/sles12sp4"
"sles12sp3" = "registry.suse.com/suse/sles12sp3" "sles12sp3" = "registry.suse.com/suse/sles12sp3"
"bci/bci-base" = "registry.suse.com/bci/bci-base"
"bci/bci-micro" = "registry.suse.com/bci/bci-micro"
"bci/bci-minimal" = "registry.suse.com/bci/bci-minimal"
"bci/bci-busybox" = "registry.suse.com/bci/bci-busybox"
# Red Hat Enterprise Linux # Red Hat Enterprise Linux
"rhel" = "registry.access.redhat.com/rhel" "rhel" = "registry.access.redhat.com/rhel"
"rhel6" = "registry.access.redhat.com/rhel6" "rhel6" = "registry.access.redhat.com/rhel6"
@ -111,5 +115,7 @@
"php" = "docker.io/library/php" "php" = "docker.io/library/php"
# python # python
"python" = "docker.io/library/python" "python" = "docker.io/library/python"
# rust
"rust" = "docker.io/library/rust"
# node # node
"node" = "docker.io/library/node" "node" = "docker.io/library/node"

View File

@ -31,6 +31,11 @@ ensure containers.conf runtime \"runc\"
ensure containers.conf events_logger \"file\" ensure containers.conf events_logger \"file\"
ensure containers.conf log_driver \"k8s-file\" ensure containers.conf log_driver \"k8s-file\"
ensure containers.conf network_backend \"cni\" ensure containers.conf network_backend \"cni\"
if ! grep \"NET_RAW\" containers.conf > /dev/null
then
sed -i '/^default_capabilities/a \
"NET_RAW",' containers.conf
fi
else else
ensure registries.conf unqualified-search-registries [\"registry.access.redhat.com\",\ \"registry.redhat.io\",\ \"docker.io\"] ensure registries.conf unqualified-search-registries [\"registry.access.redhat.com\",\ \"registry.redhat.io\",\ \"docker.io\"]
ensure registries.conf short-name-mode \"enforcing\" ensure registries.conf short-name-mode \"enforcing\"
@ -40,8 +45,3 @@ fi
"keyctl",' seccomp.json "keyctl",' seccomp.json
sed -i '/\"socketcall\",/i \ sed -i '/\"socketcall\",/i \
"socket",' seccomp.json "socket",' seccomp.json
if ! grep \"NET_RAW\" containers.conf > /dev/null
then
sed -i '/^default_capabilities/a \
"NET_RAW",' containers.conf
fi

View File

@ -12,7 +12,7 @@
Epoch: 2 Epoch: 2
Name: containers-common Name: containers-common
Version: 1 Version: 1
Release: 44%{?dist} Release: 46%{?dist}
Summary: Common configuration and documentation for containers Summary: Common configuration and documentation for containers
License: ASL 2.0 License: ASL 2.0
# arch limitation because of go-md2man (missing on i686) # arch limitation because of go-md2man (missing on i686)
@ -172,6 +172,14 @@ EOF
%{_datadir}/rhel/secrets/* %{_datadir}/rhel/secrets/*
%changelog %changelog
* Sun Jan 08 2023 Jindrich Novy <jnovy@redhat.com> - 2:1-46
- update vendored components, regenerate pyxis
- Resolves: #2158511
* Fri Jan 06 2023 Jindrich Novy <jnovy@redhat.com> - 2:1-45
- update vendored components and configuration files
- Resolves: #2158635
* Thu Dec 01 2022 Jindrich Novy <jnovy@redhat.com> - 2:1-44 * Thu Dec 01 2022 Jindrich Novy <jnovy@redhat.com> - 2:1-44
- update vendored components and configuration files - update vendored components and configuration files
- Related: #2149775 - Related: #2149775