Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .packit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
manual_trigger: true
use_internal_tf: true
targets:
- centos-stream-10-x86_64
- fedora-latest-stable
tf_extra_params:
environments:
- settings:
provisioning:
tags:
- m1.large
tmt:
# - settings:
# provisioning:
# tags:
# - m1.large
- tmt:
context:
how: full

Expand All @@ -38,13 +38,13 @@ jobs:
skip_build: true
use_internal_tf: true
targets:
- centos-stream-10-x86_64
- fedora-latest-stable
tf_extra_params:
environments:
- settings:
provisioning:
tags:
- m1.large
tmt:
# - settings:
# provisioning:
# tags:
# - m1.large
- tmt:
context:
how: full
5 changes: 4 additions & 1 deletion .testing-farm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,7 @@ version: 1

environments:
secrets:
GITLAB_CI_TOKEN: "<paste encrypted value here>"
GITLAB_CI_TOKEN:
# TODO automated for `main`
# mfocko
- "ea2a89aa-6a78-40e0-906e-140f623c45b0,Pk5X+XenyDxsMNgX/k/lIehht6kSOi/vBQR8Hm0X8Q5KDcyTcTXk3LgFDQWeoeb3X214aIMmmVHxo0t2UUDhg1S7Yv5pA86oounM+1K2KWoatjpBbn2pK/0G3IkRCxibkm+JJVeBtXzgk3vdTF1SpoQg0IWt708nzmedjjk/1uHoZVG6SW8yv2O3IPS7jZwXK3IUJEA1e3LkhvjN0i8fIlVNwyBRRyMEjF63MbObfvcyylDcc4MRhi+tP+DW45WyVAa5mZoz2OIHosG+7cHQ4ywbpzyGOU+Gqj7/gJpRxntXn+BaM/VHeshy/RUoimwhYUbvhl+XGGmMCyP4jFl3OWyS6ptMlSc9n2vuObZMl5TlRc4nmYE4kgO9pVdE8NvMKsRWqT4djVPm094gYAJNVJmUEmh/AoTLgVxI/WoxxuSTAli1pxz3mC663ChG0WAjOlonCdGGzPttpuKZtrsvHloi66V9cJ3p8Gq3r7waDoL5Hs4h2OJ1tqfMlLv7+Q3UEqziZVdpn+XTPUtay67RcYODrF2XzN4BjFMVY5VteMnmNRqUxy0U0G3rXgA+ftVidLb2YG1S0YvR6DMClpfZpSaSVYgBKJc3VP4tTY6H5Tdii9qYcY63h//1i2lZkC/Aa/0ec6XjDYx4UE+d397b0tx08XpaNf8Mx/01AI5zqyY="
Comment on lines +20 to +23

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

In Testing Farm, secrets must be defined as key-value pairs where the value is a single string. Defining GITLAB_CI_TOKEN as a list (using -) will cause Testing Farm to either fail to parse the configuration or inject the token as a stringified list (e.g., ["ea2a89aa..."]). This will break the git clone command in plans/triage-e2e.fmf which expects a plain token string.

    GITLAB_CI_TOKEN: "ea2a89aa-6a78-40e0-906e-140f623c45b0,Pk5X+XenyDxsMNgX/k/lIehht6kSOi/vBQR8Hm0X8Q5KDcyTcTXk3LgFDQWeoeb3X214aIMmmVHxo0t2UUDhg1S7Yv5pA86oounM+1K2KWoatjpBbn2pK/0G3IkRCxibkm+JJVeBtXzgk3vdTF1SpoQg0IWt708nzmedjjk/1uHoZVG6SW8yv2O3IPS7jZwXK3IUJEA1e3LkhvjN0i8fIlVNwyBRRyMEjF63MbObfvcyylDcc4MRhi+tP+DW45WyVAa5mZoz2OIHosG+7cHQ4ywbpzyGOU+Gqj7/gJpRxntXn+BaM/VHeshy/RUoimwhYUbvhl+XGGmMCyP4jFl3OWyS6ptMlSc9n2vuObZMl5TlRc4nmYE4kgO9pVdE8NvMKsRWqT4djVPm094gYAJNVJmUEmh/AoTLgVxI/WoxxuSTAli1pxz3mC663ChG0WAjOlonCdGGzPttpuKZtrsvHloi66V9cJ3p8Gq3r7waDoL5Hs4h2OJ1tqfMlLv7+Q3UEqziZVdpn+XTPUtay67RcYODrF2XzN4BjFMVY5VteMnmNRqUxy0U0G3rXgA+ftVidLb2YG1S0YvR6DMClpfZpSaSVYgBKJc3VP4tTY6H5Tdii9qYcY63h//1i2lZkC/Aa/0ec6XjDYx4UE+d397b0tx08XpaNf8Mx/01AI5zqyY="

2 changes: 1 addition & 1 deletion plans/triage-e2e.fmf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ prepare:
"https://oauth2:${GITLAB_CI_TOKEN}@gitlab.cee.redhat.com/jotnar-project/testing-jiras.git" \
/tmp/testing-jiras

cp /tmp/testing-jiras/mock_data/*.json \
cp -r /tmp/testing-jiras/mock_data/* \
ymir/agents/tests/e2e/mock_repos/

cp -r /tmp/testing-jiras/jiras/* \
Expand Down
Loading