Skip to content

Commit

Permalink
Fix skaffold for local dev
Browse files Browse the repository at this point in the history
  • Loading branch information
filippomc committed Oct 8, 2024
1 parent 215a77f commit af3703e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/deployment-cli-tools/ch_cli_tools/skaffold.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def identify_unicorn_based_main(candidates):
'images': [artifact['image'] for artifact in artifacts.values() if artifact['image']]
}
}
if backend == COMPOSE_ENGINE or not helm_values.tag:
if backend == COMPOSE_ENGINE or helm_values.tag and not helm_values.local:
skaffold_conf['build']['tagPolicy'] = {
'envTemplate': {
'template': '"{{.TAG}}"'
Expand Down

0 comments on commit af3703e

Please sign in to comment.