Hi team :wave::skin-tone-3: can anyone here advis...
# troubleshooting
s
Hi team 👋🏼 can anyone here advise whether we can configure component tags using the Pinot helm charts? Currently we create the brokers and servers in our cluster using helm then add the tags to them using the controller endpoint but ideally we'd like it all done through helm. Is this possible? Thanks in advance
1
m
Not via helm chart, but you can always configure tenant tags via swagger api. cc: @Xiang Fu
s
Thanks for confirming @Mayank!
x
Helm setups machine/deployment level so you need to configure tags by yourself.
👍 1
s
Hi @Xiang Fu just want to eliminate one last thing - is it possible to pass the tag info in through the configmap for each component in the helm templates?
x
You mean tenant tag? That is hard. You need to customize some scripts to auto created tags. Also that requires you to implement it in a way of idempotency
s
Yeah the tenant tag. Where are the scripts I would need to use? Can this be done for the pooling config to?
m
IMHO, it is better to keep the pods separate from tenant-tags. Because you may want to dynamically change tags. Tying them with config-map eliminates that option.
x
You can create a k8s job which just does a curl call after the Pinot is started
s
That makes sense, thank you both for the advice!