You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add the ability for users to override the default provider when creating mahcines. The new flag is `--provider` and allows you to specifiy a valid vmtype for the platform. This PR also removes the previous list test where we tested listing all providers. I added a PR for testing --provider which includes a standard `machine ls` which defaults now to showing all providers.
Signed-off-by: Brent Baude <[email protected]>
Copy file name to clipboardExpand all lines: docs/source/markdown/podman-machine-init.1.md.in
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -96,6 +96,12 @@ Add the provided Ansible playbook to the machine and execute it after the first
96
96
Note: The playbook will be executed with the same privileges given to the user in the virtual machine. The playbook provided cannot include other files from the host system, as they will not be copied.
97
97
Use of the `--playbook` flag will require the image to include Ansible. The default image provided will have Ansible included.
98
98
99
+
100
+
#### **--provider**
101
+
102
+
Specify the provider for the machine to be created. This allows users to override the default provider on platforms
103
+
that have multiple providers.
104
+
99
105
#### **--rootful**
100
106
101
107
Whether this machine prefers rootful (`true`) or rootless (`false`)
@@ -237,6 +243,11 @@ Initialize the default Podman machine with a usb device passthrough with specifi
237
243
$ podman machine init --usb bus=1,devnum=3
238
244
```
239
245
246
+
Initialize a machine on different provider than the default
0 commit comments