Compare commits

...

3 Commits

Author SHA1 Message Date
6a5d516463 Increment config files to match 0.5.0 release and create draft releas… (#315)
* Increment config files to match 0.5.0 release and create draft release instructions.

* Revert file
2019-04-29 14:44:56 -07:00
a9943cc9c4 Fix grammer in the open match demo script. (#291) 2019-04-25 08:44:54 -07:00
50db76d1ff Increase version to 0.5.0-rc.2 (#289) 2019-04-24 14:57:11 -07:00
8 changed files with 14 additions and 15 deletions

View File

@ -46,7 +46,7 @@
##
# http://makefiletutorial.com/
BASE_VERSION = 0.5.0-rc1
BASE_VERSION = 0.5.0
VERSION_SUFFIX = $(shell git rev-parse --short=7 HEAD | tr -d [:punct:])
BRANCH_NAME = $(shell git rev-parse --abbrev-ref HEAD | tr -d [:punct:])
VERSION = $(BASE_VERSION)-$(VERSION_SUFFIX)
@ -725,4 +725,3 @@ endif
endif
.PHONY: docker gcloud deploy-redirect-site sync-deps sleep-10 proxy-dashboard proxy-prometheus proxy-grafana clean clean-toolchain clean-binaries clean-protos presubmit test test-in-ci vet

View File

@ -40,7 +40,7 @@ kubectl create clusterrolebinding cluster-admin-binding --clusterrole=cluster-ad
kubectl create namespace open-match
# Install the core Open Match and monitoring services.
kubectl apply -f https://github.com/GoogleCloudPlatform/open-match/releases/download/0.5.0-rc.1/install.yaml --namespace open-match
kubectl apply -f https://github.com/GoogleCloudPlatform/open-match/releases/download/0.5.0-rc.2/install.yaml --namespace open-match
```
### Deploy demo components
@ -48,17 +48,17 @@ kubectl apply -f https://github.com/GoogleCloudPlatform/open-match/releases/down
Open Match framework requires the user to author a custom match function and an evaluator that are invoked to create matches. For demo purposes, we will use an example MMF and Evaluator. The following command deploys these in the kubernetes cluster:
```bash
kubectl apply -f https://github.com/GoogleCloudPlatform/open-match/releases/download/0.5.0-rc.1/install-example.yaml --namespace open-match
kubectl apply -f https://github.com/GoogleCloudPlatform/open-match/releases/download/0.5.0-rc.2/install-example.yaml --namespace open-match
```
This command also deploys a component that continuously generates players with different properties and adds them to Open Match state storage. This is because a populated player pool is required to generate matches.
### Generate Matches!
The in a real setup, a game backend (Director / DGS etc.) will request Open Match for mathes. For demo purposes, this is simulated by a backend client that requests Open Match to continuously list matches till it runs out of players.
In a real setup, a game backend (Director / DGS etc.) will request matches from Open Match. For demo purposes, this is simulated by a backend client that requests Open Match to continuously list matches until it runs out of players.
```bash
kubectl run om-backendclient --rm --restart=Never --image-pull-policy=Always -i --tty --image=gcr.io/open-match-public-images/openmatch-backendclient:0.5.0-rc1 --namespace=open-match
kubectl run om-backendclient --rm --restart=Never --image-pull-policy=Always -i --tty --image=gcr.io/open-match-public-images/openmatch-backendclient:0.5.0-rc.2 --namespace=open-match
```
If successful, the backend client should successfully generate matches, displaying players populated in Rosters.

View File

@ -189,7 +189,7 @@ images:
- 'gcr.io/$PROJECT_ID/openmatch-clientloadgen:${_OM_VERSION}-${SHORT_SHA}'
- 'gcr.io/$PROJECT_ID/openmatch-frontendclient:${_OM_VERSION}-${SHORT_SHA}'
substitutions:
_OM_VERSION: "0.5.0-rc1"
_OM_VERSION: "0.5.0"
_GCB_POST_SUBMIT: "0"
logsBucket: 'gs://open-match-build-logs/'
options:

View File

@ -13,8 +13,8 @@
# limitations under the License.
apiVersion: v1
appVersion: "0.5.0-rc1"
version: 0.5.0-rc1
appVersion: "0.5.0"
version: 0.5.0
name: open-match-example
description: Flexible, extensible, and scalable video game matchmaking.
keywords:

View File

@ -39,7 +39,7 @@ openmatch:
testprofile: /profiles
image:
registry: gcr.io/open-match-public-images
tag: 0.5.0-rc1
tag: 0.5.0
backendclient:
name: openmatch-backendclient
pullPolicy: Always

View File

@ -13,8 +13,8 @@
# limitations under the License.
apiVersion: v1
appVersion: "0.5.0-rc1"
version: 0.5.0-rc1
appVersion: "0.5.0"
version: 0.5.0
name: open-match
description: Flexible, extensible, and scalable video game matchmaking.
keywords:

View File

@ -47,7 +47,7 @@ openmatch:
# You can refer to other chart values using the Helm templates syntax here.
image:
registry: gcr.io/open-match-public-images
tag: 0.5.0-rc1
tag: 0.5.0
backendapi:
name: openmatch-backendapi
pullPolicy: Always

View File

@ -72,8 +72,8 @@ github_repo = "https://github.com/GoogleCloudPlatform/open-match"
# Google Custom Search Engine ID. Remove or comment out to disable search.
gcs_engine_id = "008748710159674449076:sqoelpnrdoe"
release_branch = "release-0.5.0-rc1"
release_version = "0.5.0-rc1"
release_branch = "release-0.5.0"
release_version = "0.5.0"
# User interface configuration
[params.ui]