From 9a0f0ad3eb5fda817d8bf4cb39a189ce9d37a43f Mon Sep 17 00:00:00 2001 From: Wesley van der Meer <124156878+wesleyvandermeer@users.noreply.github.com> Date: Sat, 11 May 2024 10:28:59 +0200 Subject: [PATCH 1/2] Update clone-repository.md Add important note about Git-Clone ssh authentication. --- content/en/docs/How-to-guides/clone-repository.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/en/docs/How-to-guides/clone-repository.md b/content/en/docs/How-to-guides/clone-repository.md index c710377e..e9b84607 100644 --- a/content/en/docs/How-to-guides/clone-repository.md +++ b/content/en/docs/How-to-guides/clone-repository.md @@ -330,6 +330,8 @@ Or using `kubectl`: kubectl apply -f \ https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.6/git-clone.yaml ``` +> [!IMPORTANT] +> When using **Git-Clone** you should make sure that your private key is in the correct format. Libcrypto requires you to have a new line at the end of your private_key (PEM) format. Checkout: https://github.com/tektoncd/catalog/issues/1220 for more info. Alternatively, you can [bundle a Task or a Pipeline][bundles] and let your Pipeline fetch it directly from a registry. From 4c92bbaf59087373142545650e4d1aeaafed3c09 Mon Sep 17 00:00:00 2001 From: Wesley van der Meer <124156878+wesleyvandermeer@users.noreply.github.com> Date: Sat, 11 May 2024 10:43:48 +0200 Subject: [PATCH 2/2] Update clone-repository.md Renamed info to information. Bump CLA check. --- content/en/docs/How-to-guides/clone-repository.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/How-to-guides/clone-repository.md b/content/en/docs/How-to-guides/clone-repository.md index e9b84607..4ecea00a 100644 --- a/content/en/docs/How-to-guides/clone-repository.md +++ b/content/en/docs/How-to-guides/clone-repository.md @@ -331,7 +331,7 @@ kubectl apply -f \ https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.6/git-clone.yaml ``` > [!IMPORTANT] -> When using **Git-Clone** you should make sure that your private key is in the correct format. Libcrypto requires you to have a new line at the end of your private_key (PEM) format. Checkout: https://github.com/tektoncd/catalog/issues/1220 for more info. +> When using **Git-Clone** you should make sure that your private key is in the correct format. Libcrypto requires you to have a new line at the end of your private_key (PEM) format. Checkout: https://github.com/tektoncd/catalog/issues/1220 for more information. Alternatively, you can [bundle a Task or a Pipeline][bundles] and let your Pipeline fetch it directly from a registry.