Skip to content

Commit

Permalink
Fix double quotes, and unset at the source. (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
skarekrow authored Oct 31, 2024
1 parent a51597c commit 47c0a35
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions konflux_scripts/deploy-iqe-cji.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ main() {
#iqe_env_vars="ENV_VAR1=value1,ENV_VAR2=value2" -- custom set of extra environment variables to set on IQE pod
local iqe_env_vars="${IQE_ENV_VARS}"
local iqe_cji_timeout="${IQE_CJI_TIMEOUT:-10m}"
local iqe_env_vars="${IQE_ENV_VARS:=}"

local selenium_arg=""
if [[ "$selenium" == "true" ]]; then
Expand Down Expand Up @@ -56,8 +57,8 @@ main() {
--env "$iqe_env" \
--cji-name "$cji_name" \
$selenium_arg \
--namespace "$ns" \
"$iqe_env_var_args")
$iqe_env_var_args \
--namespace "$ns")

container=$(oc_wrapper get pod $pod -n $ns -o jsonpath="{.status.containerStatuses[0].name}")
oc_wrapper logs -n $ns $pod -c $container -f &
Expand Down

0 comments on commit 47c0a35

Please sign in to comment.