Skip to content

Commit 1a35e17

Browse files
committed
feat(RELEASE-2158): Support self-hosted Quay
Verify Conforma task should support images that are in a self-hosted Quay instance. This instance has a self-signed CA cert which is implicitly not trusted by 3rd party tools. This can be fixed by mounting the CA bundle to /etc/ssl/certs/, making it trusted. Mount to /mnt/trusted-ca is added to be consistent with other tasks in the pipeline.
1 parent 6d23e20 commit 1a35e17

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

tasks/verify-conforma-konflux-ta/0.1/verify-conforma-konflux-ta.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,13 @@ spec:
224224
volumeMounts:
225225
- mountPath: /var/workdir
226226
name: workdir
227+
- name: trusted-ca
228+
mountPath: /mnt/trusted-ca
229+
readOnly: true
230+
- name: trusted-ca
231+
mountPath: /etc/ssl/certs/ca-custom-bundle.crt
232+
subPath: ca-bundle.crt
233+
readOnly: true
227234
env:
228235
- name: "ORAS_OPTIONS"
229236
value: "$(params.ORAS_OPTIONS)"

0 commit comments

Comments
 (0)