diff --git a/examples/v1alpha1/taskruns/docker-creds.yaml b/examples/v1alpha1/taskruns/docker-creds.yaml index b012968f359..3061cd53ec0 100644 --- a/examples/v1alpha1/taskruns/docker-creds.yaml +++ b/examples/v1alpha1/taskruns/docker-creds.yaml @@ -37,6 +37,6 @@ spec: taskSpec: steps: - name: test - image: quay.io/rhpipeline/skopeo:alpine + image: gcr.io/tekton-releases/dogfooding/skopeo:latest # Test pulling a private builder container. script: skopeo copy docker://gcr.io/build-crd-testing/secret-sauce dir:///tmp/ diff --git a/examples/v1alpha1/taskruns/pull-private-image.yaml b/examples/v1alpha1/taskruns/pull-private-image.yaml index bf8e3b8f650..027119e88c7 100644 --- a/examples/v1alpha1/taskruns/pull-private-image.yaml +++ b/examples/v1alpha1/taskruns/pull-private-image.yaml @@ -46,5 +46,5 @@ spec: steps: - name: pull # Private image is just Ubuntu - image: quay.io/rhpipeline/skopeo:alpine + image: gcr.io/tekton-releases/dogfooding/skopeo:latest script: skopeo copy docker://gcr.io/build-crd-testing/secret-sauce dir:///tmp/ diff --git a/examples/v1beta1/taskruns/docker-creds.yaml b/examples/v1beta1/taskruns/docker-creds.yaml index 6dccd514b9e..ad2aa6a0ac0 100644 --- a/examples/v1beta1/taskruns/docker-creds.yaml +++ b/examples/v1beta1/taskruns/docker-creds.yaml @@ -37,6 +37,6 @@ spec: taskSpec: steps: - name: test - image: quay.io/rhpipeline/skopeo:alpine + image: gcr.io/tekton-releases/dogfooding/skopeo:latest # Test pulling a private builder container. script: skopeo copy docker://gcr.io/build-crd-testing/secret-sauce dir:///tmp/ diff --git a/examples/v1beta1/taskruns/pull-private-image.yaml b/examples/v1beta1/taskruns/pull-private-image.yaml index 9e09f89ca2b..666d85c1741 100644 --- a/examples/v1beta1/taskruns/pull-private-image.yaml +++ b/examples/v1beta1/taskruns/pull-private-image.yaml @@ -46,5 +46,5 @@ spec: steps: - name: pull # Private image is just Ubuntu - image: quay.io/rhpipeline/skopeo:alpine + image: gcr.io/tekton-releases/dogfooding/skopeo:latest script: skopeo copy docker://gcr.io/build-crd-testing/secret-sauce dir:///tmp/ diff --git a/test/multiarch_utils.go b/test/multiarch_utils.go index f21bb7dc0ab..fc0c548d69f 100644 --- a/test/multiarch_utils.go +++ b/test/multiarch_utils.go @@ -108,8 +108,6 @@ func initExcludedTests() sets.String { "TestExamples/v1alpha1/taskruns/build-gcs-targz", "TestExamples/v1beta1/taskruns/build-gcs-targz", "TestExamples/v1alpha1/taskruns/build-push-kaniko", - "TestExamples/v1alpha1/taskruns/pull-private-image", - "TestExamples/v1beta1/taskruns/pull-private-image", "TestExamples/v1alpha1/pipelineruns/pipelinerun", "TestExamples/v1beta1/pipelineruns/pipelinerun", "TestExamples/v1beta1/taskruns/build-gcs-zip", @@ -123,8 +121,6 @@ func initExcludedTests() sets.String { //e2e "TestHelmDeployPipelineRun", "TestKanikoTaskRun", - "TestPipelineRun/service_account_propagation_and_pipeline_param", - "TestPipelineRun/pipelinerun_succeeds_with_LimitRange_minimum_in_namespace", ) } return sets.NewString() diff --git a/test/pipelinerun_test.go b/test/pipelinerun_test.go index bd25433163c..c3d71217285 100644 --- a/test/pipelinerun_test.go +++ b/test/pipelinerun_test.go @@ -110,7 +110,7 @@ func TestPipelineRun(t *testing.T) { Steps: []v1beta1.Step{{ Container: corev1.Container{ Name: "config-docker", - Image: "quay.io/rhpipeline/skopeo:alpine", + Image: "gcr.io/tekton-releases/dogfooding/skopeo:latest", Command: []string{"skopeo"}, Args: []string{"copy", "$(params.path)", "$(params.dest)"}, }}, @@ -186,7 +186,7 @@ func TestPipelineRun(t *testing.T) { Steps: []v1beta1.Step{{ Container: corev1.Container{ Name: "config-docker", - Image: "quay.io/rhpipeline/skopeo:alpine", + Image: "gcr.io/tekton-releases/dogfooding/skopeo:latest", Command: []string{"skopeo"}, Args: []string{"copy", "$(params.path)", "$(params.dest)"}, }}, diff --git a/test/v1alpha1/pipelinerun_test.go b/test/v1alpha1/pipelinerun_test.go index 7a19822c5e7..50527dfba87 100644 --- a/test/v1alpha1/pipelinerun_test.go +++ b/test/v1alpha1/pipelinerun_test.go @@ -99,7 +99,7 @@ func TestPipelineRun(t *testing.T) { tb.TaskInputs(tb.InputsParamSpec("path", v1alpha1.ParamTypeString), tb.InputsParamSpec("dest", v1alpha1.ParamTypeString)), // Reference build: https://github.com/knative/build/tree/master/test/docker-basic - tb.Step("quay.io/rhpipeline/skopeo:alpine", tb.StepName("config-docker"), + tb.Step("gcr.io/tekton-releases/dogfooding/skopeo:latest", tb.StepName("config-docker"), tb.StepCommand("skopeo"), tb.StepArgs("copy", "$(inputs.params.path)", "$(inputs.params.dest)"), ),