Compare commits

...

1 Commits

Author SHA1 Message Date
50db76d1ff Increase version to 0.5.0-rc.2 (#289) 2019-04-24 14:57:11 -07:00
8 changed files with 13 additions and 13 deletions

View File

@ -46,7 +46,7 @@
##
# http://makefiletutorial.com/
BASE_VERSION = 0.5.0-rc1
BASE_VERSION = 0.5.0-rc.2
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)

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,7 +48,7 @@ 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.
@ -58,7 +58,7 @@ This command also deploys a component that continuously generates players with d
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.
```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-rc.2"
_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-rc.2"
version: 0.5.0-rc.2
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-rc.2
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-rc.2"
version: 0.5.0-rc.2
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-rc.2
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-rc.2"
release_version = "0.5.0-rc.2"
# User interface configuration
[params.ui]