You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then in the templates we have {{- if .Values.enableExtra1 }}
The issue
This setup still requires us to build all of the images that might be in a Helm chart, and then later we decide whether to include them or not. This is pretty slow for a big Helm chart.
We want to have skaffold selectively build the images based on what will end up in the Helm chart.
The deploy step defines setValueTemplates to override the image tags of all of the images.
What I've tried
Skaffold modules, our deploy step using setValueTemplates to override image tags. I can't see how this can work with a module defined separate to the Helm deploy.
Skaffold profiles, again, couldn't get this to work.
What am I missing? Thanks in advance
The text was updated successfully, but these errors were encountered:
Our setup
What we currently do
skaffold dev -p core,extra1,extra2
{{- if .Values.enableExtra1 }}
The issue
What I've tried
What am I missing? Thanks in advance
The text was updated successfully, but these errors were encountered: