mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
feat: add Helm chart for standalone AI Gateway (#27256)
Adds the `coder-ai-gateway` Helm chart for deploying the Coder AI Gateway as a standalone Kubernetes workload. Adds the coder-ai-gateway Helm chart for deploying the Coder AI Gateway as a standalone Kubernetes workload. The chart supports AI Gateway keys from an existing Secret or environment configuration, Coder connectivity through CODER_URL, listener and Coder-facing TLS, and optional Service, Ingress, and Gateway API HTTPRoute resources. Integrates the chart with existing Helm build, lint, golden generation, release artifact, Helm repository, and OCI publishing workflows.
This commit is contained in:
+3
-3
@@ -4,7 +4,7 @@
|
||||
# .tgz file at the specified path, and may optionally push it to the Coder OSS
|
||||
# repo.
|
||||
#
|
||||
# ./helm.sh [--version 1.2.3] [--chart coder|provisioner] [--output path/to/coder.tgz]
|
||||
# ./helm.sh [--version 1.2.3] [--chart coder|provisioner|ai-gateway] [--output path/to/coder.tgz]
|
||||
#
|
||||
# If no version is specified, defaults to the version from ./version.sh.
|
||||
#
|
||||
@@ -56,8 +56,8 @@ fi
|
||||
if [[ "$chart" == "" ]]; then
|
||||
chart="coder"
|
||||
fi
|
||||
if ! [[ "$chart" =~ ^(coder|provisioner)$ ]]; then
|
||||
error "--chart value must be one of (coder, provisioner)"
|
||||
if ! [[ "$chart" =~ ^(coder|provisioner|ai-gateway)$ ]]; then
|
||||
error "--chart value must be one of (coder, provisioner, ai-gateway)"
|
||||
fi
|
||||
|
||||
if [[ "$output_path" == "" ]]; then
|
||||
|
||||
Reference in New Issue
Block a user