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

add rpm signature scan task and update quay ref #2737

Merged
merged 1 commit into from
Nov 6, 2024
Merged
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
10 changes: 6 additions & 4 deletions .tekton/edge-api-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -462,12 +462,14 @@ spec:
workspace: workspace
- name: rpms-signature-scan
params:
- name: image-url
value: $(tasks.build-image-index.results.IMAGE_URL)
- name: image-digest
value: $(tasks.build-image-index.results.IMAGE_DIGEST)
value: $(tasks.build-container.results.IMAGE_DIGEST)
- name: image-url
value: $(tasks.build-container.results.IMAGE_URL)
- name: fail-unsigned
value: true
runAfter:
- build-image-index
- build-container
taskRef:
params:
- name: name
Expand Down
10 changes: 6 additions & 4 deletions .tekton/edge-api-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -459,12 +459,14 @@ spec:
workspace: workspace
- name: rpms-signature-scan
params:
- name: image-url
value: $(tasks.build-image-index.results.IMAGE_URL)
- name: image-digest
value: $(tasks.build-image-index.results.IMAGE_DIGEST)
value: $(tasks.build-container.results.IMAGE_DIGEST)
- name: image-url
value: $(tasks.build-container.results.IMAGE_URL)
- name: fail-unsigned
value: true
runAfter:
- build-image-index
- build-container
taskRef:
params:
- name: name
Expand Down
2 changes: 1 addition & 1 deletion deploy/clowdapp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ parameters:
- description: Image name
name: IMAGE
required: false
value: quay.io/redhat-services-prod/insights-management-tenant/insights-edge/edge-backend
value: quay.io/redhat-services-prod/insights-management-tenant/insights-edge/edge-api
- description: Determines if Clowder deployment is enabled
name: CLOWDER_ENABLED
required: false
Expand Down