Skip to content

Commit

Permalink
Use a newer version of ec in task definition
Browse files Browse the repository at this point in the history
This should not be merged until *after*
https://issues.redhat.com/browse/EC-518 is resolved, since right now
there are not v0.2 images of ec pushed out to registry.redhat.io.
(Long story.)

It's expected this will resolve the root cause of
https://issues.redhat.com/browse/RHTAPBUGS-1212

I'm aware of the dire warning at the top of this file, but IIUC this
PR to change ref does indeed belong here.
  • Loading branch information
simonbaird authored and zregvart committed Apr 7, 2024
1 parent 12d947b commit 39ccf50
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,12 @@ spec:

steps:
- name: version
image: registry.redhat.io/rhtas-tech-preview/ec-rhel9:1.0.alpha
image: registry.redhat.io/rhtas-tech-preview/ec-rhel9:0.2
command: [ec]
args:
- version
- name: initialize-tuf
image: registry.redhat.io/rhtas-tech-preview/ec-rhel9:1.0.alpha
image: registry.redhat.io/rhtas-tech-preview/ec-rhel9:0.2
script: |-
set -euo pipefail
Expand All @@ -132,7 +132,7 @@ spec:
- name: TUF_MIRROR
value: "$(params.TUF_MIRROR)"
- name: validate
image: registry.redhat.io/rhtas-tech-preview/ec-rhel9:1.0.alpha
image: registry.redhat.io/rhtas-tech-preview/ec-rhel9:0.2
command: [ec]
args:
- validate
Expand Down Expand Up @@ -180,23 +180,23 @@ spec:
limits:
memory: 2Gi
- name: report
image: registry.redhat.io/rhtas-tech-preview/ec-rhel9:1.0.alpha
image: registry.redhat.io/rhtas-tech-preview/ec-rhel9:0.2
command: [cat]
args:
- "$(params.HOMEDIR)/report.yaml"
- name: report-json
image: registry.redhat.io/rhtas-tech-preview/ec-rhel9:1.0.alpha
image: registry.redhat.io/rhtas-tech-preview/ec-rhel9:0.2
command: [cat]
args:
- "$(params.HOMEDIR)/report-json.json"
- name: summary
image: registry.redhat.io/rhtas-tech-preview/ec-rhel9:1.0.alpha
image: registry.redhat.io/rhtas-tech-preview/ec-rhel9:0.2
command: [jq]
args:
- "."
- "$(results.TEST_OUTPUT.path)"
- name: assert
image: registry.redhat.io/rhtas-tech-preview/ec-rhel9:1.0.alpha
image: registry.redhat.io/rhtas-tech-preview/ec-rhel9:0.2
command: [jq]
args:
- "--argjson"
Expand Down

0 comments on commit 39ccf50

Please sign in to comment.