From 7edbe368055a72b7ed68cb497b4e39c40f648cb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Sch=C3=BCnemann?= Date: Mon, 23 Feb 2026 12:16:48 +0100 Subject: [PATCH] docs: use latest version in installation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated installation command to use the latest version of ocm-controller. Signed-off-by: René Schünemann --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3ab97d2c..75549462 100644 --- a/README.md +++ b/README.md @@ -429,7 +429,8 @@ The other way is using the provided helm chart for the project under `./deploy` To do this, use the following command: ```bash -helm install ocm-controller oci://ghcr.io/open-component-model/helm/ocm-controller --version v0.25.3 +OCM_CONTROLLER_LATEST_VERSION=$(curl -s https://api.github.com/repos/open-component-model/ocm-controller/releases/latest | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/') +helm install ocm-controller oci://ghcr.io/open-component-model/helm/ocm-controller --version $OCM_CONTROLLER_LATEST_VERSION ``` This does require that certain items, like certificate secrets are pre-created by the user.