-
QuestionHello. I'm trying to deploy vector on the kubernetes environment. I have 10 nodes in the cluster. Here is my steps.
※ My first question:
※ My second question: Where should I put config file (vector.yaml)? Thanks. Vector ConfigVector Logs |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Hey @JayJay-K,
Use
You do not put helm upgrade --install vector vector/vector -n vec -f values.yaml |
Beta Was this translation helpful? Give feedback.
Hey @JayJay-K,
Use
vector/vector, the others are legacy. For your use case you might wantrole: Agentso one Vector pod runs on every node. Thevector-0pod name you posted is from the defaultAggregator(StatefulSet) role, which is not what you want here.You do not put
vector.yamlon the host filesystem. The Helm chart renders the config into a Kubernetes ConfigMap and mounts it inside the pod at/etc/vector/vector.yaml. Configure it throughcustomConfigin your Helm values and then install/upgrade with: