forked from pool/podman
Accepting request 690416 from devel:kubic
OBS-URL: https://build.opensuse.org/request/show/690416 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/podman?expand=0&rev=41
This commit is contained in:
parent
2173e02175
commit
6cf35c19a4
8
_service
8
_service
@ -4,8 +4,8 @@
|
||||
<param name="url">https://github.com/containers/libpod.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="filename">podman</param>
|
||||
<param name="versionformat">1.1.2</param>
|
||||
<param name="revision">v1.1.2</param>
|
||||
<param name="versionformat">1.2.0</param>
|
||||
<param name="revision">v1.2.0</param>
|
||||
</service>
|
||||
|
||||
<service name="set_version" mode="disabled">
|
||||
@ -16,8 +16,8 @@
|
||||
<param name="url">https://github.com/kubernetes-sigs/cri-o.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="filename">conmon</param>
|
||||
<param name="versionformat">1.13.1</param>
|
||||
<param name="revision">v1.13.1</param>
|
||||
<param name="versionformat">1.14.0</param>
|
||||
<param name="revision">v1.14.0</param>
|
||||
</service>
|
||||
|
||||
<service name="recompress" mode="disabled">
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:164f81c6e2cde62094c1583ace2f9c4acfd1634391442faa70a86bfde43c5c7c
|
||||
size 3779600
|
3
conmon-1.14.0.tar.xz
Normal file
3
conmon-1.14.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6a9b75593fd91508222dd539bcbe8deeb0a639d583b88c9c3368f2a2578bc52e
|
||||
size 5052084
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d30999542795bf94efbd408028e3d646b2cc7d544eea8faaaa9dd2516c6614a9
|
||||
size 4246876
|
3
podman-1.2.0.tar.xz
Normal file
3
podman-1.2.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:61eee4e10c191018426e59856d0cfbdb681bd45a0c76bdf4fc8cfe36e7a1ff51
|
||||
size 4325556
|
@ -1,3 +1,28 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 1 14:05:35 UTC 2019 - Richard Brown <rbrown@suse.com>
|
||||
|
||||
- Update to podman 1.2.0
|
||||
* Podman now supports image healthchecks! The podman healthcheck run command was added to manually run healthchecks, and the status of a running healthcheck can be viewed via podman inspect
|
||||
* The podman events command was added to show a stream of significant events
|
||||
* The podman ps command now supports a --watch flag that will refresh its output on a given interval
|
||||
* The podman image tree command was added to show a tree representation of an image's layers
|
||||
* The podman logs command can now display logs for multiple containers at the same time
|
||||
* The podman exec command can now pass file descriptors to the process being executed in the container via the --preserve-fds option
|
||||
* The podman images command can now filter images by reference
|
||||
* The podman system df command was added to show disk usage by Podman
|
||||
* The --add-host option can now be used by containers sharing a network namespace
|
||||
* The podman cp command now has an --extract option to extract the contents of a Tar archive and copy them into the container, instead of copying the archive itself
|
||||
* Podman now allows manually specifying the path of the slirp4netns binary for rootless networking via the --network-cmd-path flag
|
||||
* Rootless Podman can now be used with a single UID and GID, without requiring a full 65536 UIDs/GIDs to be allocated in /etc/subuid and /etc/subgid
|
||||
* The podman runlabel command now supports the --replace option to replace containers using the name requested
|
||||
* Infrastructure containers for Podman pods will now attempt to use the image's CMD and ENTRYPOINT instead of a fixed command
|
||||
* The podman play kube command now supports the HostPath and VolumeMounts YAML fields
|
||||
* Added support to disable creation of resolv.conf or /etc/hosts in containers by specifying --dns=none and --no-hosts, respectively, to podman run and podman create
|
||||
* The podman version command now supports the {{ json . }} template (which outputs JSON)
|
||||
* Podman can now forward ports using the SCTP protocol
|
||||
- Update conmon to cri-o 1.14.0
|
||||
- Stop building for i586 (not supported by upstream, does not build)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 22 21:02:05 UTC 2019 - Flavio Castelli <fcastelli@suse.com>
|
||||
|
||||
|
@ -18,13 +18,13 @@
|
||||
|
||||
%define project github.com/containers/libpod
|
||||
%define conmon_project github.com/kubernetes-sigs/cri-o
|
||||
%define conmonver 1.13.1
|
||||
%define conmonver 1.14.0
|
||||
# Build with libostree-devel in Tumbleweed, Leap 15 and SLES 15
|
||||
%if 0%{?suse_version} >= 1500
|
||||
%define with_libostree 1
|
||||
%endif
|
||||
Name: podman
|
||||
Version: 1.1.2
|
||||
Version: 1.2.0
|
||||
Release: 0
|
||||
Summary: Daemon-less container engine for managing containers, pods and images
|
||||
License: Apache-2.0
|
||||
@ -54,6 +54,8 @@ BuildRequires: golang(API) >= 1.11
|
||||
%ifarch ppc64le
|
||||
#!BuildIgnore: gcc-PIE
|
||||
%endif
|
||||
# i586 not supported, cri-o/conmon does not build
|
||||
ExcludeArch: i586
|
||||
Requires: apparmor-parser
|
||||
Requires: cni
|
||||
Requires: cni-plugins
|
||||
|
Loading…
Reference in New Issue
Block a user