Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,31 @@ spec:

finally:

# Log when acquire lease was skipped because the partner chose 'undistributed' in pyxis
- name: log-distribution-skip-notice
when:
- input: "$(tasks.acquire-lease.status)"
operator: in
values:
- "None"
taskSpec:
params:
- name: pipeline_image
type: string
- name: operator-distribution
type: string
steps:
- name: log
image: "$(params.pipeline_image)"
script: |
echo "Operator distribution value: $(params.operator-distribution)"
echo "Operator will not be released to any indexes/catalogs"
params:
- name: pipeline_image
value: "$(params.pipeline_image)"
- name: operator-distribution
value: "$(tasks.get-pyxis-certification-data.results.operator_distribution)"

# Release the acquired resource
- name: release-leases
taskRef:
Expand Down
Loading