I want to install Vector helm charts on my K8s pod...
# general
c
I want to install Vector helm charts on my K8s pods, but I am not able to pass provider for my below code
Copy code
vector = Chart('vector', ChartOpts(
    fetch_opts={'repo': '<https://helm.vector.dev>'},
    chart='vector'
))
How to pass provider in python?. I have a custom provider code
Copy code
custom_provider = Provider(
    "inflation_provider", kubeconfig=kube_config
)
b
c
Yes @billowy-army-68599 it worked 🙂
❤️ 1