Game Framework
Deployment

Cloud Provider Deployment

Deploy Game Framework on major cloud providers.

AWS

Using ECS

# Use provided CloudFormation template
aws cloudformation create-stack \
  --stack-name game-framework \
  --template-body file://aws/ecs-stack.yaml

Using EKS

# Create EKS cluster
eksctl create cluster --name game-framework

# Deploy with Helm
helm install gameframework gameframework/game-registry

GCP

Using GKE

# Create cluster
gcloud container clusters create game-framework \
  --num-nodes=3

# Deploy
helm install gameframework gameframework/game-registry

Azure

Using AKS

# Create cluster
az aks create \
  --resource-group game-framework \
  --name game-framework-cluster \
  --node-count 3

# Deploy
helm install gameframework gameframework/game-registry

Next Steps