-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
vagrant cloud cpu architecture support added (#1546)
* vagrant cloud cpu architecture support added
- Loading branch information
Showing
12 changed files
with
91 additions
and
360 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ Bento is a project that encapsulates [Packer](https://www.packer.io/) templates | |
|
||
***NOTE:** | ||
|
||
- Vagrant 2.4.0+ is required for new cpu archetecture support | ||
- Virutalbox 6.x requires disabling nat config that allows vbox 7.x guests to connect to the host. To use comment out lines #161 and #162 in bento/packer_templates/pkr-variables.pkr.hcl or add variable `vboxmanage = []` to os_pkrvars files. | ||
- When running packer build command the output directory is relative to the working directory the command is currently running in. Suggest running packer build commands from bento root directory for build working files to be placed in bento/builds/(build_name) directory by default. If the output_directory variable isn't overwritten a directory called builds/(build_name) will be created in the current working directory that you are running the command from | ||
|
||
|
@@ -28,17 +29,18 @@ end | |
#### Requirements | ||
|
||
- [Packer](https://www.packer.io/) >= 1.7.0 | ||
- [Vagrant](https://www.vagrantup.com/) | ||
- [Vagrant](https://www.vagrantup.com/) >= 2.4.0 | ||
- At least one of the following virtualization providers: | ||
- [VirtualBox](https://www.virtualbox.org/) | ||
- [VMware Fusion](https://www.vmware.com/products/fusion.html) | ||
- [VMware Workstation](https://www.vmware.com/products/workstation-pro.html) | ||
- [Parallels Desktop Pro](https://www.parallels.com/products/desktop/)*2 also requires [Parallels Virtualization SDK](https://www.parallels.com/products/desktop/download/) for versions < 19.x | ||
- [qemu](https://www.qemu.org/) *1 | ||
- [Hyper-V](https://docs.microsoft.com/en-us/virtualization/hyper-v-on-windows/about/) *1 | ||
- [VirtualBox](https://www.virtualbox.org/)*2 | ||
- [VMware Fusion](https://www.vmware.com/products/fusion.html)*2 | ||
- [VMware Workstation](https://www.vmware.com/products/workstation-pro.html)*2 | ||
- [Parallels Desktop Pro](https://www.parallels.com/products/desktop/) also requires [Parallels Virtualization SDK](https://www.parallels.com/products/desktop/download/) for versions < 19.x | ||
- [qemu](https://www.qemu.org/) *1 *2 | ||
- [Hyper-V](https://docs.microsoft.com/en-us/virtualization/hyper-v-on-windows/about/) *1 *2 | ||
|
||
*1**NOTE:** support for these providers is considered experimental and corresponding Vagrant Cloud images may or may not exist. | ||
*2**NOTE:** AARCH64 or ARM64 support is only guaranteed through parallels provider. | ||
*1 **NOTE:** support for these providers is considered experimental and corresponding Vagrant Cloud images may or may not exist. | ||
|
||
*2 **NOTE:** AARCH64 or ARM64 support is a work in progress only guaranteed through parallels and vmware provider. | ||
|
||
### Using `bento` executable | ||
|
||
|
@@ -196,7 +198,7 @@ These basebox templates were converted from [veewee](https://github.com/jedi4eve | |
- Author: Corey Hemminger ([[email protected]](mailto:[email protected])) | ||
|
||
```text | ||
Copyright 2012-2023, Progress Software, Inc. (<[email protected]>) | ||
Copyright 2012-2024, Progress Software, Inc. (<[email protected]>) | ||
Copyright 2011-2012, Tim Dysinger (<[email protected]>) | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module Bento | ||
VERSION = '3.2.2'.freeze | ||
VERSION = '4.0.0'.freeze | ||
end |
Oops, something went wrong.