This is an automated email from the ASF dual-hosted git repository. dahn pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/cloudstack-documentation.git
commit 717903cd3caefcda4d6b2d514df1058cd622cb35 Merge: 2c002f9 4fd0b51 Author: Daan Hoogland <[email protected]> AuthorDate: Thu Jan 16 11:51:08 2025 +0100 Merge release branch 4.20 to main * 4.20: system vm destroy behaviour (#468) Added command to set libvirtd to traditional mode (#462) Add section about Domain VPCs (#410) note: AMQP configuration change (#463) Updating security group documentation (#469) vxlan prefix must be given to prevent interpretation as vlan (#465) Updated note in compute/service offering for enable/disable VM High Availability manager setting (#464) Disable API Key Access for users, accounts and domains (#446) source/_static/images/edit-user-api-key-access.png | Bin 0 -> 95848 bytes .../_static/images/filter-user-api-key-access.png | Bin 0 -> 105624 bytes source/adminguide/accounts.rst | 73 +++++++++++++++++++++ source/adminguide/events.rst | 11 +++- .../multiple_subnets_in_shared_network.rst | 2 + source/adminguide/networking/security_groups.rst | 6 +- .../networking/virtual_private_cloud_config.rst | 20 ++++++ source/adminguide/service_offerings.rst | 18 +++-- source/adminguide/systemvm.rst | 2 +- source/installguide/configuration.rst | 2 + source/installguide/hypervisor/kvm.rst | 6 ++ source/releasenotes/about.rst | 7 ++ 12 files changed, 136 insertions(+), 11 deletions(-) diff --cc source/adminguide/events.rst index 3255ad7,d0827aa..fcb0604 --- a/source/adminguide/events.rst +++ b/source/adminguide/events.rst @@@ -231,22 -221,9 +238,22 @@@ changes can control the behaviour which contains valid kafka configuration properties as documented in http://kafka.apache.org/documentation.html#newproducerconfigs The properties may contain an additional ``topic`` property which if not provided will default to ``cloudstack``. While ``key.serializer`` and ``value.serializer`` are usually required for a producer to correctly start, they may be omitted and - will default to ``org.apache.kafka.common.serialization.StringSerializer``. + will default to ``org.apache.kafka.common.serialization.StringSerializer``. A sample example which will be used by cloudstack for exporting of events + + .. parsed-literal:: + + cat /etc/cloudstack/management/kafka.producer.properties + + bootstrap.servers=<localhost>:9092 + acks=all + topic=cs + retries=1 + + + + - #. Create the folder ``/etc/cloudstack/management/META-INF/cloudstack/core`` + #. Create the folder ``/etc/cloudstack/management/META-INF/cloudstack/event`` #. Inside that folder, open ``spring-event-bus-context.xml``.
