Add instance.share_detach notification

This patch add a notification when a share is detached from an instance.

Manila is the OpenStack Shared Filesystems service.
These series of patches implement changes required in Nova to allow the shares
provided by Manila to be associated with and attached to instances using
virtiofs.

Implements: blueprint libvirt-virtiofs-attach-manila-shares

Change-Id: I203b71a39878c3929b22b53220f58c12c0a4c0b9
This commit is contained in:
René Ribaud
2022-07-22 16:32:37 +02:00
parent 320dca5391
commit 13d45b6d37
7 changed files with 225 additions and 10 deletions
@@ -0,0 +1,8 @@
{
"event_type": "instance.share_detach.end",
"payload": {
"$ref": "common_payloads/InstanceActionSharePayload.json#"
},
"priority": "INFO",
"publisher_id": "nova-api:compute"
}
@@ -0,0 +1,8 @@
{
"event_type": "instance.share_detach.start",
"payload": {
"$ref": "common_payloads/InstanceActionSharePayload.json#"
},
"priority": "INFO",
"publisher_id": "nova-api:compute"
}