Skip to content

Commit 9a05127

Browse files
committed
Disable TLS verificaton for Podman pushes
Signed-off-by: Nolan Brubaker <nolan@nbrubaker.com>
1 parent 9e7afa7 commit 9a05127

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tiltfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ def build_docker_image(image, context, binary_name, additional_docker_build_comm
276276
command = (
277277
"set -ex\n" +
278278
"podman build -t $EXPECTED_REF --build-arg binary_name=%s --target tilt %s\n" +
279-
"podman push --format=docker $EXPECTED_REF\n"
279+
"podman push --tls-verify=false --format=docker $EXPECTED_REF\n"
280280
) % (binary_name, shlex.quote(bin_context)),
281281
deps = [bin_context],
282282
skips_local_docker = True,

0 commit comments

Comments
 (0)