From 70ece33fdd4b8e5f0ea45c067b59e87b2cd36593 Mon Sep 17 00:00:00 2001 From: Andrei Kvapil Date: Tue, 15 Sep 2026 17:18:54 +0200 Subject: [PATCH] docs(marketplace): point the Repositories view to Admin The dashboard moves the Repositories view from the Marketplace sidebar to Admin, under Administration (cozystack/cozystack#4286). The connect guide only said to open it "from the sidebar", and it sits in the Marketplace section, so readers would look for it in the wrong place. Merge after the dashboard change lands. Assisted-by: LLM Signed-off-by: Andrei Kvapil --- content/en/docs/next/marketplace/connecting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/next/marketplace/connecting.md b/content/en/docs/next/marketplace/connecting.md index 654e1b11..2150df12 100644 --- a/content/en/docs/next/marketplace/connecting.md +++ b/content/en/docs/next/marketplace/connecting.md @@ -96,7 +96,7 @@ A `SECRET` column reading `` on a private repository means the credential ## Connect from the dashboard -The dashboard "Repositories" view is backed by the `Tap` resource and covers the same flow without the CLI. Open it from the sidebar, choose **Connect**, and provide the `oci://` reference and, for a private repository, the name of a pull-credential `Secret` in `cozy-system`. Connected repositories are listed with their status; a tapped repository still connecting or blocked by a name collision shows its message there, and tapped repositories can be disconnected from the same view. +The dashboard "Repositories" view is backed by the `Tap` resource and covers the same flow without the CLI. Open **Admin** → **Administration** → **Repositories**, choose **Connect**, and provide the `oci://` reference and, for a private repository, the name of a pull-credential `Secret` in `cozy-system`. Connected repositories are listed with their status; a tapped repository still connecting or blocked by a name collision shows its message there, and tapped repositories can be disconnected from the same view. Two differences from the CLI. The dashboard skips the structural validation `cozypkg tap` runs, so a repository whose charts are broken connects cleanly and fails later, when an application from it is installed. And connecting here only records the intent: the call writes the Flux source and returns `connecting`, and the cluster then pulls the artifact, checks its digest against the source, reads the `PackageSource` resources and applies the same name-collision check in the background. So an unreachable reference is accepted rather than refused up front the way the CLI refuses it; the outcome arrives as the repository's status in the view, and `cozypkg list` does not show the source until that has finished.