Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use quay images in stepAction #156

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
1 change: 1 addition & 0 deletions .konflux/main/component-cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ spec:
application: tekton-caches-main
build-nudges-ref:
- operator-main-bundle
- tekton-caches-main-cache
source:
git:
url: https://github.com/openshift-pipelines/tekton-caches
Expand Down
5 changes: 2 additions & 3 deletions tekton/cache-fetch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,8 @@ spec:
value: $(params.awsCredentialFile)
- name: BLOB_QUERY_PARAMS
value: $(params.blobQueryParams)
# FIXME: use a released version once something is released :)
image: ghcr.io/openshift-pipelines/tekton-caches/cache:latest
args: ["$(params.patterns[*])"]
image: quay.io/redhat-user-workloads/tekton-ecosystem-tenant/tekton-caches-main/cache@sha256:faca47bb0a096088a1145598dadcc0629ebb574c7cf2f649875defa54aa3af64
args: [ "$(params.patterns[*])" ]
script: |
#!/bin/sh

Expand Down
5 changes: 2 additions & 3 deletions tekton/cache-upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,8 @@ spec:
value: $(params.awsCredentialFile)
- name: BLOB_QUERY_PARAMS
value: $(params.blobQueryParams)
# FIXME: use a released version once something is released :)
image: ghcr.io/openshift-pipelines/tekton-caches/cache:latest
args: ["$(params.patterns[*])"]
image: quay.io/redhat-user-workloads/tekton-ecosystem-tenant/tekton-caches-main/cache@sha256:faca47bb0a096088a1145598dadcc0629ebb574c7cf2f649875defa54aa3af64
args: [ "$(params.patterns[*])" ]
script: |
#!/usr/bin/env sh
set -x
Expand Down
Loading