We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have an Aggregator v0.23 (chart 0.31.0) with the following customConfig:
sinks: some_output: type: socket inputs: [] mode: tcp address: "example.com:1234"
which automatically adds a containerPort to my StatefulSet:
# Source: vector/templates/statefulset.yaml apiVersion: apps/v1 kind: StatefulSet spec: template: spec: containers: - name: vector ports: - name: some_output containerPort: 1234 protocol: TCP
As far as I know this is not necessary. Am I missing something ? Is it possible to avoid this ?
Thank you
The text was updated successfully, but these errors were encountered:
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.
1234
As a workaround for now, you can manually specify the containerPorts in the values.yaml file to avoid exposing that port.
containerPorts
Sorry, something went wrong.
AFAICT: this applies to all sinks that are not pull based, not just sockets
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: