mirror of
https://github.com/tektoncd/catalog.git
synced 2024-11-22 06:02:51 +00:00
7e3478f283
This will fix skopeo tasks to have param for tls-verify flag and update tests accordingly
17 lines
374 B
YAML
17 lines
374 B
YAML
apiVersion: tekton.dev/v1beta1
|
|
kind: TaskRun
|
|
metadata:
|
|
name: skopeo-run
|
|
spec:
|
|
params:
|
|
- name: srcImageURL
|
|
value: docker://quay.io/temp/kubeconfigwriter:v1
|
|
- name: destImageURL
|
|
value: docker://localhost:5000/kube:latest
|
|
- name: destTLSverify
|
|
value: "false"
|
|
taskRef:
|
|
name: skopeo-copy
|
|
workspaces:
|
|
- name: images-url
|
|
emptyDir: {} |