-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge "Versioned notifications for service create and delete"
- Loading branch information
Showing
12 changed files
with
159 additions
and
30 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"priority": "INFO", | ||
"payload": { | ||
"nova_object.namespace": "nova", | ||
"nova_object.name": "ServiceStatusPayload", | ||
"nova_object.version": "1.1", | ||
"nova_object.data": { | ||
"host": "host2", | ||
"disabled": false, | ||
"last_seen_up": null, | ||
"binary": "nova-compute", | ||
"topic": "compute", | ||
"disabled_reason": null, | ||
"report_count": 0, | ||
"forced_down": false, | ||
"version": 23, | ||
"availability_zone": null, | ||
"uuid": "fa69c544-906b-4a6a-a9c6-c1f7a8078c73" | ||
} | ||
}, | ||
"event_type": "service.create", | ||
"publisher_id": "nova-compute:host2" | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"priority": "INFO", | ||
"payload": { | ||
"nova_object.namespace": "nova", | ||
"nova_object.name": "ServiceStatusPayload", | ||
"nova_object.version": "1.1", | ||
"nova_object.data": { | ||
"host": "host2", | ||
"disabled": false, | ||
"last_seen_up": null, | ||
"binary": "nova-compute", | ||
"topic": "compute", | ||
"disabled_reason": null, | ||
"report_count": 0, | ||
"forced_down": false, | ||
"version": 23, | ||
"availability_zone": null, | ||
"uuid": "32887c0a-5063-4d39-826f-4903c241c376" | ||
} | ||
}, | ||
"event_type": "service.delete", | ||
"publisher_id": "nova-compute:host2" | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
7 changes: 7 additions & 0 deletions
7
releasenotes/notes/bp-service-create-destroy-notification-f2f340903eed8f84.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
features: | ||
- | | ||
Added support for service create and destroy versioned notifications. | ||
The ``service.create`` notification will be emitted after the service is | ||
created (so the uuid is available) and also send the ``service.delete`` | ||
notification after the service is deleted. |