Skip to main content

Kubernetes Deployment

Deploy TealTiger SDKs on Kubernetes for scalable, production-ready AI agent deployments.
This page is under construction. Full Kubernetes deployment guides coming in v1.1.0.

Coming Soon

  • Helm charts for easy deployment
  • Kubernetes manifests
  • Horizontal Pod Autoscaling (HPA) configuration
  • Resource limits and requests
  • ConfigMaps and Secrets management
  • Service mesh integration
  • Monitoring and observability

Quick Preview

apiVersion: apps/v1
kind: Deployment
metadata:
  name: tealtiger-app
spec:
  replicas: 3
  selector:
    matchLabels:
      app: tealtiger
  template:
    metadata:
      labels:
        app: tealtiger
    spec:
      containers:
      - name: app
        image: ghcr.io/tealtiger/python-sdk:latest
        env:
        - name: OPENAI_API_KEY
          valueFrom:
            secretKeyRef:
              name: tealtiger-secrets
              key: openai-api-key
        resources:
          requests:
            memory: "256Mi"
            cpu: "250m"
          limits:
            memory: "512Mi"
            cpu: "500m"

For now, see the Docker guide for container basics.