Accepting request 595494 from devel:CaaSP:Head:ControllerNode

autosubmit from concourse

OBS-URL: https://build.opensuse.org/request/show/595494
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/podman?expand=0&rev=6
This commit is contained in:
Yuchen Lin 2018-04-11 12:03:27 +00:00 committed by Git OBS Bridge
parent 7372377059
commit ef013948ed
5 changed files with 64 additions and 7 deletions

View File

@ -4,8 +4,8 @@
<param name="url">https://github.com/projectatomic/libpod.git</param>
<param name="scm">git</param>
<param name="filename">podman</param>
<param name="versionformat">0.3.4</param>
<param name="revision">v0.3.4</param>
<param name="versionformat">0.4.1</param>
<param name="revision">v0.4.1</param>
</service>
<service name="recompress" mode="disabled">

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:63e1f0255b3f7fbb56f4392f9922a979565bfeb23cf9af8b06bd0cbd69635a6f
size 4598684

3
podman-0.4.1.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:09d6cd95de5d1ccea1d68e68040bb0675679058307ccd217f5047dd9e61e3393
size 2146600

View File

@ -1,3 +1,42 @@
-------------------------------------------------------------------
Mon Apr 9 07:48:52 UTC 2018 - parlt@suse.com
- Update podman to v0.4.1:
* Remove image via storage if a buildah container is associated
* Add hooks support to podman
* Run images with no names
* Prevent a potential race when stopping containers
* Only allocate tty when -t
* Add conmon-pidfile flag to bash completions/manpages
* --entrypoint= should delete existing entrypoint
* Do not require Init() before Start()
* Ensure dependencies are running before initializing containers
* Add container dependencies to Inspect output
* Vendor in latest containers/image
* Change errorf to warnf in warning removing ctr storage
-------------------------------------------------------------------
Thu Apr 5 06:40:07 UTC 2018 - asarai@suse.com
- Split out podman's basic CNI configuration to podman-cni-config, to avoid
breaking Kubernetes clusters due to misconfigured networking. On openSUSE we
still install this configuration so things "just work" there.
-------------------------------------------------------------------
Tue Apr 3 05:41:54 UTC 2018 - vrothberg@suse.com
- Update podman to v0.3.5:
* Allow sha256: prefix for input
* Add secrets patch to podman
* Only start containers that are not running in pod start
* Check for duplicate names when generating new container and pod names.
* podman: new option --conmon-pidfile=
* Remove dependency on kubernetes
* Vendor in lots of kubernetes stuff to shrink image size
* cmd/podman/run.go: Error nicely when no image found
* Update containers/storage to pick up overlay driver fix
* First tag, untag THEN reload the image
-------------------------------------------------------------------
Mon Mar 26 05:57:07 UTC 2018 - vrothberg@suse.com

View File

@ -22,7 +22,7 @@
%define with_libostree 1
%endif
Name: podman
Version: 0.3.4
Version: 0.4.1
Release: 0
Summary: Debugging tool for pods and images
License: Apache-2.0
@ -53,6 +53,7 @@ Requires: libcontainers-common
Requires: libcontainers-image
Requires: libcontainers-storage
Requires: runc >= 1.0.0~rc4
Recommends: %{name}-cni-config = %{version}
%{go_nostrip}
%if 0%{?with_libostree}
BuildRequires: libostree-devel
@ -71,6 +72,21 @@ by crio.
%prep
%setup -q
%package cni-config
Summary: Basic CNI configuration for podman
Group: System/Management
Requires: %{name} = %{version}
# Our Kubernetes configuration uses a different CNI setup, and if we included
# this (basic) CNI setup in that configuration it can break networking for all
# of the containers. So we only allow installing this on non-Kubic setups.
Conflicts: kubernetes-kubelet
BuildArch: noarch
%description cni-config
A "basic" CNI configuration for podman that makes networking usable for basic
setups. In more complicated setups, users are recommended to write their own
CNI configurations.
%build
# We can't use symlinks here because go-list gets confused by symlinks, so we
# have to copy the source to $HOME/go and then use that as the GOPATH.
@ -124,11 +140,13 @@ install -D -m 0644 completions/bash/podman %{buildroot}/%{_sysconfdir}/bash_comp
# Manpages
%{_mandir}/man1/podman-*
# Configs
%config %{_sysconfdir}/cni/net.d/87-podman-bridge.conflist
%config(noreplace) %{_sysconfdir}/containers/libpod.conf
%dir %{_datadir}/containers
%{_datadir}/containers/libpod.conf
# Completion
%config %{_sysconfdir}/bash_completion.d/podman
%files cni-config
%config %{_sysconfdir}/cni/net.d/87-podman-bridge.conflist
%changelog