import skopeo-1.2.2-8.module+el8.4.0+11818+341460ad

This commit is contained in:
CentOS Sources 2021-11-02 06:39:39 -04:00 committed by Stepan Oksanichenko
parent ac1b203970
commit 05aef7a232
4 changed files with 1005 additions and 1738 deletions

View File

@ -299,6 +299,7 @@ default_sysctls = [
# Selects which logging mechanism to use for container engine events.
# Valid values are `journald`, `file` and `none`.
#
# events_logger = "journald"
events_logger = "file"
# Path to OCI hooks directories for automatically executed hooks.
@ -393,6 +394,7 @@ infra_image = "registry.access.redhat.com/ubi8/pause"
# Default OCI runtime
#
# runtime = "crun"
runtime = "runc"
# List of the OCI runtimes that support --format=json. When json is supported

File diff suppressed because it is too large Load Diff

View File

@ -24,6 +24,8 @@
"tumbleweed-dnf" = "registry.opensuse.org/opensuse/tumbleweed-dnf"
"tumbleweed-microdnf" = "registry.opensuse.org/opensuse/tumbleweed-microdnf"
"leap" = "registry.opensuse.org/opensuse/leap"
"leap-dnf" = "registry.opensuse.org/opensuse/leap-dnf"
"leap-microdnf" = "registry.opensuse.org/opensuse/leap-microdnf"
"tw-busybox" = "registry.opensuse.org/opensuse/busybox"
# SUSE
"suse/sle15" = "registry.suse.com/suse/sle15"
@ -51,5 +53,13 @@
"ubi8/ubi-micro" = "registry.access.redhat.com/ubi8-micro"
# Debian
"debian" = "docker.io/library/debian"
# Ubuntu
"ubuntu" = "docker.io/library/ubuntu"
# Oracle Linux
"oraclelinux" = "container-registry.oracle.com/os/oraclelinux"
"oraclelinux" = "docker.io/library/oraclelinux"
# busybox
"busybox" = "docker.io/library/busybox"
# php
"php" = "docker.io/library/php"
#python
"python" = "docker.io/library/python"

View File

@ -28,7 +28,7 @@ go build -buildmode pie -compiler gc -tags="rpm_crashtraceback libtrust_openssl
Epoch: 1
Name: skopeo
Version: 1.2.2
Release: 7%{?dist}
Release: 8%{?dist}
Summary: Inspect container images and repositories on registries
License: ASL 2.0
URL: %{git0}
@ -233,6 +233,10 @@ export GOPATH=%{buildroot}/%{gopath}:$(pwd)/vendor:%{gopath}
%{_datadir}/%{name}/test
%changelog
* Thu Jul 15 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.2-8
- update shortnames from Pyxis
- Related: #1954702
* Wed Apr 07 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.2.2-7
- use runc as default OCI runtime in RHEL8
- Resolves: #1940854