Vector
설치
Reference
helm repo add vector https://helm.vector.dev
helm repo update vector \
&& helm search repo vector/vector -l | head -n 10
helm pull vector/vector --version 0.38.0
helm show values vector/vector --version 0.38.0 > vector-0.38.0.yaml
vector-values.yaml
role: Agent
tolerations: []
customConfig:
data_dir: /vector-data
api:
enabled: true
address: 0.0.0.0:8686
playground: false
sources: {}
transforms: {}
sinks: {}
helm template vector vector-0.38.0.tgz \
-n vector \
-f vector-values.yaml \
> vector.yaml
helm upgrade vector vector-0.38.0.tgz \
--install \
--max-history 5 \
-n vector \
-f vector-values.yaml
삭제
helm uninstall -n vector vector