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.yamlUsing EKS
# Create EKS cluster
eksctl create cluster --name game-framework
# Deploy with Helm
helm install gameframework gameframework/game-registryGCP
Using GKE
# Create cluster
gcloud container clusters create game-framework \
--num-nodes=3
# Deploy
helm install gameframework gameframework/game-registryAzure
Using AKS
# Create cluster
az aks create \
--resource-group game-framework \
--name game-framework-cluster \
--node-count 3
# Deploy
helm install gameframework gameframework/game-registryNext Steps
- Monitoring - Monitor your deployment