podman 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. checksums.yaml +7 -0
  2. data/lib/podman.rb +1 -0
  3. data/lib/vagrant/podman/action/build.rb +99 -0
  4. data/lib/vagrant/podman/action/compare_synced_folders.rb +65 -0
  5. data/lib/vagrant/podman/action/connect_networks.rb +80 -0
  6. data/lib/vagrant/podman/action/create.rb +165 -0
  7. data/lib/vagrant/podman/action/destroy.rb +34 -0
  8. data/lib/vagrant/podman/action/destroy_build_image.rb +51 -0
  9. data/lib/vagrant/podman/action/destroy_network.rb +53 -0
  10. data/lib/vagrant/podman/action/forwarded_ports.rb +36 -0
  11. data/lib/vagrant/podman/action/has_ssh.rb +21 -0
  12. data/lib/vagrant/podman/action/host_machine.rb +75 -0
  13. data/lib/vagrant/podman/action/host_machine_build_dir.rb +49 -0
  14. data/lib/vagrant/podman/action/host_machine_port_checker.rb +34 -0
  15. data/lib/vagrant/podman/action/host_machine_port_warning.rb +40 -0
  16. data/lib/vagrant/podman/action/host_machine_required.rb +20 -0
  17. data/lib/vagrant/podman/action/host_machine_sync_folders.rb +176 -0
  18. data/lib/vagrant/podman/action/host_machine_sync_folders_disable.rb +91 -0
  19. data/lib/vagrant/podman/action/init_state.rb +23 -0
  20. data/lib/vagrant/podman/action/is_build.rb +19 -0
  21. data/lib/vagrant/podman/action/is_host_machine_created.rb +32 -0
  22. data/lib/vagrant/podman/action/login.rb +51 -0
  23. data/lib/vagrant/podman/action/prepare_forwarded_port_collision_params.rb +64 -0
  24. data/lib/vagrant/podman/action/prepare_networks.rb +397 -0
  25. data/lib/vagrant/podman/action/prepare_nfs_settings.rb +60 -0
  26. data/lib/vagrant/podman/action/prepare_nfs_valid_ids.rb +22 -0
  27. data/lib/vagrant/podman/action/prepare_ssh.rb +48 -0
  28. data/lib/vagrant/podman/action/pull.rb +30 -0
  29. data/lib/vagrant/podman/action/start.rb +24 -0
  30. data/lib/vagrant/podman/action/stop.rb +24 -0
  31. data/lib/vagrant/podman/action/wait_for_running.rb +71 -0
  32. data/lib/vagrant/podman/action.rb +319 -0
  33. data/lib/vagrant/podman/cap/has_communicator.rb +14 -0
  34. data/lib/vagrant/podman/cap/proxy_machine.rb +15 -0
  35. data/lib/vagrant/podman/cap/public_address.rb +26 -0
  36. data/lib/vagrant/podman/command/exec.rb +112 -0
  37. data/lib/vagrant/podman/command/logs.rb +111 -0
  38. data/lib/vagrant/podman/command/run.rb +76 -0
  39. data/lib/vagrant/podman/communicator.rb +199 -0
  40. data/lib/vagrant/podman/config.rb +368 -0
  41. data/lib/vagrant/podman/driver/compose.rb +315 -0
  42. data/lib/vagrant/podman/driver.rb +417 -0
  43. data/lib/vagrant/podman/errors.rb +108 -0
  44. data/lib/vagrant/podman/executor/local.rb +48 -0
  45. data/lib/vagrant/podman/executor/vagrant.rb +88 -0
  46. data/lib/vagrant/podman/hostmachine/Vagrantfile +3 -0
  47. data/lib/vagrant/podman/plugin.rb +89 -0
  48. data/lib/vagrant/podman/provider.rb +216 -0
  49. data/lib/vagrant/podman/synced_folder.rb +35 -0
  50. data/templates/locales/providers_podman.yml +321 -0
  51. metadata +103 -0
metadata ADDED
@@ -0,0 +1,103 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: podman
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.3
5
+ platform: ruby
6
+ authors:
7
+ - Thiago Melo
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: vagrant
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '2.3'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '2.3'
26
+ description: A Vagrant provider that allows managing containers via Podman.
27
+ email:
28
+ - thiago@oxente.org
29
+ executables: []
30
+ extensions: []
31
+ extra_rdoc_files: []
32
+ files:
33
+ - lib/podman.rb
34
+ - lib/vagrant/podman/action.rb
35
+ - lib/vagrant/podman/action/build.rb
36
+ - lib/vagrant/podman/action/compare_synced_folders.rb
37
+ - lib/vagrant/podman/action/connect_networks.rb
38
+ - lib/vagrant/podman/action/create.rb
39
+ - lib/vagrant/podman/action/destroy.rb
40
+ - lib/vagrant/podman/action/destroy_build_image.rb
41
+ - lib/vagrant/podman/action/destroy_network.rb
42
+ - lib/vagrant/podman/action/forwarded_ports.rb
43
+ - lib/vagrant/podman/action/has_ssh.rb
44
+ - lib/vagrant/podman/action/host_machine.rb
45
+ - lib/vagrant/podman/action/host_machine_build_dir.rb
46
+ - lib/vagrant/podman/action/host_machine_port_checker.rb
47
+ - lib/vagrant/podman/action/host_machine_port_warning.rb
48
+ - lib/vagrant/podman/action/host_machine_required.rb
49
+ - lib/vagrant/podman/action/host_machine_sync_folders.rb
50
+ - lib/vagrant/podman/action/host_machine_sync_folders_disable.rb
51
+ - lib/vagrant/podman/action/init_state.rb
52
+ - lib/vagrant/podman/action/is_build.rb
53
+ - lib/vagrant/podman/action/is_host_machine_created.rb
54
+ - lib/vagrant/podman/action/login.rb
55
+ - lib/vagrant/podman/action/prepare_forwarded_port_collision_params.rb
56
+ - lib/vagrant/podman/action/prepare_networks.rb
57
+ - lib/vagrant/podman/action/prepare_nfs_settings.rb
58
+ - lib/vagrant/podman/action/prepare_nfs_valid_ids.rb
59
+ - lib/vagrant/podman/action/prepare_ssh.rb
60
+ - lib/vagrant/podman/action/pull.rb
61
+ - lib/vagrant/podman/action/start.rb
62
+ - lib/vagrant/podman/action/stop.rb
63
+ - lib/vagrant/podman/action/wait_for_running.rb
64
+ - lib/vagrant/podman/cap/has_communicator.rb
65
+ - lib/vagrant/podman/cap/proxy_machine.rb
66
+ - lib/vagrant/podman/cap/public_address.rb
67
+ - lib/vagrant/podman/command/exec.rb
68
+ - lib/vagrant/podman/command/logs.rb
69
+ - lib/vagrant/podman/command/run.rb
70
+ - lib/vagrant/podman/communicator.rb
71
+ - lib/vagrant/podman/config.rb
72
+ - lib/vagrant/podman/driver.rb
73
+ - lib/vagrant/podman/driver/compose.rb
74
+ - lib/vagrant/podman/errors.rb
75
+ - lib/vagrant/podman/executor/local.rb
76
+ - lib/vagrant/podman/executor/vagrant.rb
77
+ - lib/vagrant/podman/hostmachine/Vagrantfile
78
+ - lib/vagrant/podman/plugin.rb
79
+ - lib/vagrant/podman/provider.rb
80
+ - lib/vagrant/podman/synced_folder.rb
81
+ - templates/locales/providers_podman.yml
82
+ homepage: https://github.com/reiserfs/vagrant-podman
83
+ licenses:
84
+ - AGPL-3.0-or-later
85
+ metadata: {}
86
+ rdoc_options: []
87
+ require_paths:
88
+ - lib
89
+ required_ruby_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ required_rubygems_version: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ version: '0'
99
+ requirements: []
100
+ rubygems_version: 3.6.9
101
+ specification_version: 4
102
+ summary: Podman provider for Vagrant
103
+ test_files: []