containers-common-1-14.el9

- update vendored component versions
- sync shortname aliases via Pyxis
- Related: #2000051

Signed-off-by: Jindrich Novy <jnovy@redhat.com>
This commit is contained in:
Jindrich Novy 2021-12-08 09:39:46 +01:00
parent be6d2b2cfd
commit d748db4ad6
10 changed files with 1906 additions and 696 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
% containers-auth.json(5) % containers-auth.json 5
# NAME # NAME
containers-auth.json - syntax for the registry authentication file containers-auth.json - syntax for the registry authentication file

View File

@ -1,4 +1,4 @@
% containers-certs.d(5) % containers-certs.d 5 Directory for storing custom container-registry TLS configurations
# NAME # NAME
containers-certs.d - Directory for storing custom container-registry TLS configurations containers-certs.d - Directory for storing custom container-registry TLS configurations

View File

@ -4,15 +4,15 @@
# pick the oldest version on c/image, c/common, c/storage vendored in # pick the oldest version on c/image, c/common, c/storage vendored in
# podman/skopeo/podman. # podman/skopeo/podman.
%global skopeo_branch main %global skopeo_branch main
%global image_branch v5.16.0 %global image_branch v5.17.0
%global common_branch v0.44.3 %global common_branch v0.44.4
%global storage_branch v1.36.0 %global storage_branch v1.37.0
%global shortnames_branch main %global shortnames_branch main
Epoch: 2 Epoch: 2
Name: containers-common Name: containers-common
Version: 1 Version: 1
Release: 13%{?dist} Release: 14%{?dist}
Summary: Common configuration and documentation for containers Summary: Common configuration and documentation for containers
License: ASL 2.0 License: ASL 2.0
BuildArch: noarch BuildArch: noarch
@ -160,6 +160,11 @@ EOF
%{_datadir}/rhel/secrets/* %{_datadir}/rhel/secrets/*
%changelog %changelog
* Wed Dec 08 2021 Jindrich Novy <jnovy@redhat.com> - 2:1-14
- update vendored component versions
- sync shortname aliases via Pyxis
- Related: #2000051
* Tue Nov 30 2021 Jindrich Novy <jnovy@redhat.com> - 2:1-13 * Tue Nov 30 2021 Jindrich Novy <jnovy@redhat.com> - 2:1-13
- use log_driver = "journald" and events_logger = "journald" for RHEL9 - use log_driver = "journald" and events_logger = "journald" for RHEL9
- Related: #2000051 - Related: #2000051

View File

@ -1,4 +1,4 @@
% CONTAINERS-POLICY.JSON(5) policy.json Man Page % CONTAINERS-POLICY.JSON 5 policy.json Man Page
% Miloslav Trmač % Miloslav Trmač
% September 2016 % September 2016

View File

@ -1,4 +1,4 @@
% CONTAINERS-REGISTRIES.CONF(5) System-wide registry configuration file % CONTAINERS-REGISTRIES.CONF 5 System-wide registry configuration file
% Brent Baude % Brent Baude
% Aug 2017 % Aug 2017

View File

@ -1,4 +1,4 @@
% CONTAINERS-REGISTRIES.CONF.D(5) % CONTAINERS-REGISTRIES.CONF.D 5
% Valentin Rothberg % Valentin Rothberg
% Mar 2020 % Mar 2020

View File

@ -1,4 +1,4 @@
% CONTAINERS-REGISTRIES.D(5) Registries.d Man Page % containers-registries.d 5 Registries.d Man Page
% Miloslav Trmač % Miloslav Trmač
% August 2016 % August 2016

View File

@ -1,9 +1,11 @@
% container-signature(5) Container signature format % container-signature 5 Container signature format
% Miloslav Trmač % Miloslav Trmač
% March 2017 % March 2017
# Container signature format # NAME
container-signature - Container signature format
# DESCRIPTION
This document describes the format of container signatures, This document describes the format of container signatures,
as implemented by the `github.com/containers/image/signature` package. as implemented by the `github.com/containers/image/signature` package.

View File

@ -1,4 +1,4 @@
% CONTAINERS-TRANSPORTS(5) Containers Transports Man Page % CONTAINERS-TRANSPORTS 5 Containers Transports Man Page
% Valentin Rothberg % Valentin Rothberg
% April 2019 % April 2019
@ -57,12 +57,12 @@ An image stored in the docker daemon's internal storage.
The image must be specified as a _docker-reference_ or in an alternative _algo:digest_ format when being used as an image source. The image must be specified as a _docker-reference_ or in an alternative _algo:digest_ format when being used as an image source.
The _algo:digest_ refers to the image ID reported by docker-inspect(1). The _algo:digest_ refers to the image ID reported by docker-inspect(1).
### **oci:**_path[:tag]_ ### **oci:**_path[:reference]_
An image compliant with the "Open Container Image Layout Specification" at _path_. An image compliant with the "Open Container Image Layout Specification" at _path_.
Using a _tag_ is optional and allows for storing multiple images at the same _path_. Using a _reference_ is optional and allows for storing multiple images at the same _path_.
### **oci-archive:**_path[:tag]_ ### **oci-archive:**_path[:reference]_
An image compliant with the "Open Container Image Layout Specification" stored as a tar(1) archive at _path_. An image compliant with the "Open Container Image Layout Specification" stored as a tar(1) archive at _path_.