From 5c032da7baac8a7e6289dd5f227e3f7e2f02df6f Mon Sep 17 00:00:00 2001 From: Aravindhan Ayyanathan Date: Tue, 18 Aug 2026 15:51:03 +0100 Subject: [PATCH] Fix references of `GoogleContainerTools` and `gcr.io/kpt-fn/` Signed-off-by: Aravindhan Ayyanathan --- README.md | 2 +- basens/Kptfile | 4 ++-- cert-manager-basic/README.md | 2 +- ghost/Kptfile | 2 +- ghost/README.md | 2 +- ghost/mariadb/Kptfile | 2 +- ingress-nginx/README.md | 2 +- notes.md | 4 ++-- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d5c642d..3f4a670 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Code is under the [Apache License 2.0](LICENSE), documentation is [CC BY 4.0](LI ## Governance -The governance of the kpt project and KRM Functiona Catalog are described in the +The governance of the kpt project and KRM Functions Catalog are described in the [governance repo](https://github.com/kptdev/governance). ## Code of Conduct diff --git a/basens/Kptfile b/basens/Kptfile index 6af3f17..dd9f4b9 100644 --- a/basens/Kptfile +++ b/basens/Kptfile @@ -8,7 +8,7 @@ info: description: kpt package for provisioning namespace pipeline: mutators: - - image: gcr.io/kpt-fn/set-namespace:v0.4.1 + - image: ghcr.io/kptdev/krm-functions-catalog/set-namespace:latest configPath: package-context.yaml - - image: gcr.io/kpt-fn/apply-replacements:v0.1.1 + - image: ghcr.io/kptdev/krm-functions-catalog/apply-replacements:latest configPath: update-rolebinding.yaml diff --git a/cert-manager-basic/README.md b/cert-manager-basic/README.md index 45121da..945a472 100644 --- a/cert-manager-basic/README.md +++ b/cert-manager-basic/README.md @@ -9,7 +9,7 @@ CertManager kpt package. ### Fetch the package ```sh -kpt pkg get git@github.com/googlecontainertools/kpt.git/package-examples/cert-manager-basic[@VERSION] cert-manager-basic +kpt pkg get git@github.com:kptdev/kpt-samples.git/cert-manager-basic[@VERSION] cert-manager-basic ``` ### View package content diff --git a/ghost/Kptfile b/ghost/Kptfile index 8878e94..3701834 100644 --- a/ghost/Kptfile +++ b/ghost/Kptfile @@ -8,5 +8,5 @@ info: description: Package for Ghost application. pipeline: mutators: - - image: gcr.io/kpt-fn/set-namespace:v0.3.4 + - image: ghcr.io/kptdev/krm-functions-catalog/set-namespace:latest configPath: package-context.yaml diff --git a/ghost/README.md b/ghost/README.md index 98846c5..93d9d64 100644 --- a/ghost/README.md +++ b/ghost/README.md @@ -12,7 +12,7 @@ export NAMESPACE= kubectl create namespace ${NAMESPACE} # You get this Ghost package by running -kpt pkg get https://github.com/GoogleContainerTools/kpt.git/package-examples/ghost@main ${NAMESPACE} --for-deployment +kpt pkg get https://github.com/kptdev/kpt-samples.git/ghost@main ${NAMESPACE} --for-deployment ``` #### Update the KRM resources to your own data diff --git a/ghost/mariadb/Kptfile b/ghost/mariadb/Kptfile index 65c612f..1efd73d 100644 --- a/ghost/mariadb/Kptfile +++ b/ghost/mariadb/Kptfile @@ -10,5 +10,5 @@ info: description: The MariaDB which provides the storage for Ghost. pipeline: mutators: - - image: gcr.io/kpt-fn/set-labels:v0.1.5 + - image: ghcr.io/kptdev/krm-functions-catalog/set-labels:latest configPath: setlabels.yaml diff --git a/ingress-nginx/README.md b/ingress-nginx/README.md index 6549795..45354b6 100644 --- a/ingress-nginx/README.md +++ b/ingress-nginx/README.md @@ -9,7 +9,7 @@ Nginx Ingress Controller package ### Fetch the package ```sh -kpt pkg get git@github.com:googlecontainertools/kpt.git/package-examples/ingress-nginx ingress-nginx +kpt pkg get git@github.com:kptdev/kpt-samples.git/ingress-nginx ingress-nginx ``` ### View package content diff --git a/notes.md b/notes.md index 615bfe9..7a55a43 100644 --- a/notes.md +++ b/notes.md @@ -7,8 +7,8 @@ Assuming you have usual git remotes setup. For example, on my machine: kpt-samples $ git remote -v origin git@github.com:droot/kpt-samples.git (fetch) origin git@github.com:droot/kpt-samples.git (push) -upstream git@github.com:googlecontainertools/kpt-samples.git (fetch) -upstream git@github.com:googlecontainertools/kpt-samples.git (push) +upstream git@github.com:kptdev/kpt-samples.git (fetch) +upstream git@github.com:kptdev/kpt-samples.git (push) ``` Let say, your latest iteration on a package (say `ghost`) got merged.