Pulsar resilience refactor (#238)

* Add userID control over compose containers
* Split Pulsar out, non-standalone
* Added bookie & zookeeper to Prometheus stats
This commit is contained in:
cybermaggedon 2025-01-02 19:50:23 +00:00 committed by GitHub
parent 44f8ce8834
commit fed7e4ca08
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 162 additions and 23 deletions

View file

@ -22,6 +22,8 @@
with_image:: function(x) self + { image: x },
with_user:: function(x) self + { user: x },
with_command:: function(x) self + { command: x },
with_environment:: function(x) self + {
@ -75,6 +77,10 @@
{ command: container.command }
else {}) +
(if std.objectHas(container, "user") then
{ user: container.user }
else {}) +
(if ! std.isEmpty(container.environment) then
{ environment: container.environment }
else {}) +