Skip to content

Commit 65c7ab6

Browse files
authored
Merge pull request #11977 from nrb/fix-podman-push
🌱 Disable TLS verification for Podman pushes inside of Tilt
2 parents 9a9b00a + 9a05127 commit 65c7ab6

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)