Reputation: 998
I'm installing Elastic Search into my cluster with a helm chart with the following command:
helm -n elasticsearch upgrade --install -f values_elasticsearch.yaml elasticsearch elastic/elasticsearch
This allows me to override the values which is nice, but I'd also like to add an Istio virtual service. Which I believe would require I add a template to the helm chart.
I've considered the following thee options, but not sure what is best practice.
So I'm wondering if there is a better way to do this or which of my options is best.
Upvotes: 1
Views: 1874
Reputation: 178
helm subchart is ideal way
helm dep update
then run the install/upgrade commandUpvotes: 2