EC2 macOS Utils is a CLI-based utility that provides commands for customizing AWS EC2 Mac instances.
Currently, there exists one command (grow) for resizing volumes to their maximum size.
This is done by wrapping diskutil(8), gathering disk information, and resizing the disk.
The utility will be installed by default for all AMIs vended by AWS after December 8, 2021.
ec2-macos-utils is also available as a cask for install and updates via AWS' Homebrew tap.
See the ec2-macos-utils docs for more information.
EC2 macOS Utils supports global flags that can be set with any command. The supported global flags are as follows:
--verboseor-vthis flag enables more detailed information to be outputted.
ec2-macos-utils grow [flags]
The grow command resizes an APFS container to its maximum size.
This is done by fetching all disk and system partition information, repairing the physical device to update partition information, calculating the amount of free space available, and resizing the container to its max size.
Repairing the physical device is necessary in order to properly allocate the amount of available free space.
The grow command should be run with sudo as it requires root access in order to repair the physical disk.
See the grow docs for more information.
ec2-macos-utils can be built using the provided Makefile.
The default target compiles the executable with other targets provided for development & release activities.
Each target has preset values that it uses but these can be overridden and tailored as needed.
This project requires the following build time dependencies:
- Go
- GNU Make
make build
# or, alternatively use the default target to build:
makeThis builds the ec2-macos-utils binary.
make docsThis builds the ec2-macos-utils-docs binary which can be used to generate the latest command docs.
make testThis runs a cover of all Go tests in the package.
make importsRun goimports to reformat source files according to gofmt.
Please feel free to submit issues, fork the repository and send pull requests! See CONTRIBUTING for more information.
See the Security section of CONTRIBUTING for more information.
This project is licensed under the Apache-2.0 License.