This commit is contained in:
병준 박 2025-04-16 02:36:41 +00:00
parent 29084b2835
commit 2e1cdf0fea
3 changed files with 1 additions and 11 deletions

View File

@ -52,11 +52,6 @@ spec:
#!/bin/sh #!/bin/sh
set -e set -e
ls -al $HOME
ls -al $HOME/.docker
cat $HOME/.docker/config.json
IMAGE="$(params.imageName):$(params.tag)" IMAGE="$(params.imageName):$(params.tag)"
echo "📦 Using image: $IMAGE" echo "📦 Using image: $IMAGE"
echo -n "$IMAGE" > /tekton/results/imageUrl echo -n "$IMAGE" > /tekton/results/imageUrl

View File

@ -109,7 +109,7 @@ spec:
- name: HOME - name: HOME
value: /workspace/shared/$(params.home) value: /workspace/shared/$(params.home)
- name: SSL_CERT_FILE - name: SSL_CERT_FILE
value: $HOME/cert/$(params.crtFileName)" value: /workspace/shared/$(params.home)/cert/$(params.crtFileName)"
- name: HTTP_PROXY - name: HTTP_PROXY
value: $(params.httpProxy) value: $(params.httpProxy)
- name: HTTPS_PROXY - name: HTTPS_PROXY
@ -120,8 +120,6 @@ spec:
#!/bin/sh #!/bin/sh
set -eu set -eu
ls -al #$HOME
if [ "$(params.sslVerify)" = "false" ]; then if [ "$(params.sslVerify)" = "false" ]; then
echo "[INFO] Disabling SSL verification" echo "[INFO] Disabling SSL verification"
git config --global http.sslVerify false git config --global http.sslVerify false

View File

@ -34,9 +34,6 @@ spec:
#!/usr/bin/env bash #!/usr/bin/env bash
set -e set -e
ls -al $HOME
echo "HOME=$HOME"
echo "🔧 Installing dependencies..." echo "🔧 Installing dependencies..."
pip install --upgrade pip --root-user-action=ignore pip install --upgrade pip --root-user-action=ignore