1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
|
================================================
Ansible Podman modules and plugins Release Notes
================================================
.. contents:: Topics
v1.13.0
=======
Release Summary
---------------
Quadlet support for Podman
Major Changes
-------------
- Add quadlet support for Podman modules
Bugfixes
--------
- Fix pod info for non-existant pods
v1.12.1
=======
Release Summary
---------------
Support for Podman v5 and bugfixes
Minor Changes
-------------
- CI - Fix rootfs test in CI
- CI - add custom podman path to tasks
- CI - add parametrized executables to tests
- podman_container - Add pasta as default network mode after v5
- podman_container_exec - Return data for podman exec module
- podman_generate_systemd - Fix broken example for podman_generate_systemd (#708)
- podman_login - Update podman_login.py
- podman_play - Add support for kube yaml files with multi-documents (#724)
- podman_play - Update the logic for deleting pods/containers in podman_play
- podman_pod_info - handle return being list in Podman 5 (#713)
Bugfixes
--------
- podman_container - Add check and fixed for v5 network diff
- podman_container - Fix pasta networking idempotency for v5 (#728)
- podman_container_exec - Remove unnecessary quotes in podman_container_exec module
- podman_image_info - Fix wrong return data type in podman_image_info
- podman_play - Fix kube play annotations
- podman_pod - Fix broken info of pods in Podman v5
- podman_pod - Fix pod for Podman v5
- podman_pod - Fix podman pod v5 broken info issue
v1.12.0
=======
Release Summary
---------------
New podman_secret_info module, improvements and bugfixes
Minor Changes
-------------
- Add log_opt and annotaion options to podman_play module
- Add option to parse CreateCommand easily for diff calc
- Add support for setting underlying interface in podman_network
- Alias generate systemd options stop_timeout and time
- Fix CI rootfs for podman_container
- Fix broken conmon version in CI install
- Improve security_opt comparison between existing container
- podman_container - Add new arguments to podman status commands
- podman_container - Update env_file to accept a list of files instead of a single file
- podman_secret_info - Add secrets info module
Bugfixes
--------
- Add idempotency for podman_secret module
- Catch exceptions when no JSON output in podman_image
- Fail if systemd generation failed and it's explicitly set
- Fix example name
- Fix idempotency for podman_network
- Fix idempotency when using 0.0.0.0 in ports
- Fix multi-image support for podman_save
- Fix volume inspection by name in podman_volume
- Recreate stopped containers if recreate flag is enabled
New Modules
-----------
- containers.podman.podman_secret_info - Secrets info module
v1.11.0
=======
Minor Changes
-------------
- Update docs
v1.10.4
=======
Release Summary
---------------
Bugfixes and new modules
Minor Changes
-------------
- podman_container - Add support for health-on-failure action
- podman_image -Add target support for podman build image
- podman_play - Add build and context_dir option to podman_play
- podman_pod - Add options for resource limits to podman_pod
Bugfixes
--------
- Fix common file for Python 2.7
- podman_network - Do not force network removal by default
- podman_network - Fix network DNS enable idempotency issue
- podman_pod - Fix idempotency when running inside Podman container
New Modules
-----------
- containers.podman.podman_container_exec - Executes a command in a running container
- containers.podman.podman_runlabel - Run given label from given image
v1.10.3
=======
Release Summary
---------------
Bugfixes and new options for modules
Bugfixes
--------
- podman_container - Add diff and change detection to systemd generation
- podman_container - Add example with quotes in command to docs
- podman_container - Fix healthcheck issue where defined in image
- podman_container - Fix idempoency issue with PID of container
- podman_container - Fix idempotency for RestartPolicy when MaximumRetryCount
- podman_container - Fix idempotency for devices
- podman_container - Fixed idempotency with cpus parameter
- podman_container - Improve docs about container env_file on remote machine
- podman_container - added cpu_quota parameter to podman_container
- podman_export,podman_import - Adding volume import and export option
- podman_generate_systemd - Add a force field to podman_generate_systemd
- podman_image - Add restart-sec and other options to systemd generation
- podman_image - Fix pulling short image name
v1.10.2
=======
Release Summary
---------------
Bugfixes and docs changes
Bugfixes
--------
- Add hooks-dir parameter for containers
- Add idempotency for restart-policy for containers
- Add missing options to podman network
- Add more explanation about cmd_args command usage
- Add stdout to podman build and push actions
- Added support for "userns" parameter to "play" module
- CI - fix pip installation of the collection
- CI - fix podman play job for 4.4.x versions
- Change yes/no to true/false in the modules
- Convert str to json format before evaluating length.
- Fix CI for newest Ansible branch 2.16
- Fix idempotency for pods with uidmap and gidmap
- Fix idempotency lowercase for devices
- Fix network tests for Podman v4
- Fix podman logout tests for v4
- Fix pylint issues for CI ansible-test
- Fix undesirable splitting of IPv6 host addresses
- Improved documentation of `podman_generate_systemd` module
- Prepare CI for Podman v3 backward compatibility
- Support SHA256 tag for podman images
- Update podman_image to specify CPU arch when pulling image
- added podman_prune module
- become plugin podman_unshare become_user default
- fix for buildah improper remote target
- for pod kube recreate
- pod - Support passing multiple networks with params
- podman-login - fix FIPS md5 issue and registry requirement
- podman-pod - Fix idempotency for pods in 4.4.x versions
- podman_systemd - Ignore header when comparing systemd files content
v1.10.1
=======
Release Summary
---------------
Bugfixes and minor docs changes
Minor Changes
-------------
- Add missed docs for modules
Bugfixes
--------
- podman_systemd_generate - allow empty string for prefixes
- podman_unshare - Fix docs for podman_unshare become plugin
v1.10.0
=======
Release Summary
---------------
New modules, become plugin and bugfixes.
Major Changes
-------------
- New become plugin - podman_unshare
- Podman generate systemd module
Minor Changes
-------------
- Add --sdnotify option for container
- Add example unittest for container lib
- Add protection for systemd files deletion
- Add unittests for Ansible Podman modules
- Check for gha updates weekly using dependabot
- Fix PEP8 issue in podman_image
- Fix building image with buildah and become
- Fix docs issues in podman_image
- Warning about improperly configured remote target
- add required argument to example
- docs - added simple extra_args example
- generate_systemd - implement --wants, --after and --requires
- podman_image - add file parameter for Containerfile location
Bugfixes
--------
- Delete systemd files when container/pod is deleted
- Fix example in systemd generate module
- Fix expanduser in path for systemd generation
- Fix idempotency for labels in pods
- Fix podman load module for Podman 4
- Fix rerunning playbooks with generate_systemd --new
- Improve idempotency for devices mount of rootless podman
- Improve networks idempotency for v4
- Support passing multiple networks with params
- fix pod running status for older podman versions
- podman_container should ensure image by using os path if rootfs is used
v1.9.4
======
Release Summary
---------------
Bugfixes and minor changes
Minor Changes
-------------
- Remove distutils as deprecated
- Run CI on Ubuntu 22.04
- Use 2.13 Ansible version in CI jobs instead of 2.11
Bugfixes
--------
- connection_podman - Add missing docstring for method that executes the podman commands
- podman_container - Change IpcMode default to shareable
- podman_container - Disable memory idempotency
- podman_container - Fix typo in the documentation
- podman_image - Update `podman_image` to remove image with image id
- podman_load - Loop over image names when multiple images present in archive
- podman_login - Fix idempotency for podman_login
- podman_network - Allow specify podman_network options MTU and VLAN separately
- podman_network - Fix internal networks idempotency
- podman_play - Fix play_kube not working when yaml not installed on target
- podman_play - Pass errors as a string instead of list
- podman_pod - Change network attribute from str to list in pods
- podman_pod - Fix pod network idempotency
- podman_pod - Fix pod tests in CI
- podman_pod - Fix pods list retrieve
v1.9.3
======
Release Summary
---------------
Bugfixes and minor changes
Minor Changes
-------------
- Fix sanity issues with a new Ansible version
Bugfixes
--------
- Remove idempotency for log level
v1.9.2
======
Release Summary
---------------
Bugfixes and new requires option for podman_container
Minor Changes
-------------
- Add requires option to podman_container module
Bugfixes
--------
- Add slirp4netns idempotency for pods
- Fix MAC address detection in created container
- Fix check for read-only change of root image in podman_container module
- Fix error with exitcommand for Podman v4
- Fix issue when missing plugins entry in podman_network module
- Fix new requirements for plugins documentation
- Fix podman collection for Podman version 4
- Fix tests for podman_container module
- Strip slashes from volumes
v1.9.1
======
Release Summary
---------------
Bugfixes and new options for Pods
Minor Changes
-------------
- Add new options for pod module
- Use yaml syntax highlighting where appropriate
Bugfixes
--------
- Fix podman_pod_lib behavior for ports published to multiple IPs
- Handle tlsverify correctly in podman_login
- Update secrets description and add test with secret opts
v1.9.0
======
Release Summary
---------------
New podman_tag module and fixes
Major Changes
-------------
- Add podman_tag module
- Add secrets driver and driver opts support
Minor Changes
-------------
- Add a second example to podman_pod_module.html
Bugfixes
--------
- Don't include shared 'net' if network is host in pods
New Modules
-----------
- containers.podman.podman_tag - Add an additional name to a local image
v1.8.3
======
Release Summary
---------------
Bugfixes
Bugfixes
--------
- Add documentations for generate_systemd
- Hardcode RT signal numbers
- Remove default value of log-driver
- Support --new in generate_systemd
v1.8.2
======
Release Summary
---------------
Fixes for various modules
Bugfixes
--------
- Add option for ansible-core in RPM spec file
- Add skip option for podman secret
- Add support for network-alias flag
- Allow to actually pass a list of string for "mounts"
- Don't add newlines to secrets
- Fix issue with podman and exposed ports
- Fix signal diff for truncated and RT signal names
- Support empty strings in prefixes
- Update error message when pull set to false
v1.8.1
======
Release Summary
---------------
Fixes for systemd units generation
Bugfixes
--------
- Add .service extension to systemd files
- Add aliases for image load/save
- Change python version for ansible-core to 3.9
- Fix suboption key in podman_container/podman_pod for generate_systemd documentation
v1.8.0
======
Release Summary
---------------
New modules for images and containers
Major Changes
-------------
- Add systemd generation for pods
- Generate systemd service files for containers
New Modules
-----------
- containers.podman.podman_export - Export a podman container to tar file
- containers.podman.podman_import - Import Podman container from a tar file
- containers.podman.podman_load - Load image from a tar file
- containers.podman.podman_save - Saves podman image to tar file
v1.7.1
======
Release Summary
---------------
Bugfixes and new features
Bugfixes
--------
- Add support for podman pod create --infra-name
- Fix idempotency when containers have a common network
- Remove idempotency leftovers of volumes GID,UID
v1.7.0
======
Release Summary
---------------
New module - Podman secret
Minor Changes
-------------
- Podman secret module
New Modules
-----------
- containers.podman.podman_secret - Manage podman secrets
v1.6.2
======
Release Summary
---------------
Bugfixes for idempotency and pipelining
Bugfixes
--------
- Add meta/runtime.yml which is required for Galaxy now
- Avoid exposing pipelining support for podman connections
- Change present state to be as created state
- Disable no-hosts idempotency
- Fix idempotency with systemd podman files
- Remove idempotency for volume UID/GID
v1.6.1
======
Release Summary
---------------
Bugfix for podman_container_info
Bugfixes
--------
- Fix failure when listing containers
v1.6.0
======
Release Summary
---------------
New module podman_play for playing Kubernetes YAML and bugfixes
Minor Changes
-------------
- Add Ansible 2.11 to all tests and use Ubuntu 20.04
- Add Ansible 2.11 to testing
- Add RPM building scripts
- Add support for timezones in containers
Bugfixes
--------
- Fix ansible-test issues for CI
- Fix idempotency for environment
- Fix ipv6=false issue
- Fix multi-containers options
- Fix overlayfs issue in CI for buildah connection
New Modules
-----------
- containers.podman.podman_play - Play Kubernetes YAML files with Podman
v1.5.0
======
Release Summary
---------------
New module - Podman login
Minor Changes
-------------
- Podman login module
New Modules
-----------
- containers.podman.podman_login - Login to a container registry using podman
v1.4.5
======
Release Summary
---------------
Additional fixes for newest version 3 of Podman
Bugfixes
--------
- Add IPv6 support for publishing ports
- Add sigrtmin+3 signal (required for systemd containers)
- Add support for Podman Pod restart
- Convert IPv6 to shorten form
- Fix error with images info where no images
- Fix idempotency for rootless networks from v3
- Fix no_log for newer ansible-test
- Fix uppercase labels idempotency issue
- Stop pods without recreating them
v1.4.4
======
Release Summary
---------------
Fixes for newest version 3 of Podman
Bugfixes
--------
- Attempt graceful stop when recreating container
- Don't calculate image digest in check mode
- Fix internal networks and DNS plugin for v3
- Fix podman_pod* modules for Podman v3
- Fixes for podman_container for Podman v3
v1.4.3
======
Release Summary
---------------
Documentation fixes and updates
Bugfixes
--------
- Add docs generation
- Update documentation
v1.4.2
======
Release Summary
---------------
Bugfixes for podman container
Bugfixes
--------
- documentation - Add docs to Github
- podman_container - Add 'created' state for podman_container
- podman_container - Change default log level for 3+ versions
- podman_container - Convert systemd option to a string
- podman_container - Don't recreate container if env_file is specified
- podman_container - Fix 'cap_add' and 'cap_drop' idempotency
- podman_container - Fix idempotency for multiple ports
- podman_container - Fix slirp4netns options idempotency
- podman_container - Fix uid/gid checks for podman 1.6.4 volumes
- podman_container - Handle slash removals for root volumes mount
- podman_container - Restart container in a simple manner
- podman_container - podman_container_lib - fix command idempotency
- podman_image - Add debug log and podman_actions to podman_image
- podman_image - Don't set default for validate-certs in podman_image
v1.4.1
======
Release Summary
---------------
Bugfixes for podman container
Bugfixes
--------
- podman_container - Convert gidmap to list for podman_container
- podman_container - Convert log-opts to dictionary and idempotent
v1.4.0
======
Release Summary
---------------
New modules and bugfixes, new network options
Minor Changes
-------------
- podman_container - Add log level for Podman in module
- podman_container - Add mac_address field to podman_container module
- podman_container - Add strict image compare with hashes
- podman_container - Improve compatibility with docker_container by adding aliases
- podman_container - Move containers logic to module utils
- podman_image - reuse existing results in present()
- podman_network - Add IPv6 to network
- podman_network - Add support of network options like MTU, VLAN
- podman_pod - Move pod logic to separate library
Bugfixes
--------
- podman_container - Fix force restart option for containers
- podman_container - Fix idempotency for volume GID and UID
- podman_container - Fix no_hosts idempotency for newer version
- podman_container - Remove 'detach' when creating container
- podman_image - Fix doc defaults for podman_image
- podman_logout - Handle podman logout not logging out when logged in via different tool
- podman_network - Correct IP range example for podman_network
New Modules
-----------
- containers.podman.podman_containers - Manage multiple Podman containers at once
- containers.podman.podman_login_info - Get info about Podman logged in registries
- containers.podman.podman_logout - Log out with Podman from registries
v1.3.2
======
Release Summary
---------------
bugfixes
Bugfixes
--------
- podman_container - Fix signals case for podman_container
v1.3.1
======
Release Summary
---------------
bugfixes
Bugfixes
--------
- multiple modules - fix diff calculation for lower/upper cases
- podman_container - Add note about containerPort setting
- podman_container - Fix init option it's boolean not string
- podman_container - Remove pyyaml from requirements
- podman_network - Check if dnsname plugin installed for CNI
- podman_volume - Set options for a volume as list and fix idempotency
v1.3.0
======
Release Summary
---------------
New podman_network module and bugfixes
Minor Changes
-------------
- Create podman_network module for podman networks management
Bugfixes
--------
- podman_volume - Fix return data from podman_volume module
New Modules
-----------
- containers.podman.podman_network - Manage Podman networks
v1.2.0
======
Release Summary
---------------
Add changelog file.
Minor Changes
-------------
- Add changelog file to collection.
v1.1.4
======
Release Summary
---------------
Pip install and minor fixes.
Minor Changes
-------------
- Add pip installation for podman collection.
v1.1.3
======
Release Summary
---------------
Idempotency fixes for podman containers.
Bugfixes
--------
- podman_container - Fix idempotency for case with = in env
- podman_container - Fix issue with idempotency uts, ipc with pod
v1.1.2
======
Release Summary
---------------
Urgent fix for podman connection plugin.
Bugfixes
--------
- podman_connection - Chown file for users when copy them to container
v1.1.1
======
Release Summary
---------------
New modules for volumes management.
Minor Changes
-------------
- Create podman_volume module for volumes management
Bugfixes
--------
- podman_volume_info - Improve podman volume info tests with new module
New Modules
-----------
- containers.podman.podman_volume - Manage Podman volumes
v1.1.0
======
Release Summary
---------------
New modules for pods management.
Minor Changes
-------------
- Add podman pod and pod info modules
Bugfixes
--------
- podman_container - Fix idempotency for networks and add tests
New Modules
-----------
- containers.podman.podman_pod - Manage Podman pods
- containers.podman.podman_pod_info - Retrieve information about Podman pods
v1.0.5
======
Release Summary
---------------
Idempotency and another bugfixes for podman connection plugin.
Bugfixes
--------
- podman_connection - Add check for empty dir for podman connection mount
- podman_connection - Increase verbosity for mount failure messages
- podman_container - Improve idempotency for volumes with slashesAdd idempotency for ulimits and tests
- podman_container - Improve ports idempotency and support UDP
v1.0.4
======
Release Summary
---------------
Idempotency and Podman v2 fixes
Bugfixes
--------
- podman_container - Add idempotency for ulimits and tests
- podman_container - Fix idempotency for podman > 2 versions
v1.0.3
======
Release Summary
---------------
Relicense under GPLv3 and clean up modules
Minor Changes
-------------
- Relicense under GPLv3 and clean up modules
v1.0.2
======
Release Summary
---------------
Idempotency fixes
Bugfixes
--------
- podman_container - Add idempotency for existing local volumes
v1.0.1
======
Release Summary
---------------
Idempotency and images improvements
Bugfixes
--------
- podman_container - Add inspect of image and user idempotency
- podman_image - Add option for tls_verify=false for images
v1.0.0
======
Release Summary
---------------
Initial release of collection with new modules
Minor Changes
-------------
- buildah_connection - add support of specific user
- buildah_connection - added Buildah connection rootless
- podman_connection - add user flags before container id in podman exec
Bugfixes
--------
- buildah_connection - Fix buildah debug output for py2
- podman_connection - Run pause=false w/o message condition
- podman_container - Add idempotency for user and stop signal
- podman_container - Fix idempotency issues with workdir and volumes
- podman_container - Fix image, healthcheck and other idempotency
- podman_container - Improve idempotency of podman_container in uts, ipc, networks, cpu_shares
- podman_image - only set changed=true if there is a new image
- podman_image - use correct option for remove_signatures flag
New Modules
-----------
- containers.podman.podman_container - Manage Podman containers
- containers.podman.podman_network_info module - Retrieve information about Podman networks
|