From 023d0457d2cd879d2dc8cb17d0f3c980178dff9d Mon Sep 17 00:00:00 2001 From: Dominick Rivard <643002+drivard@users.noreply.github.com> Date: Fri, 15 Dec 2023 16:16:13 -0500 Subject: [PATCH] Update Helm chart installation commands --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b8a7459..596d94e 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ helm search repo libretranslate To install the chart with the release name `libretranslate`: ```bash -helm install libretranslate libretranslate --namespace libretranslate --create-namespace +helm install libretranslate libretranslate/libretranslate --namespace libretranslate --create-namespace ``` This command deploys LibreTranslate on the Kubernetes cluster with the default configuration. The [values.yaml](charts/libretranslate/values.yaml) file lists the parameters that can be configured during installation. @@ -43,13 +43,13 @@ These commands remove all the Kubernetes components associated with the chart an See [values.yaml](charts/libretranslate/values.yaml) for the full list of parameters that can be configured. You can specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, ```bash -helm install libretranslate libretranslate --namespace libretranslate --create-namespace --set service.port=8080 +helm install libretranslate libretranslate/libretranslate --namespace libretranslate --create-namespace --set service.port=8080 ``` Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example, ```bash -helm install libretranslate libretranslate --namespace libretranslate --create-namespace -f values.yaml +helm install libretranslate libretranslate/libretranslate --namespace libretranslate --create-namespace -f values.yaml ``` ## Upgrade @@ -57,7 +57,7 @@ helm install libretranslate libretranslate --namespace libretranslate --create-n Run the following command to upgrade your LibreTranslate installation. This command will use the Helm chart, apply the custom values from values.yaml, and deploy the upgrade to the `libretranslate` namespace: ```bash -helm upgrade --install libretranslate libretranslate --namespace libretranslate -f values.yaml +helm upgrade --install libretranslate libretranslate/libretranslate --namespace libretranslate -f values.yaml ``` > **Tip**: You can use the default [values.yaml](charts/libretranslate/values.yaml)