Open ribetm opened 12 months ago
Hi @ribetm,
Thanks for bringing this to our attention. I've confirmed this behavior as well
helm install --dry-run --debug -f values.yaml vector vector/vector
with the following values.yaml file.
customConfig:
sinks:
some_output:
type: socket
inputs: []
mode: tcp
address: "example.com:1234"
As you've noted, 1234
should not be included as a container port.
As a workaround for now, you can manually specify the containerPorts
in the values.yaml file to avoid exposing that port.
AFAICT: this applies to all sinks that are not pull based, not just sockets
I have an Aggregator v0.23 (chart 0.31.0) with the following customConfig:
which automatically adds a containerPort to my StatefulSet:
As far as I know this is not necessary. Am I missing something ? Is it possible to avoid this ?
Thank you