Skip to content

Commit f64bb42

Browse files
committed
Remove references to gcr.io/tekton*
Cleanup the remaining refences to tekton-* projects under gcr.io from resources and docs. Signed-off-by: Andrea Frittoli <[email protected]>
1 parent 07a33d1 commit f64bb42

File tree

28 files changed

+60
-51
lines changed

28 files changed

+60
-51
lines changed

bots/buildcaptain/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,5 @@ When connected to [the dogfood cluster](https://github.com/tektoncd/plumbing/blo
5959
6060
```bash
6161
# must be run from the `buildcaptain` dir or it will use the go.mod file one level up
62-
buildcaptain$ KO_DOCKER_REPO=gcr.io/tekton-releases/buildcaptain ko --context dogfood apply -f config/deployment.yaml
62+
buildcaptain$ KO_DOCKER_REPO=ghcr.io/tektoncd/plumbing/buildcaptain ko --context dogfood apply -f config/deployment.yaml
6363
```

bots/mariobot/cmd/mario/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ type triggerErrorPayload struct {
5050
Error string `json:"errorMessage,omitempty"`
5151
}
5252

53-
const defaultRegistry = "gcr.io/tekton-releases/dogfooding"
53+
const defaultRegistry = "ghcr.io/tektoncd/plumbing"
5454

5555
func main() {
5656
secretToken := os.Getenv(envSecret)

bots/mariobot/config/mario.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ spec:
3838
name: mario-github-secret
3939
key: secret-token
4040
- name: CONTAINER_REGISTRY
41-
value: "gcr.io/tekton-releases/dogfooding"
41+
value: "ghcr.io/tektoncd/plumbing"
4242
---
4343
apiVersion: v1
4444
kind: Service

cmd/combine/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $ go run ./ \
1111
ghcr.io/distroless/static \
1212
mcr.microsoft.com/windows/nanoserver:ltsc2022 \
1313
mcr.microsoft.com/windows/nanoserver:ltsc2019 \
14-
gcr.io/MY_PROJECT/combined
14+
ghcr.io/MY_PROJECT/combined
1515
```
1616

1717
This combines a [distroless](https://github.com/distroless/static) base image providing Linux platform support, with two image providing different versions of a Windows base image.
@@ -27,7 +27,7 @@ combine src1 src2 [src...] dst
2727
After running the script, you can check the image's platforms using [`crane`](https://github.com/google/go-containerregistry/blob/main/cmd/crane/README.md):
2828

2929
```
30-
$ crane manifest gcr.io/MY_PROJECT/combined | jq '.manifests[].platform'
30+
$ crane manifest ghcr.io/MY_PROJECT/combined | jq '.manifests[].platform'
3131
{
3232
"architecture": "386",
3333
"os": "linux"

scripts/e2e-tests.sh

+3
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,9 @@ function initialize() {
409409
is_protected_gcr ${KO_DOCKER_REPO} && \
410410
abort "\$KO_DOCKER_REPO set to ${KO_DOCKER_REPO}, which is forbidden"
411411

412+
is_protected_ghcr {KO_DOCKER_REPO} && \
413+
abort "\$KO_DOCKER_REPO set to ${KO_DOCKER_REPO}, which is forbidden"
414+
412415
readonly RUN_TESTS
413416
readonly EMIT_METRICS
414417
readonly GCP_PROJECT

scripts/library.sh

+6
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,12 @@ function is_protected_gcr() {
358358
[[ -n $1 && "$1" =~ "^gcr.io/tekton-(releases|nightly)/?$" ]]
359359
}
360360

361+
# Return whether the given parameter is the tekton release/nightly GCF.
362+
# Parameters: $1 - full GCR name, e.g. gcr.io/tekton-foo-bar
363+
function is_protected_ghcr() {
364+
[[ -n $1 && "$1" =~ "^ghcr.io/tektoncd/?$" ]]
365+
}
366+
361367
# Remove symlinks in a path that are broken or lead outside the repo.
362368
# Parameters: $1 - path name, e.g. vendor
363369
function remove_broken_symlinks() {

tekton/ci/cluster-interceptors/add-pr-body/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ A trigger in an event listener:
7373
The interceptor is installed via `ko`:
7474

7575
```bash
76-
export KO_DOCKER_REPO=gcr.io/tekton-releases/dogfooding
76+
export KO_DOCKER_REPO=ghcr.io/tektoncd/plumbing
7777
ko apply -P -f tekton/ci/cluster-interceptors/add-pr-body/config/
7878
```
7979

tekton/ci/cluster-interceptors/build-id/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@ A trigger in an event listener:
5151
The interceptor is installed via `ko`:
5252

5353
```bash
54-
export KO_DOCKER_REPO=gcr.io/tekton-releases/dogfooding
54+
export KO_DOCKER_REPO=ghcr.io/tektoncd/plumbing
5555
ko apply -P -f tekton/ci/cluster-interceptors/build-id/config/
5656
```

tekton/ci/interceptors/add-pr-body/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ A trigger in an event listener:
8181
The interceptor is installed via `ko`:
8282

8383
```bash
84-
export KO_DOCKER_REPO=gcr.io/tekton-releases/dogfooding
84+
export KO_DOCKER_REPO=ghcr.io/tektoncd/plumbing
8585
ko apply -P -f tekton/ci/interceptors/add-pr-body/config/
8686
```
8787

tekton/ci/interceptors/add-team-members/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ A trigger in an event listener:
106106
107107
The interceptor is installed via `ko`:
108108
```
109-
export KO_DOCKER_REPO=gcr.io/tekton-releases/dogfooding
109+
export KO_DOCKER_REPO=ghcr.io/tektoncd/plumbing
110110
ko apply -P -f tekton/ci/interceptors/add-team-members/config/
111111
```
112112

tekton/ci/jobs/tekton-image-build.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ spec:
8989
- name: package
9090
description: package (and its children) under test
9191
- name: imagePrefix
92-
description: The prefix for the image reference to build
93-
default: gcr.io/tekton-nightly/dogfooding/ci
92+
description: The prefix for the image reference to build - not used
93+
default: ghcr.io/tekton-nightly/dogfooding/ci
9494
workspaces:
9595
- name: sources
9696
description: Workspace where the git repo is prepared for testing

tekton/ci/repos/plumbing/template.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
- name: package
9999
value: $(tt.params.package)
100100
- name: imagePrefix
101-
value: gcr.io/tekton-nightly/dogfooding/ci
101+
value: ghcr.io/tekton-nightly/dogfooding/ci
102102
- apiVersion: tekton.dev/v1beta1
103103
kind: PipelineRun
104104
metadata:

tekton/ci/stepactions/git-batch-merge.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ spec:
6060
default: "false"
6161
- name: gitInitImage
6262
description: The image used where the git-init binary is.
63-
default: "gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/git-init:v0.18.1"
63+
default: "ghcr.io/tektoncd/github.com/tektoncd/pipeline/cmd/git-init:v0.18.1"
6464
type: string
6565
results:
6666
- name: commit

tekton/cronjobs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dedicated trigger template:
1313
nightly builds
1414
* [`image-build`](../resources/images/image-build-trigger.yaml): build
1515
container images and push them to a container repo (by default
16-
gcr.io/tekton-releases/dogfooding/myimage)
16+
ghcr.io/tekton-releases/dogfooding/myimage)
1717
* [`folder`](../resources/cd/folder-template.yaml): trigger deployment
1818
of manifests or overlays in a folder
1919
* [`configmap`](../resources/cd/configmap-template.yaml): trigger

tekton/cronjobs/bases/image-build/trigger-image-build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ spec:
101101
- name: SINK_URL
102102
value: "sink-url"
103103
- name: TARGET_IMAGE
104-
value: "gcr.io/tekton-releases/dogfooding/myimage"
104+
value: "ghcr.io/tekton-releases/dogfooding/myimage"
105105
- name: TAGS
106106
value: "latest"
107107
- name: PLATFORMS
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Tekton Catalog CD - gcr.io/tekton-releases
1+
# Tekton Catalog CD - ghcr.io/tektoncd/catalog
22

33
Cron Job to daily deploy the Tekton catalog to the
4-
gcr.io/tekton-releases container registry project as bundles.
4+
ghcr.io/tektoncd/catalog container registry project as bundles.

tekton/images/koparse/koparse/koparse.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def backwards_compatible_params(container_registry: str, base: str, images: List
129129
arg_parser.add_argument("--path", type=str, required=True,
130130
help="Path to the release.yaml")
131131
arg_parser.add_argument("--container-registry", dest="container_registry", type=str, required=False,
132-
help="Container registry URI and path e.g. gcr.io/tekton-releases")
132+
help="Container registry URI and path e.g. ghcr.io/tektoncd")
133133
arg_parser.add_argument("--base", type=str, required=True,
134134
help="String prefix which is used to find images within the release.yaml")
135135
arg_parser.add_argument("--images", type=str, required=True, nargs="+",

tekton/images/koparse/koparse/test_koparse.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
IMAGE_PATH = "github.com/tektoncd/pipeline/cmd/"
10-
CONTAINER_REGISTRY = "gcr.io/tekton-releases"
10+
CONTAINER_REGISTRY = "ghcr.io/tekton-releases"
1111
IMAGE_BASE = CONTAINER_REGISTRY + "/" + IMAGE_PATH
1212
PATH_TO_TEST_RELEASE_YAML = os.path.join(os.path.dirname(
1313
os.path.abspath(__file__)), "test_release.yaml")
@@ -16,16 +16,16 @@
1616
PATH_TO_WRONG_FILE = os.path.join(os.path.dirname(
1717
os.path.abspath(__file__)), "koparse.py")
1818
BUILT_IMAGES = [
19-
"gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/kubeconfigwriter:v20201022-ceeec6463e.1_1A@sha256:68453f5bb4b76c0eab98964754114d4f79d3a50413872520d8919a6786ea2b35",
20-
"gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/git-init@sha256:7d5520efa2d55e1346c424797988c541327ee52ef810a840b5c6f278a9de934a",
21-
"gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/controller@sha256:bdc6f22a44944c829983c30213091b60f490b41f89577e8492f6a2936be0df41",
22-
"gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/webhook@sha256:cca7069a11aaf0d9d214306d456bc40b2e33e5839429bf07c123ad964d495d8a",
19+
"ghcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/kubeconfigwriter:v20201022-ceeec6463e.1_1A@sha256:68453f5bb4b76c0eab98964754114d4f79d3a50413872520d8919a6786ea2b35",
20+
"ghcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/git-init@sha256:7d5520efa2d55e1346c424797988c541327ee52ef810a840b5c6f278a9de934a",
21+
"ghcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/controller@sha256:bdc6f22a44944c829983c30213091b60f490b41f89577e8492f6a2936be0df41",
22+
"ghcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/webhook@sha256:cca7069a11aaf0d9d214306d456bc40b2e33e5839429bf07c123ad964d495d8a",
2323
]
2424
BUILT_IMAGES_NO_PATH = [
25-
"gcr.io/tekton-releases/kubeconfigwriter-3d37fea0b053ea82d66b7c0bae03dcb0:v20201022-ceeec6463e.1_1A@sha256:68453f5bb4b76c0eab98964754114d4f79d3a50413872520d8919a6786ea2b35",
26-
"gcr.io/tekton-releases/git-init-4874978a9786b6625dd8b6ef2a21aa70@sha256:7d5520efa2d55e1346c424797988c541327ee52ef810a840b5c6f278a9de934a",
27-
"gcr.io/tekton-releases/controller-10a3e32792f33651396d02b6855a6e36@sha256:bdc6f22a44944c829983c30213091b60f490b41f89577e8492f6a2936be0df41",
28-
"gcr.io/tekton-releases/webhook-d4749e605405422fd87700164e31b2d1@sha256:cca7069a11aaf0d9d214306d456bc40b2e33e5839429bf07c123ad964d495d8a",
25+
"ghcr.io/tekton-releases/kubeconfigwriter-3d37fea0b053ea82d66b7c0bae03dcb0:v20201022-ceeec6463e.1_1A@sha256:68453f5bb4b76c0eab98964754114d4f79d3a50413872520d8919a6786ea2b35",
26+
"ghcr.io/tekton-releases/git-init-4874978a9786b6625dd8b6ef2a21aa70@sha256:7d5520efa2d55e1346c424797988c541327ee52ef810a840b5c6f278a9de934a",
27+
"ghcr.io/tekton-releases/controller-10a3e32792f33651396d02b6855a6e36@sha256:bdc6f22a44944c829983c30213091b60f490b41f89577e8492f6a2936be0df41",
28+
"ghcr.io/tekton-releases/webhook-d4749e605405422fd87700164e31b2d1@sha256:cca7069a11aaf0d9d214306d456bc40b2e33e5839429bf07c123ad964d495d8a",
2929
]
3030
EXPECTED_IMAGES = [
3131
"github.com/tektoncd/pipeline/cmd/kubeconfigwriter:v20201022-ceeec6463e.1_1A",

tekton/images/koparse/koparse/test_release.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ metadata:
255255
---
256256
apiVersion: v1
257257
data:
258-
image: gcr.io/k8s-prow/entrypoint@sha256:7c7cd8906ce4982ffee326218e9fc75da2d4896d53cabc9833b9cc8d2d6b2b8f
258+
image: ghcr.io/k8s-prow/entrypoint@sha256:7c7cd8906ce4982ffee326218e9fc75da2d4896d53cabc9833b9cc8d2d6b2b8f
259259
kind: ConfigMap
260260
metadata:
261261
name: config-entrypoint
@@ -312,11 +312,11 @@ spec:
312312
"-logtostderr",
313313
"-stderrthreshold",
314314
"INFO",
315-
"-kubeconfig-writer-image", "gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/kubeconfigwriter:v20201022-ceeec6463e.1_1A@sha256:68453f5bb4b76c0eab98964754114d4f79d3a50413872520d8919a6786ea2b35",
315+
"-kubeconfig-writer-image", "ghcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/kubeconfigwriter:v20201022-ceeec6463e.1_1A@sha256:68453f5bb4b76c0eab98964754114d4f79d3a50413872520d8919a6786ea2b35",
316316
"-git-image",
317-
"gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/git-init@sha256:7d5520efa2d55e1346c424797988c541327ee52ef810a840b5c6f278a9de934a",
317+
"ghcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/git-init@sha256:7d5520efa2d55e1346c424797988c541327ee52ef810a840b5c6f278a9de934a",
318318
]
319-
image: gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/controller@sha256:bdc6f22a44944c829983c30213091b60f490b41f89577e8492f6a2936be0df41
319+
image: ghcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/controller@sha256:bdc6f22a44944c829983c30213091b60f490b41f89577e8492f6a2936be0df41
320320
name: tekton-pipelines-controller
321321
volumeMounts:
322322
- mountPath: /etc/config-logging
@@ -340,7 +340,7 @@ spec:
340340
app: tekton-pipelines-webhook
341341
spec:
342342
containers:
343-
- image: gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/webhook@sha256:cca7069a11aaf0d9d214306d456bc40b2e33e5839429bf07c123ad964d495d8a
343+
- image: ghcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/webhook@sha256:cca7069a11aaf0d9d214306d456bc40b2e33e5839429bf07c123ad964d495d8a
344344
name: webhook
345345
volumeMounts:
346346
- mountPath: /etc/config-logging

tekton/images/koparse/koparse/test_release_no_preserve_path.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ metadata:
255255
---
256256
apiVersion: v1
257257
data:
258-
image: gcr.io/k8s-prow/entrypoint@sha256:7c7cd8906ce4982ffee326218e9fc75da2d4896d53cabc9833b9cc8d2d6b2b8f
258+
image: ghcr.io/k8s-prow/entrypoint@sha256:7c7cd8906ce4982ffee326218e9fc75da2d4896d53cabc9833b9cc8d2d6b2b8f
259259
kind: ConfigMap
260260
metadata:
261261
name: config-entrypoint
@@ -312,11 +312,11 @@ spec:
312312
"-logtostderr",
313313
"-stderrthreshold",
314314
"INFO",
315-
"-kubeconfig-writer-image", "gcr.io/tekton-releases/kubeconfigwriter-3d37fea0b053ea82d66b7c0bae03dcb0:v20201022-ceeec6463e.1_1A@sha256:68453f5bb4b76c0eab98964754114d4f79d3a50413872520d8919a6786ea2b35",
315+
"-kubeconfig-writer-image", "ghcr.io/tekton-releases/kubeconfigwriter-3d37fea0b053ea82d66b7c0bae03dcb0:v20201022-ceeec6463e.1_1A@sha256:68453f5bb4b76c0eab98964754114d4f79d3a50413872520d8919a6786ea2b35",
316316
"-git-image",
317-
"gcr.io/tekton-releases/git-init-4874978a9786b6625dd8b6ef2a21aa70@sha256:7d5520efa2d55e1346c424797988c541327ee52ef810a840b5c6f278a9de934a",
317+
"ghcr.io/tekton-releases/git-init-4874978a9786b6625dd8b6ef2a21aa70@sha256:7d5520efa2d55e1346c424797988c541327ee52ef810a840b5c6f278a9de934a",
318318
]
319-
image: gcr.io/tekton-releases/controller-10a3e32792f33651396d02b6855a6e36@sha256:bdc6f22a44944c829983c30213091b60f490b41f89577e8492f6a2936be0df41
319+
image: ghcr.io/tekton-releases/controller-10a3e32792f33651396d02b6855a6e36@sha256:bdc6f22a44944c829983c30213091b60f490b41f89577e8492f6a2936be0df41
320320
name: tekton-pipelines-controller
321321
volumeMounts:
322322
- mountPath: /etc/config-logging
@@ -340,7 +340,7 @@ spec:
340340
app: tekton-pipelines-webhook
341341
spec:
342342
containers:
343-
- image: gcr.io/tekton-releases/webhook-d4749e605405422fd87700164e31b2d1@sha256:cca7069a11aaf0d9d214306d456bc40b2e33e5839429bf07c123ad964d495d8a
343+
- image: ghcr.io/tekton-releases/webhook-d4749e605405422fd87700164e31b2d1@sha256:cca7069a11aaf0d9d214306d456bc40b2e33e5839429bf07c123ad964d495d8a
344344
name: webhook
345345
volumeMounts:
346346
- mountPath: /etc/config-logging

tekton/resources/cd/cleanup-template.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ spec:
3434
value: $(params.namespace)
3535
steps:
3636
- name: cleanup-pr-tr
37-
image: gcr.io/tekton-releases/dogfooding/tkn
37+
image: ghcr.io/tektoncd/plumbing/tkn
3838
script: |
3939
#!/bin/sh
4040
set -ex

tekton/resources/cd/configmap-template.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ spec:
4646
value: $(params.configMapKey)
4747
steps:
4848
- name: fetch-current-config
49-
image: gcr.io/tekton-releases/dogfooding/kubectl
49+
image: ghcr.io/tektoncd/plumbing/kubectl
5050
script: |
5151
#!/bin/sh
5252
set -ex
@@ -56,7 +56,7 @@ spec:
5656
/workspace/${CONFIG_MAP_KEY} || \
5757
rm /workspace/${CONFIG_MAP_KEY}
5858
- name: deploy
59-
image: gcr.io/tekton-releases/dogfooding/kubectl
59+
image: ghcr.io/tektoncd/plumbing/kubectl
6060
script: |
6161
#!/bin/sh
6262
set -ex

tekton/resources/cd/folder-template.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ spec:
4646
value: $(params.isOverlay)
4747
steps:
4848
- name: deploy-from-folder
49-
image: gcr.io/tekton-releases/dogfooding/kubectl
49+
image: ghcr.io/tektoncd/plumbing/kubectl
5050
script: |
5151
#!/bin/sh
5252
set -ex
@@ -108,7 +108,7 @@ spec:
108108
${RESOURCES_PATH}/DEPLOYABLE_ALL.yaml > ${RESOURCES_PATH}/DEPLOYABLE_not_sa.yaml
109109
110110
- name: deploy-resources
111-
image: gcr.io/tekton-releases/dogfooding/kubectl
111+
image: ghcr.io/tektoncd/plumbing/kubectl
112112
script: |
113113
#!/bin/sh
114114
set -ex

tekton/resources/cd/helm-template.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ spec:
5656
value: $(params.preDeployResources)
5757
steps:
5858
- name: pre-deploy-from-url
59-
image: gcr.io/tekton-releases/dogfooding/kubectl
59+
image: ghcr.io/tektoncd/plumbing/kubectl
6060
script: |
6161
#!/bin/sh
6262
set -ex

tekton/resources/nightly-release/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ are available to be passed down to the release pipelines:
2222
description: The version tag to be applied to published images.
2323
- name: imageRegistry
2424
description: Registry where the images will be published to.
25-
default: gcr.io/tekton-nightly
25+
default: ghcr.io/tektoncd
2626
- name: projectName
2727
description: Name of the Tekton project to release (e.g. pipeline, triggers, etc).
2828
```

tekton/resources/nightly-tests/bastion-p/test_tekton_component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ spec:
2727
description: timeout for the go test runner
2828
default: 45m
2929
- name: container-registry
30-
description: container registry used to push images during tests e.g. gcr.io/tekton-e2e-tests or icr.io/tekton-e2e-tests
30+
description: container registry used to push images during tests e.g. ghcr.io/tekton-e2e-tests or icr.io/tekton-e2e-tests
3131
- name: tags
3232
default: e2e
3333
- name: target-arch

tekton/resources/nightly-tests/bastion-z/test_tekton_component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
description: timeout for the go test runner
1717
default: 30m
1818
- name: container-registry
19-
description: container registry used to push images during tests e.g. gcr.io/tekton-e2e-tests or icr.io/tekton-e2e-tests
19+
description: container registry used to push images during tests e.g. ghcr.io/tekton-e2e-tests or icr.io/tekton-e2e-tests
2020
- name: tags
2121
default: e2e
2222
- name: target-arch

tekton/resources/release/base/github_release.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ spec:
5555
value: $(params.rekor-uuid)
5656
steps:
5757
- name: header
58-
image: gcr.io/tekton-releases/dogfooding/hub
58+
image: ghcr.io/tektoncd/plumbing/hub
5959
script: |
6060
#!/bin/bash
6161
set -ex
@@ -112,7 +112,7 @@ spec:
112112
## Changes
113113
EOF
114114
- name: filter-data
115-
image: gcr.io/tekton-releases/dogfooding/hub
115+
image: ghcr.io/tektoncd/plumbing/hub
116116
workingDir: $(workspaces.shared.path)/repo
117117
script: |
118118
#!/usr/bin/env bash
@@ -237,7 +237,7 @@ spec:
237237
EOF
238238
239239
- name: authors
240-
image: gcr.io/tekton-releases/dogfooding/hub
240+
image: ghcr.io/tektoncd/plumbing/hub
241241
workingDir: $(workspaces.shared.path)/repo
242242
script: |
243243
#!/usr/bin/env bash
@@ -252,7 +252,7 @@ spec:
252252
$(awk -F";" '{ print "* :heart_eyes: @"$1 }' $HOME/pr-notes.csv | sort -u)
253253
EOF
254254
- name: pr-data
255-
image: gcr.io/tekton-releases/dogfooding/hub
255+
image: ghcr.io/tektoncd/plumbing/hub
256256
workingDir: $(workspaces.shared.path)/repo
257257
script: |
258258
#!/usr/bin/env bash
@@ -268,7 +268,7 @@ spec:
268268
-->
269269
EOF
270270
- name: create-draft
271-
image: gcr.io/tekton-releases/dogfooding/hub
271+
image: ghcr.io/tektoncd/plumbing/hub
272272
workingDir: $(workspaces.shared.path)/repo
273273
script: |
274274
#!/usr/bin/env bash

0 commit comments

Comments
 (0)