Skip to content

Commit d73c020

Browse files
authored
Merge pull request #12008 from k8s-infra-cherrypick-robot/cherry-pick-11977-to-release-1.9
[release-1.9] 🌱 Disable TLS verification for Podman pushes inside of Tilt
2 parents aafebd8 + cabb65e commit d73c020

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
@@ -288,7 +288,7 @@ def build_docker_image(image, context, binary_name, additional_docker_build_comm
288288
command = (
289289
"set -ex\n" +
290290
"podman build -t $EXPECTED_REF --build-arg binary_name=%s --target tilt %s\n" +
291-
"podman push --format=docker $EXPECTED_REF\n"
291+
"podman push --tls-verify=false --format=docker $EXPECTED_REF\n"
292292
) % (binary_name, shlex.quote(bin_context)),
293293
deps = [bin_context],
294294
skips_local_docker = True,

0 commit comments

Comments
 (0)