feat(kafka): complete kafka integration - service deployed and verified

This commit is contained in:
ashisgreat22 2026-03-22 01:25:00 +00:00
parent 3858202855
commit 546569caf7
7 changed files with 127 additions and 36 deletions

View file

@ -134,10 +134,17 @@
labels = cfg.runner.labels;
settings = {
container = {
network = "bridge";
network = "host";
};
};
};
};
# Fix: Bind mount Podman socket for gitea-runner
# With DynamicUser=true, SupplementaryGroups doesn't reliably work.
# BindPaths ensures the service can access the socket regardless of group membership.
systemd.services.gitea-runner-default = lib.mkIf cfg.runner.enable {
serviceConfig.BindPaths = [ "/run/podman/podman.sock" ];
};
};
}