Crates.io | azure-init |
lib.rs | azure-init |
version | 0.1.1 |
source | src |
created_at | 2024-03-07 13:31:01.841752 |
updated_at | 2024-03-07 13:31:01.841752 |
description | A reference implementation for provisioning Linux VMs on Azure. |
homepage | https://github.com/Azure/azure-init/ |
repository | https://github.com/Azure/azure-init/ |
max_upload_size | |
id | 1165935 |
size | 59,186 |
A reference implementation for provisioning Linux VMs on Azure.
Azure-init configures Linux guests from provisioning metadata. Contrary to complex guest configuration and customisation systems like e.g. cloud-init, azure-init aims to be minimal. It strictly focuses on basic instance initialisation from Azure metadata.
Azure-init has very few requirements on its environment, so it may run in a very early stage of the boot process.
To install Rust see here: https://www.rust-lang.org/tools/install.
Building this project can be done by going to the base of the repository in the command line and entering the command
cargo build --all
. This project contains two binaries, the main provisioning agent and the functional testing binary,
so this command builds both. These binaries are quite small, but you can build only one by entering
cargo build --bin <binary_name>
and indicating either azure-init
or functional_tests
.
To run the program, you must enter the command cargo run --bin <binary_name>
and indicating the correct binary.
There are two different sets of tests: unit tests and end-to-end (e2e tests). To run unit tests, use cargo test
.
To run end-to-end testing, use make e2e-test
, which will create a test user, ssh directory, place mock ssh keys, and
then clean up the test artifacts afterwards.
Contribution require you to agree to Microsoft's Contributor License Agreement (CLA). Please refer to CONTRIBUTING.md for detailed instructions.
This project adheres to the Microsoft Open Source Code of Conduct. Check out CODE_OF_CONDUCT.md for a brief collection of links and references.
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.