ff260f07e2
Merge pull request #3069 from mheon/bump-1.3.0
...
Bump to v1.3.0
2019-05-06 19:13:36 +02:00
6e0cb42529
Bump gitvalidation epoch
...
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-06 09:41:21 -04:00
8eb0a1437a
Bump to v1.3.1-dev
...
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-06 09:41:21 -04:00
139afa7431
Bump to v1.3.0
...
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
v1.3.0
2019-05-06 09:41:18 -04:00
a9fc570dd8
Merge pull request #3065 from mheon/release_notes_1.3.0
...
Update release notes for 1.3.0 release
2019-05-06 15:28:51 +02:00
75f4a0d6fa
Update release notes for 1.3.0 release
...
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-05 14:21:43 -04:00
5db7b17d79
Merge pull request #3067 from TomSweeneyRedHat/dev/tsweeney/buildah1.8.2
...
Bump to Buildah v1.8.2
2019-05-04 13:35:49 +02:00
3e5452ceb7
Merge pull request #3066 from mheon/events_libpod_manpage
...
Document events logger options in libpod.conf manpage
2019-05-04 11:15:38 +02:00
066c9277af
Bump to Buildah v1.8.2
...
As the title suggests.
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
2019-05-03 19:24:23 -04:00
4aa90145bf
Merge pull request #2826 from mheon/restart_policy
...
Add restart policy for containers
2019-05-03 23:14:12 +02:00
c5e3d5c7a9
Document events logger options in libpod.conf manpage
...
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-03 16:17:25 -04:00
d3286952e6
Try and fix restart-policy tests
...
Theory: it's SELinux blowing up and preventing us from creating
files as the container. Try and use a fresh dir and :Z to fix.
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-03 14:38:41 -04:00
2658e870d2
Merge pull request #2971 from QiWang19/logoutcheck
...
fix logout message if login only with docker
2019-05-03 20:29:41 +02:00
a6a3269c4e
fix logout message if login only with docker
...
if checkAuth() success but not logged in with podman, assume it's logged in with docker and retrun the message.
Signed-off-by: Qi Wang <qiwan@redhat.com>
2019-05-03 12:52:19 -04:00
fde0dc2a55
Merge pull request #3064 from rhatdan/sysregistriesv2
...
change from sysregistries to sysregistriesv2
2019-05-03 18:46:35 +02:00
ceaaed7810
Fix manpage typos
...
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-03 12:21:32 -04:00
5c4fefa533
Small code fix
...
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-03 11:42:34 -04:00
4d348d7839
Fix 'restart' event in journald
...
Ensure that we can decode the restart event with the new journald
events.
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-03 10:43:14 -04:00
d1a7378aa0
change from sysregistries to sysregistriesv2
...
We want to start supporting the registries.conf format.
Also start showing blocked registries in podman info
Fix sorting so all registries are listed together in podman info.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2019-05-03 10:38:51 -04:00
d7c367aa61
Address review comments on restart policy
...
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-03 10:36:16 -04:00
e1443fe05d
Add a test for restart policy
...
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-03 10:36:16 -04:00
cafb68e301
Add a restart event, and make one during restart policy
...
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-03 10:36:16 -04:00
56356d7027
Restart policy should not run if a container is running
...
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-03 10:36:16 -04:00
948fb5ee64
Restart policy conflicts with the --rm flag
...
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-03 10:36:16 -04:00
7ba1b609aa
Move to using constants for valid restart policy types
...
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-03 10:36:16 -04:00
357e4c37e9
Add manpage information for restart policy
...
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-03 10:36:16 -04:00
f4db6d5cf6
Add support for retry count with --restart flag
...
The on-failure restart option supports restarting only a given
number of times. To do this, we need one additional field in the
DB to track restart count (which conveniently fills a field in
Inspect we weren't populating), plus some plumbing logic.
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-03 10:36:16 -04:00
dc42304f38
Sending signals to containers prevents restart policy
...
Noticed this when testing some behavior with Docker.
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-03 10:36:16 -04:00
0d73ee40b2
Add container restart policy to Libpod & Podman
...
This initial version does not support restart count, but it works
as advertised otherwise.
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-03 10:36:16 -04:00
3fb52f4fbb
Add a StoppedByUser field to the DB
...
This field indicates that a container was explciitly stopped by
an API call, and did not exit naturally. It's used when
implementing restart policy for containers.
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-03 10:36:16 -04:00
0eaba2d56a
Merge pull request #3034 from vrothberg/top-fallback
...
top: fallback to execing ps(1)
2019-05-03 15:16:53 +02:00
a7809fabe5
Merge pull request #2905 from QiWang19/globalvar
...
Add variable for global flags to runlabel
2019-05-03 11:30:51 +02:00
4877e6a947
Merge pull request #3061 from baude/parsecleanup
...
clean up shared/parse/parse.go
2019-05-03 11:20:53 +02:00
0d2d523390
top: fallback to execing ps(1)
...
Fallback to executing ps(1) in case we hit an unknown psgo descriptor.
This ensures backwards compatibility with docker-top, which was purely
ps(1) driven.
Also support comma-separated descriptors as input.
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
2019-05-03 11:20:16 +02:00
d9d9c82184
Merge pull request #2849 from cevich/timestamps
...
Cirrus: timestamp all output script output
2019-05-03 02:14:30 +02:00
f3c494eb28
Merge pull request #2959 from mheon/merge_volume_flags
...
Merge volume flags implementation
2019-05-03 01:30:13 +02:00
3b247d0e20
clean up shared/parse/parse.go
...
prune unused functions and add unit tests for a number of the remaining
ones.
Signed-off-by: baude <bbaude@redhat.com>
2019-05-02 16:13:26 -05:00
139eeb3eb3
Merge pull request #3051 from mheon/podman_migrate_fixes
...
Small fixes for #2950
2019-05-02 22:48:12 +02:00
b5e5585ada
Merge pull request #2985 from baude/generatesystemd
...
Generate Systemd
2019-05-02 22:33:09 +02:00
c18ad2bfd9
Generate systemd unit files for containers
...
the podman generate systemd command will generate a systemd unit file
based on the attributes of an existing container and user inputs. the
command outputs the unit file to stdout for the user to copy or
redirect. it is enabled for the remote client as well.
users can set a restart policy as well as define a stop timeout
override for the container.
Signed-off-by: baude <bbaude@redhat.com>
2019-05-02 14:35:53 -05:00
6bcbb88715
Merge pull request #3060 from mheon/update_cstorage
...
Update c/storage to v1.12.6
2019-05-02 21:28:11 +02:00
bb564b68e1
Fix podman-in-podman volume test
...
When running inside Podman, we get an extra `nodev` mount option.
It doesn't seem to be a bug, more an artifact of running in a
somewhat locked-down container. So instead of checking explicitly
for a set of mount options, just verify the ones we set are
present.
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-02 15:17:03 -04:00
074a26f7a1
Cirrus: Add pipefail confirmation check
...
Signed-off-by: Chris Evich <cevich@redhat.com>
2019-05-02 15:03:16 -04:00
3ab67b9c30
Cirrus: timestamp all output script output
...
Also remove direct time-stamping by CI scripts that would compete.
Signed-off-by: Chris Evich <cevich@redhat.com>
2019-05-02 15:03:15 -04:00
ccf28a89bd
Merge pull request #3039 from mheon/podman_init
...
Add podman init command
2019-05-02 20:45:44 +02:00
3cec403268
Merge pull request #3058 from TomSweeneyRedHat/dev/tsweeney/buidah1.8.1
...
Bump Buildah to v1.8.1, ImageBuilder to v1.1.0
2019-05-02 20:23:16 +02:00
f4f06be9f2
Merge pull request #3035 from baude/remoteport
...
podman-remote port
2019-05-02 19:58:19 +02:00
ee73123285
Update c/storage to v1.12.6
...
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-02 13:54:59 -04:00
4ffd02e550
Merge pull request #3033 from karfau/patch-1
...
add arch linux rootless hints to install.md
2019-05-02 19:19:15 +02:00
4b33914535
Fix typo in init manpage
...
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
2019-05-02 13:13:32 -04:00