-
Notifications
You must be signed in to change notification settings - Fork 14
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
Report failures to Azure via Wireserver with KVP Fallback #170
base: main
Are you sure you want to change the base?
Conversation
a7f05c0
to
f8be2fe
Compare
…lure events; adding unit tests to check formatting according to cloud-init documentation; adding a KVP entry for provisioning success
b9d440e
to
c120b01
Compare
To Do items here:
|
…alth_report, simplifying on_event handling.
09e5f87
to
8ce2f99
Compare
There is a new endpoint which does not require us to fetch goal state and uses json instead of xml.
We don't have to do it in this PR, but I would like to switch over to the new endpoint to avoid dealing with goalstate. The one upside to fetching goalstate is getting the container id. |
24c4c29
to
33297d7
Compare
…() so we can't emit traces there. Instead, move report_success to the provisioing_result block and check for success there or go to failure logic.
a000684
to
9e329e6
Compare
…fig file to force a provisioning failure. There is no goalstate at this point, so have to mimic the behavior without relying on goalstate::report_health.
Soon, we won't need goalstate at all and I can get rid of the CONFIG_HEALTH_MESSAGE and just be able to report_failure. But, that endpoint work will be in a separate PR so the current implementation is just a placeholder in the meantime. See #186 |
This PR introduces failure reporting for provisioning. The changes ensure that if provisioning fails, the error is reported to Azure either via wireserver or, as a fallback, via KVP .
Key Changes
XML Payload for Failure Reporting:
build_report_failure_file
andreport_failure()
functions.<State>
is set to"NotReady"
,<Substatus>
is set to"ProvisioningFailed"
, and<Description>
contains a user-visible error message.Integration in the Provisioning Flow:
provision()
function, when a provisioning error occurs:report_failure()
is called with the appropriate error description.tracing::error!
as a fallback.config report_failure:
report_failure
call where theConfig
is parsed in allows us to force-fail for testing purposes. This will later be changed with the addition ofruncmd
and the new endpoint, but it's the best option to test that functionality for now.Resolves #58.