Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] ID Device path resolver #343

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open

[WIP] ID Device path resolver #343

wants to merge 8 commits into from

Conversation

ramonskie
Copy link
Contributor

we noticed that the id device path resolver code path always did a fallback to other mechanisms to mount the disk.
and this was due to the fact that the DiskID provided by the agent never matched the actual disk.

with this change you can now add regex patterns and replacements in the agent.json to match the expected disk-id

for example AWS:
provides the disk id as vol-04b2a40747d7e9625 but the actuall disk path is /dev/disks/by-id/nvme-Amazon_Elastic_Block_Store_vol04b2a40747d7e9625

and if we place the following in the agent.json

"DiskIDTransformPattern": "^(vol-(.+))$",
"DiskIDTransformReplacement": "nvme-Amazon_Elastic_Block_Store_vol${2}"

it would be transformed to vme-Amazon_Elastic_Block_Store_vol04b2a40747d7e9625

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Development

Successfully merging this pull request may close these issues.

1 participant