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

feat(STONEINTG-948): migrate redhat-appstudio/clair-in-ci #30

Merged
merged 1 commit into from
Jan 20, 2025
Merged
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
10 changes: 5 additions & 5 deletions .tekton/build_and_trigger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ spec:
pipeline: "2h"
params:
- name: output-image
value: quay.io/redhat-appstudio/clair-in-ci:to_test
value: quay.io/konflux-ci/clair-in-ci:to_test
- name: builder-image
value: registry.access.redhat.com/ubi9/buildah:9.0.0-19@sha256:c8b1d312815452964885680fc5bc8d99b3bfe9b6961228c71a09c72ca8e915eb
- name: dockerfile
Expand All @@ -24,7 +24,7 @@ spec:
- name: event_type
value: "{{ event_type }}"
- name: registry-url
value: "quay.io/redhat-appstudio"
value: "quay.io/konflux-ci"
- name: registry-username
value: "{{ registry_username }}"
- name: registry-password
Josh-Everett marked this conversation as resolved.
Show resolved Hide resolved
Expand Down Expand Up @@ -119,7 +119,7 @@ spec:
kind: ClusterTask
params:
- name: IMAGE
value: "quay.io/redhat-appstudio/clair-in-ci:$(tasks.calculate-tag.results.image_tag)"
value: "quay.io/konflux-ci/clair-in-ci:$(tasks.calculate-tag.results.image_tag)"
- name: BUILDER_IMAGE
value: $(params.builder-image)
- name: DOCKERFILE
Expand All @@ -130,13 +130,13 @@ spec:
taskSpec:
steps:
- name: test-clair-version
image: quay.io/redhat-appstudio/clair-in-ci:$(tasks.calculate-tag.results.image_tag)
image: quay.io/konflux-ci/clair-in-ci:$(tasks.calculate-tag.results.image_tag)
script: |
#!/usr/bin/env bash
echo "See current version of Clair below:"
clair-action --version
- name: get-clair-output
image: quay.io/redhat-appstudio/clair-in-ci:$(tasks.calculate-tag.results.image_tag)
image: quay.io/konflux-ci/clair-in-ci:$(tasks.calculate-tag.results.image_tag)
script: |
#!/usr/bin/env bash
echo "Test real life usage of Clair"
Expand Down