1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
# azure-vm-utils
A collection of utilities and udev rules to make the most of the Linux experience on Azure.
## Quick Start
To build:
```
cmake .
make
```
To install:
```
sudo make install
```
# Executables
## azure-nvme-id
`azure-nvme-id` is a utility to help identify Azure NVMe devices.
To run:
```
sudo azure-nvme-id
```
To run in udev mode:
```
DEVNAME=/dev/nvme0n1 azure-nvme-id --udev
```
# Rules for udev
## 80-azure-disk.rules
Provides helpful symlinks in /dev/disk/azure for local, data, and os disks.
# Testing
## unit tests
There are unit test executables provided to validate functionality at build-time.
They are automatically enabled, but can be disabled with -DENABLE_TESTS=0 passed to cmake.
To build without tests:
```
mkdir build && cd build
cmake .. -DENABLE_TESTS=0
make
```
To build and execute tests:
```
mkdir build && cd build
cmake ..
make
ctest --output-on-failure
```
Optionally, ctest can be skipped in favor of running tests individually:
```
mkdir build && cd build
cmake ..
make
for test in *_tests; do ./$test; done
```
## selfcheck
selfcheck is provided to validate the runtime environment of a VM.
With azure-vm-utils installed in a VM on Azure, simply copy the selfcheck.py executable to the target and
execute with sudo.
```
scp selfcheck/selftest.py $ip: && ssh $ip -- sudo ./selftest.py
```
## test_images
To help automate a spread of tests, test_images provides functional testing for a set of pre-existing images,
assuming azure-vm-utils is already installed. It depends on az-cli, ssh, and ssh-keygen to create VMs
and ssh into them to run the tests.
To run tests against marketplace and community images with azure-vm-utils:
```
SELFTEST_AZURE_SUBSCRIPTION=<subscription id> \
SELFTEST_AZURE_LOCATION=eastus2 \
pytest -v selftest
```
To run tests for custom images and vm sizes, the following variables are supported with comma-separated values:
- SELFTEST_ARM64_IMAGES
- SELFTEST_ARM64_VM_SIZES
- SELFTEST_GEN1_IMAGES
- SELFTEST_GEN1_VM_SIZES
- SELFTEST_GEN2_IMAGES
- SELFTEST_GEN2_VM_SIZES
For example:
```
SELFTEST_AZURE_SUBSCRIPTION=<subscription id> \
SELFTEST_AZURE_LOCATION=eastus2 \
SELFTEST_GEN2_IMAGES=/my/image1,/my/image2,... \
SELFTEST_GEN2_VM_SIZES=Standard_D2ds_v5,Standard_D2ds_v6,... \
pytest -xvvvs -k test_gen2
```
For convenience, the default spread of VM sizes is assumed if SELFTEST_{ARM64|GEN1|GEN2}_VM_SIZES is unset.
If unable to allocate VM, test is "skipped".
Supported environment variables:
- SELFTEST_ADMIN_USERNAME: admin name to configure VMs with
- SELFTEST_ADMIN_PASSWORD: optional password to enable easy serial-console access
- SELFTEST_ARTIFACTS_PATH: directory path to store artifacts under
- SELFTEST_AZURE_LOCATION: location to use
- SELFTEST_AZURE_SUBSCRIPTION: subscription to use
- SELFTEST_HOLD_FAILURES: skip cleanup for failures
- SELFTEST_REBOOTS: number of reboots to perform in test (default=50)
- SELFTEST_RESOURCE_GROUP: optional RG to use, otherwise one is created
# Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
## Trademarks
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](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
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.
|