#v0.5.0-rc.2
This is the v0.5.0-rc.2 release of Open Match.
Check the README for details on features, installation and usage.
Release Notes
Breaking Changes
None
Enhancements
Improved Documentation, looping backend client for a reliable demo.
Security Fixes
None
Images
# Servers
docker pull gcr.io/open-match-public-images/openmatch-backendapi:0.5.0-rc.2
docker pull gcr.io/open-match-public-images/openmatch-frontendapi:0.5.0-rc.2
docker pull gcr.io/open-match-public-images/openmatch-mmforc:0.5.0-rc.2
docker pull gcr.io/open-match-public-images/openmatch-mmlogicapi:0.5.0-rc.2
# Evaluators
docker pull gcr.io/open-match-public-images/openmatch-evaluator-serving:0.5.0-rc.2
# Sample Match Making Functions
docker pull gcr.io/open-match-public-images/openmatch-mmf-go-grpc-serving-simple:0.5.0-rc.2
# Test Clients
docker pull gcr.io/open-match-public-images/openmatch-backendclient:0.5.0-rc.2
docker pull gcr.io/open-match-public-images/openmatch-clientloadgen:0.5.0-rc.2
docker pull gcr.io/open-match-public-images/openmatch-frontendclient:0.5.0-rc.2
This software is currently alpha, and subject to change. Not to be used in production systems.
Installation
To deploy Open Match in your Kubernetes cluster run the following commands:
# Grant yourself cluster-admin permissions so that you can deploy service accounts.
kubectl create clusterrolebinding myname-cluster-admin-binding --clusterrole=cluster-admin --user=$(YOUR_KUBERNETES_USER_NAME)
# Place all Open Match components in their own namespace.
kubectl create namespace open-match
# Install Open Match and monitoring services.
kubectl apply -f https://github.com/GoogleCloudPlatform/open-match/releases/download/v0.5.0-rc.2/install.yaml --namespace open-match
# Install the example MMF and Evaluator.
kubectl apply -f https://github.com/GoogleCloudPlatform/open-match/releases/download/v0.5.0-rc.2/install-example.yaml --namespace open-match