Skip to content

Commit

Permalink
dev: fix the tilt development file
Browse files Browse the repository at this point in the history
The name of the variable used by the helm chart to replace the system registry was wrong.

That caused tilt to NOT use its own patched image, making everything useless.

Signed-off-by: Flavio Castelli <fcastelli@suse.com>
  • Loading branch information
flavio committed May 30, 2024
1 parent 94ec1c4 commit 3c25b3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ install = helm(
settings.get('helm_charts_path') + '/charts/kubewarden-controller/',
name='kubewarden-controller',
namespace='kubewarden',
set=['image.repository=' + settings.get('image'), 'global.cattle.SystemDefaultRegistry=' + settings.get('registry')]
set=['image.repository=' + settings.get('image'), 'global.cattle.systemDefaultRegistry=' + settings.get('registry')]
)

objects = decode_yaml_stream(install)
Expand Down

0 comments on commit 3c25b3b

Please sign in to comment.