From 469e9cdba7f99465a750fb02d01af76eb82cef17 Mon Sep 17 00:00:00 2001 From: Se7en Date: Wed, 23 Apr 2025 10:49:24 +0800 Subject: [PATCH 1/2] fix envoy ai gateway link --- docs/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index 8433140e..6a9f547d 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -9,7 +9,7 @@ - Prometheus, see [installation](https://github.com/InftyAI/llmaz/tree/main/docs/prometheus-operator#install-the-prometheus-operator). Note: llmaz helm chart will by default install -- [Envoy Gateway](https://github.com/envoyproxy/gateway) and [Envoy AI Gateway](https://github.com/envoyproxy/gateway) as the frontier in the llmaz-system, if you *already installed these two components* or *want to deploy in other namespaces* , append `--set envoy-gateway.enabled=false --set envoy-ai-gateway.enabled=false` to the command below. +- [Envoy Gateway](https://github.com/envoyproxy/gateway) and [Envoy AI Gateway](https://github.com/envoyproxy/ai-gateway) as the frontier in the llmaz-system, if you *already installed these two components* or *want to deploy in other namespaces* , append `--set envoy-gateway.enabled=false --set envoy-ai-gateway.enabled=false` to the command below. - [Open WebUI](https://github.com/open-webui/open-webui) as the default chatbot, if you want to disable it, append `--set open-webui.enabled=false` to the command below. ## Install a released version @@ -19,7 +19,7 @@ Note: llmaz helm chart will by default install ```cmd helm repo add inftyai https://inftyai.github.io/llmaz helm repo update -helm install llmaz inftyai/llmaz --namespace llmaz-system --create-namespace --version 0.0.9 +helm install llmaz inftyai/llmaz --namespace llmaz-system --create-namespace ``` ### Uninstall From 8c9268717e9052b625e6ad737121d3ff19892a1e Mon Sep 17 00:00:00 2001 From: cr7258 Date: Wed, 23 Apr 2025 11:07:21 +0800 Subject: [PATCH 2/2] fix namespace --- docs/installation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index 6a9f547d..36dffd50 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -19,13 +19,13 @@ Note: llmaz helm chart will by default install ```cmd helm repo add inftyai https://inftyai.github.io/llmaz helm repo update -helm install llmaz inftyai/llmaz --namespace llmaz-system --create-namespace +helm install llmaz inftyai/llmaz --namespace llmaz-system --create-namespace --version 0.0.9 ``` ### Uninstall ```cmd -helm uninstall llmaz +helm uninstall llmaz --namespace llmaz-system kubectl delete ns llmaz-system ``` @@ -59,7 +59,7 @@ make helm-install ### Uninstall ```cmd -helm uninstall llmaz +helm uninstall llmaz --namespace llmaz-system kubectl delete ns llmaz-system ```