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
19 changes: 19 additions & 0 deletions .tekton/images-mirror-set.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,25 @@ spec:
- source: registry.redhat.io/ubi9/ubi-minimal
mirrors:
- brew.registry.redhat.io/ubi9/ubi-minimal
- source: registry.redhat.io/edo/external-dns-operator-bundle
mirrors:
- quay.io/redhat-user-workloads/external-dns-operator-tenant/ext-dns-optr-1-1-rhel-8/external-dns-operator-bundle-container-ext-dns-optr-1-1-rhel-8
- quay.io/redhat-user-workloads/external-dns-operator-tenant/ext-dns-optr-1-2-rhel-8/external-dns-operator-bundle-container-ext-dns-optr-1-2-rhel-8
- quay.io/redhat-user-workloads/external-dns-operator-tenant/ext-dns-optr-1-3-rhel-9/external-dns-operator-bundle-container-ext-dns-optr-1-3-rhel-9
- source: registry.redhat.io/edo/external-dns-rhel8-operator
mirrors:
- quay.io/redhat-user-workloads/external-dns-operator-tenant/ext-dns-optr-1-1-rhel-8/external-dns-operator-container-ext-dns-optr-1-1-rhel-8
- quay.io/redhat-user-workloads/external-dns-operator-tenant/ext-dns-optr-1-2-rhel-8/external-dns-operator-container-ext-dns-optr-1-2-rhel-8
- source: registry.redhat.io/edo/external-dns-rhel8
mirrors:
- quay.io/redhat-user-workloads/external-dns-operator-tenant/ext-dns-optr-1-1-rhel-8/external-dns-container-ext-dns-optr-1-1-rhel-8
- quay.io/redhat-user-workloads/external-dns-operator-tenant/ext-dns-optr-1-2-rhel-8/external-dns-container-ext-dns-optr-1-2-rhel-8
- source: registry.redhat.io/edo/external-dns-rhel9-operator
mirrors:
- quay.io/redhat-user-workloads/external-dns-operator-tenant/ext-dns-optr-1-3-rhel-9/external-dns-operator-container-ext-dns-optr-1-3-rhel-9
- source: registry.redhat.io/edo/external-dns-rhel9
mirrors:
- quay.io/redhat-user-workloads/external-dns-operator-tenant/ext-dns-optr-1-3-rhel-9/external-dns-container-ext-dns-optr-1-3-rhel-9
- source: registry.stage.redhat.io/edo/external-dns-operator-bundle
mirrors:
- quay.io/redhat-user-workloads/external-dns-operator-tenant/ext-dns-optr-1-1-rhel-8/external-dns-operator-bundle-container-ext-dns-optr-1-1-rhel-8
Expand Down
13 changes: 7 additions & 6 deletions .tekton/pipelines/deploy-fbc-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,6 @@ spec:
workspaces:
- name: shared-data
results:
- name: serializedMirrorSetYaml
description: "A serialized string of an ImageDigestMirrorSet YAML, where each mirror entry is formatted with escaped newlines to preserve structure in a single-line format"
- name: scorecardConfigImages
description: "Images pulled from the scorecard config YAML."
steps:
Expand Down Expand Up @@ -215,8 +213,7 @@ spec:

serialized_mirror_set=$(serialize_image_mirrors_yaml "${mirror_set_yaml}")
echo "Serialized image mirror set: $serialized_mirror_set"

echo -e "$serialized_mirror_set" > "$(results.serializedMirrorSetYaml.path)"
echo -e "$serialized_mirror_set" > "$(workspaces.shared-data.path)/serializedMirrorSetYaml"

# Fetch scorecard config
scorecard_config_url="${SOURCE_GIT_URL}/raw/${SOURCE_GIT_REVISION}/bundle/tests/scorecard/config.yaml"
Expand Down Expand Up @@ -438,7 +435,11 @@ spec:
- input: $(tasks.parse-metadata.results.test-event-type)
operator: in
values: ["pull_request", "ok-to-test-comment", "retest-all-comment"]
workspaces:
- name: shared-data
taskSpec:
workspaces:
- name: shared-data
results:
- name: clusterName
value: "$(steps.create-cluster.results.clusterName)"
Expand Down Expand Up @@ -473,8 +474,8 @@ spec:
value: "$(steps.get-latest-version-tag.results.version)"
- name: instanceType
value: "$(tasks.pick-cluster-params.results.bundleArch)"
- name: imageContentSources
value: "$(tasks.fetch-config-files.results.serializedMirrorSetYaml)"
- name: imageContentSourcesFile
value: "$(workspaces.shared-data.path)/serializedMirrorSetYaml"
- name: deploy-operator
runAfter:
- provision-cluster
Expand Down