Results 226 comments of Florian Klink

The "local" part in FileBeat, and host networking bits were not clear to me. I opened https://github.com/talos-systems/talos/pull/4893 to clarify this, PTAL. Note FIleBeat [doesn't seem to support forwarding to Loki...

Yeah, I looked around a bit, and stumbled over https://github.com/rgl/talos-vagrant/commit/c771d754c43ca954f43657d2c65d1ff77be1b1ff. This seems to run a separate docker container with [Vector](https://vector.dev/) to receive and forward logs (see [config](https://github.com/rgl/talos-vagrant/commit/c771d754c43ca954f43657d2c65d1ff77be1b1ff#diff-6b2c26e2f402260e8c3c6246469bab64f973c994cf91b276d07e11b1ac873bb6)), but I assume...

In the case of sending logs via udp, those will be lost. Without reading too much of `internal/app/machined/pkg/runtime/logging`, I assume there's some ring buffer (capped to 1M), so buffering TCP...

I circled back to that, and set up a Deployment with [vector](https://vector.dev/docs/) running inside the cluster. I configured `machine.logging.destinations[]` accordingly: ``` destinations: - endpoint: tcp://vector-headless.talos-logforward.svc:6051 format: json_lines ``` I also...

wow, that was surprising. I opened https://github.com/siderolabs/talos/pull/5845 to make it more clear.

As for Linux, https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html should probably be used as a reference. Do you consider old `.talos/config` to be "user-specific data files" or "user-specific configuration files"? I'd be inclined to the...

Would this also work before `talosctl bootstrap` has run?

As much as this might be useful - Talos doesn't come with rook-ceph pre-installed, so I'm not sure if adding something like that would be a good idea.

Yeah, but where do you draw the line? #5556 and #5555 are for things that are managed by Talos itself (`lifecycle.talos.dev/healthCheck`), but this is an entirely separate piece of software....

This is useful so kubernetes nodes themselves also have IPv6 connectivity between each other, especially in IPv6-only deployments. Same applies to https://github.com/talos-systems/talos/issues/3840. Also note some CNIs (such as flannel) seem...