From d45f55459804a5704fc459aed3ad9757e68c0917 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Wed, 23 Jul 2025 18:23:24 +0200 Subject: [PATCH] docs(README): adapt repository link --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index fd7ad7b..8110e3c 100644 --- a/README.md +++ b/README.md @@ -22,9 +22,9 @@ helm chart is tested for deployment scenarios with **ArgoCD**. and use the `--set` flag for a basic deployment. ```bash -helm repo add reposilite https://helm.reposilite.com/ +helm repo add volker.raschek https://charts.cryptic.systems/volker.raschek helm repo update -helm install reposilite reposilite/reposilite +helm install reposilite volker.raschek/reposilite ``` Instead of passing all parameters via the *set* flag, it is also possible to define them as part of the `values.yaml`. @@ -33,8 +33,8 @@ version of the chart must be in sync with the `values.yaml`. Newer *minor* versi versions can break something! ```bash -CHART_VERSION=2.0.0 -helm show values reposilite/reposilite --version "${CHART_VERSION}" > values.yaml +CHART_VERSION=0.1.0 +helm show values volker.raschek/reposilite --version "${CHART_VERSION}" > values.yaml ``` A complete list of available helm chart versions can be displayed via the following command: @@ -47,8 +47,8 @@ The helm chart also contains a persistent volume claim definition. It persistent Use the `--set` argument to persist your data. ```bash -CHART_VERSION=2.0.0 -helm install --version "${CHART_VERSION}" reposilite reposilite/reposilite \ +CHART_VERSION=0.1.0 +helm install --version "${CHART_VERSION}" reposilite volker.raschek/reposilite \ persistentVolumeClaim.enabled=true ``` @@ -68,8 +68,8 @@ connection problems. > error. ```bash -CHART_VERSION=2.0.0 -helm install --version "${CHART_VERSION}" reposilite reposilite/reposilite \ +CHART_VERSION=0.1.0 +helm install --version "${CHART_VERSION}" reposilite volker.raschek/reposilite \ --set 'deployment.reposilite.env[1].name=REPOSILITE_LOCAL_SSLENABLED' \ --set 'deployment.reposilite.env[1].value="true"' \ --set 'deployment.reposilite.env[2].name=REPOSILITE_LOCAL_SSLPORT' \