mirror of
https://github.com/googleforgames/open-match.git
synced 2025-04-15 15:22:27 +00:00
Compare commits
1 Commits
v0.7.0-rc.
...
v0.7.0
Author | SHA1 | Date | |
---|---|---|---|
4f521b41db |
2
Makefile
2
Makefile
@ -52,7 +52,7 @@
|
||||
# If you want information on how to edit this file checkout,
|
||||
# http://makefiletutorial.com/
|
||||
|
||||
BASE_VERSION = 0.7.0-rc.1
|
||||
BASE_VERSION = 0.7.0
|
||||
SHORT_SHA = $(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)-$(SHORT_SHA)
|
||||
|
@ -163,7 +163,7 @@ artifacts:
|
||||
- install/yaml/05-jaeger-chart.yaml
|
||||
|
||||
substitutions:
|
||||
_OM_VERSION: "0.7.0-rc.1"
|
||||
_OM_VERSION: "0.7.0"
|
||||
_GCB_POST_SUBMIT: "0"
|
||||
_GCB_LATEST_VERSION: "undefined"
|
||||
logsBucket: 'gs://open-match-build-logs/'
|
||||
|
1
go.mod
1
go.mod
@ -27,7 +27,6 @@ require (
|
||||
github.com/alicebob/miniredis/v2 v2.8.1-0.20190618082157-e29950035715
|
||||
github.com/cenkalti/backoff v2.1.1+incompatible
|
||||
github.com/fsnotify/fsnotify v1.4.7
|
||||
github.com/go-logfmt/logfmt v0.4.0 // indirect
|
||||
github.com/golang/protobuf v1.3.2
|
||||
github.com/gomodule/redigo v1.7.1-0.20190322064113-39e2c31b7ca3
|
||||
github.com/google/gofuzz v1.0.0 // indirect
|
||||
|
@ -13,8 +13,8 @@
|
||||
# limitations under the License.
|
||||
|
||||
apiVersion: v1
|
||||
appVersion: "0.7.0-rc.1"
|
||||
version: 0.7.0-rc.1
|
||||
appVersion: "0.7.0"
|
||||
version: 0.7.0
|
||||
name: open-match
|
||||
description: Flexible, extensible, and scalable video game matchmaking.
|
||||
keywords:
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -26,7 +26,7 @@ evaluator:
|
||||
|
||||
image:
|
||||
registry: gcr.io/open-match-public-images
|
||||
tag: 0.7.0-rc.1
|
||||
tag: 0.7.0
|
||||
pullPolicy: Always
|
||||
|
||||
configs:
|
||||
|
@ -25,7 +25,7 @@ demo:
|
||||
|
||||
image:
|
||||
registry: gcr.io/open-match-public-images
|
||||
tag: 0.7.0-rc.1
|
||||
tag: 0.7.0
|
||||
pullPolicy: Always
|
||||
|
||||
# TODO: Split tls configs into a separate config file. For now Open Match assumes core components share the same secure mode
|
||||
|
@ -26,7 +26,7 @@ scaleBackend:
|
||||
|
||||
image:
|
||||
registry: gcr.io/open-match-public-images
|
||||
tag: 0.7.0-rc.1
|
||||
tag: 0.7.0
|
||||
pullPolicy: Always
|
||||
|
||||
configs:
|
||||
|
@ -18,7 +18,7 @@
|
||||
|
||||
image:
|
||||
registry: gcr.io/open-match-public-images
|
||||
tag: 0.7.0-rc.1
|
||||
tag: 0.7.0
|
||||
pullPolicy: Always
|
||||
|
||||
# https://github.com/helm/charts/tree/master/stable/prometheus
|
||||
|
@ -36,5 +36,5 @@ kubernetes:
|
||||
|
||||
image:
|
||||
registry: gcr.io/open-match-public-images
|
||||
tag: 0.7.0-rc.1
|
||||
tag: 0.7.0
|
||||
pullPolicy: Always
|
||||
|
@ -91,7 +91,7 @@ function: &function
|
||||
# Specifies a unified image registry, image tag, and imagePullPolicy for all components defined above.
|
||||
image:
|
||||
registry: gcr.io/open-match-public-images
|
||||
tag: 0.7.0-rc.1
|
||||
tag: 0.7.0
|
||||
pullPolicy: Always
|
||||
|
||||
# Specifies the supported customizable indices per Match
|
||||
|
12
third_party/swaggerui/config.json
vendored
12
third_party/swaggerui/config.json
vendored
@ -1,10 +1,10 @@
|
||||
{
|
||||
"urls": [
|
||||
{"name": "Frontend", "url": "https://open-match.dev/api/v0.7.0-rc.1/frontend.swagger.json"},
|
||||
{"name": "Backend", "url": "https://open-match.dev/api/v0.7.0-rc.1/backend.swagger.json"},
|
||||
{"name": "Mmlogic", "url": "https://open-match.dev/api/v0.7.0-rc.1/mmlogic.swagger.json"},
|
||||
{"name": "MatchFunction", "url": "https://open-match.dev/api/v0.7.0-rc.1/matchfunction.swagger.json"},
|
||||
{"name": "Synchronizer", "url": "https://open-match.dev/api/v0.7.0-rc.1/synchronizer.swagger.json"},
|
||||
{"name": "Evaluator", "url": "https://open-match.dev/api/v0.7.0-rc.1/evaluator.swagger.json"}
|
||||
{"name": "Frontend", "url": "https://open-match.dev/api/v0.7.0/frontend.swagger.json"},
|
||||
{"name": "Backend", "url": "https://open-match.dev/api/v0.7.0/backend.swagger.json"},
|
||||
{"name": "Mmlogic", "url": "https://open-match.dev/api/v0.7.0/mmlogic.swagger.json"},
|
||||
{"name": "MatchFunction", "url": "https://open-match.dev/api/v0.7.0/matchfunction.swagger.json"},
|
||||
{"name": "Synchronizer", "url": "https://open-match.dev/api/v0.7.0/synchronizer.swagger.json"},
|
||||
{"name": "Evaluator", "url": "https://open-match.dev/api/v0.7.0/evaluator.swagger.json"}
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user