Game Framework
Deployment

Kubernetes Deployment

Deploy Game Framework on Kubernetes with Helm.

Helm Installation

# Add Helm repository
helm repo add gameframework https://charts.gameframework.dev
helm repo update

# Install
helm install gameframework gameframework/game-registry \
  -f values.yaml \
  -n gameframework --create-namespace

Example Values

replicaCount: 3

image:
  repository: gameframework/registry
  tag: "0.1.0"

ingress:
  enabled: true
  className: nginx
  hosts:
    - host: registry.yourcompany.com
      paths:
        - path: /
          pathType: Prefix

postgresql:
  enabled: true

redis:
  enabled: true

resources:
  limits:
    cpu: 2000m
    memory: 4Gi

Next Steps