From 5518c408ab399444000be8303c7380bc5b9a3769 Mon Sep 17 00:00:00 2001 From: Rick <1450685+LinuxSuRen@users.noreply.github.com> Date: Mon, 16 Oct 2023 14:05:55 +0800 Subject: [PATCH] chore: correct the Helm image path in helm.md --- docs/helm.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/helm.md b/docs/helm.md index 605f7663..58f62699 100644 --- a/docs/helm.md +++ b/docs/helm.md @@ -1,13 +1,16 @@ -You could install api-testing via Helm chart: +You could install `api-testing` via Helm chart: ```shell -helm install atest oci://registry-1.docker.io/surenpi/api-testing \ - --version v0.0.2 \ +helm install atest oci://docker.io/linuxsuren/api-testing \ + --version v0.0.1-helm \ --set service.type=NodePort ``` or upgrade it: ```shell -helm upgrade atest oci://registry-1.docker.io/surenpi/api-testing --version v0.0.3 +helm upgrade atest oci://docker.io/surenpi/api-testing \ + --version v0.0.1-helm \ + --set image.tag=master \ + --set replicaCount=3 ```