Skip to content

Commit d8cc398

Browse files
committed
Try without hermetic.
1 parent 1a2a1ed commit d8cc398

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

deploy/tasks/buildah-oci-ta.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -405,12 +405,13 @@ spec:
405405
unshare -Ufp --keep-caps -r --map-users 1,1,65536 --map-groups 1,1,65536 -- buildah pull $image
406406
done
407407
echo "Build will be executed with network isolation"
408-
if [ "${DOMAIN_PROXY}" == "true" ]; then
409-
use_domain_proxy=true
410-
echo "Build will be executed with domain proxy"
411-
/app/domain-proxy-server-runner &
412-
server_pid=$!
413-
fi
408+
fi
409+
410+
if [ "${DOMAIN_PROXY}" == "true" ]; then
411+
use_domain_proxy=true
412+
echo "Build will be executed with domain proxy"
413+
/app/domain-proxy-server-runner &
414+
server_pid=$!
414415
fi
415416
416417
if [ -n "${TARGET_STAGE}" ]; then

pkg/reconciler/dependencybuild/buildrecipeyaml.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ func createPipelineSpec(log logr.Logger, tool string, commitTime int64, jbsConfi
535535
Name: "HERMETIC",
536536
Value: tektonpipeline.ParamValue{
537537
Type: tektonpipeline.ParamTypeString,
538-
StringVal: "true",
538+
StringVal: "false",
539539
},
540540
},
541541
{

0 commit comments

Comments
 (0)