feat(azure): introduce experimental skip_ready_report for Azure#6771
Merged
Conversation
There are some scenarios where we wish to skip cloud-init's health
ready reporting for Azure when it completes init-local phase.
Prefix it with experimental_ so it's clear it's not supported. We
can rename and document it in the future if we want to keep it.
There are also some edge cases that aren't fully supported as-is
as this process skips fetching ssh keys from wireserver in the cases
that require it (e.g. CRLF or x509 certs).
To test, configure this flag in VM/image:
```yaml
datasource:
Azure:
experimental_skip_ready_report: true
```
Verify behavior in logs:
```bash
$ grep ready_report /var/log/cloud-init.log
2026-02-27 17:57:53,058 - DataSourceAzure.py[DEBUG]: Skipping final health report as experimental_skip_ready_report is enabled.
```
Signed-off-by: Chris Patterson <cpatterson@microsoft.com>
cadejacobson
approved these changes
Mar 2, 2026
Contributor
Author
|
@holmanb @blackboxsw now that the tag cleared, any chance we can merge this? thanks! |
awesomenix
added a commit
to Azure/AgentBaker
that referenced
this pull request
Mar 10, 2026
…ript Bake experimental_skip_ready_report into VHD via cloud.cfg.d to skip cloud-init's built-in health ready report to Azure fabric. Add a standalone Python script (report_ready.py) that can be invoked from CSE to report ready at the appropriate time during node provisioning. Depends on canonical/cloud-init#6771. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
holmanb
approved these changes
Mar 11, 2026
awesomenix
added a commit
to Azure/AgentBaker
that referenced
this pull request
Mar 11, 2026
…ript Bake experimental_skip_ready_report into VHD via cloud.cfg.d to skip cloud-init's built-in health ready report to Azure fabric. Add a standalone Python script (report_ready.py) that can be invoked from CSE to report ready at the appropriate time during node provisioning. Depends on canonical/cloud-init#6771. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
awesomenix
added a commit
to Azure/AgentBaker
that referenced
this pull request
Mar 12, 2026
…ript Bake experimental_skip_ready_report into VHD via cloud.cfg.d to skip cloud-init's built-in health ready report to Azure fabric. Add a standalone Python script (report_ready.py) that can be invoked from CSE to report ready at the appropriate time during node provisioning. Depends on canonical/cloud-init#6771. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
awesomenix
added a commit
to Azure/AgentBaker
that referenced
this pull request
Mar 23, 2026
…ript Bake experimental_skip_ready_report into VHD via cloud.cfg.d to skip cloud-init's built-in health ready report to Azure fabric. Add a standalone Python script (report_ready.py) that can be invoked from CSE to report ready at the appropriate time during node provisioning. Depends on canonical/cloud-init#6771. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
awesomenix
added a commit
to Azure/AgentBaker
that referenced
this pull request
Mar 24, 2026
…ript Bake experimental_skip_ready_report into VHD via cloud.cfg.d to skip cloud-init's built-in health ready report to Azure fabric. Add a standalone Python script (report_ready.py) that can be invoked from CSE to report ready at the appropriate time during node provisioning. Depends on canonical/cloud-init#6771. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
awesomenix
added a commit
to Azure/AgentBaker
that referenced
this pull request
Mar 24, 2026
…ript Bake experimental_skip_ready_report into VHD via cloud.cfg.d to skip cloud-init's built-in health ready report to Azure fabric. Add a standalone Python script (report_ready.py) that can be invoked from CSE to report ready at the appropriate time during node provisioning. Depends on canonical/cloud-init#6771. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
awesomenix
added a commit
to Azure/AgentBaker
that referenced
this pull request
Mar 24, 2026
…ript Bake experimental_skip_ready_report into VHD via cloud.cfg.d to skip cloud-init's built-in health ready report to Azure fabric. Add a standalone Python script (report_ready.py) that can be invoked from CSE to report ready at the appropriate time during node provisioning. Depends on canonical/cloud-init#6771. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
blackboxsw
pushed a commit
to blackboxsw/cloud-init
that referenced
this pull request
Apr 13, 2026
…nical#6771) There are some scenarios where we wish to skip cloud-init's health ready reporting for Azure when it completes init-local phase. Prefix it with experimental_ so it's clear it's not supported. We can rename and document it in the future if we want to keep it. There are also some edge cases that aren't fully supported as-is as this process skips fetching ssh keys from wireserver in the cases that require it (e.g. CRLF or x509 certs). To test, configure this flag in VM/image: ```yaml datasource: Azure: experimental_skip_ready_report: true ``` Verify behavior in logs: ```bash $ grep ready_report /var/log/cloud-init.log 2026-02-27 17:57:53,058 - DataSourceAzure.py[DEBUG]: Skipping final health report as experimental_skip_ready_report is enabled. ``` Signed-off-by: Chris Patterson <cpatterson@microsoft.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
There are some scenarios where we wish to skip cloud-init's health ready reporting for Azure when it completes init-local phase.
Prefix it with experimental_ so it's clear it's not supported. We can rename and document it in the future if we want to keep it. There are also some edge cases that aren't fully supported as-is as this process skips fetching ssh keys from wireserver in the cases that require it (e.g. CRLF or x509 certs).
To test, configure this flag in VM/image:
Verify behavior in logs: