Deploy and manage OpenAI API Gateway with Helm. Simplified Kubernetes package management with configurable values and release versioning.
Package, configure, and deploy with one command
Customize your gateway deployment with these values
Deploy the OpenAI Gateway chart in three steps
# Step 1: Add the Helm repository helm repo add openai-gateway https://charts.openai-gateway.io helm repo update # Step 2: Install with default values helm install my-gateway openai-gateway/ai-gateway \ --namespace ai-gateway \ --create-namespace # Step 3: Install with custom values helm install my-gateway openai-gateway/ai-gateway \ --namespace ai-gateway \ --set replicaCount=3 \ --set auth.existingSecret=openai-api-key \ --set metrics.enabled=true \ --set autoscaling.maxReplicas=10 # Step 4: Verify installation helm ls -n ai-gateway kubectl get pods -n ai-gateway kubectl get svc -n ai-gateway
Kubernetes resources generated by the Helm chart