mirror of
https://github.com/googleforgames/open-match.git
synced 2025-03-25 13:24:18 +00:00
Define minimalistic pod resources to deploy sample mmf and evaluator (#867)
* Define minimalistic pod resources to deploy sample mmf and evaluator * newline
This commit is contained in:
16
examples/k8s-resources/om-evaluator.yaml
Normal file
16
examples/k8s-resources/om-evaluator.yaml
Normal file
@ -0,0 +1,16 @@
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
name: om-evaluator
|
||||
namespace: open-match
|
||||
spec:
|
||||
containers:
|
||||
- name: om-evaluator
|
||||
image: "gcr.io/open-match-build/openmatch-evaluator-go-simple"
|
||||
imagePullPolicy: Always
|
||||
ports:
|
||||
- name: grpc
|
||||
containerPort: 50508
|
||||
- name: http
|
||||
containerPort: 51508
|
||||
hostname: om-evaluator
|
16
examples/k8s-resources/om-function.yaml
Normal file
16
examples/k8s-resources/om-function.yaml
Normal file
@ -0,0 +1,16 @@
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
name: om-function
|
||||
namespace: open-match
|
||||
spec:
|
||||
containers:
|
||||
- name: om-function
|
||||
image: "gcr.io/open-match-build/openmatch-mmf-go-soloduel"
|
||||
imagePullPolicy: Always
|
||||
ports:
|
||||
- name: grpc
|
||||
containerPort: 50502
|
||||
- name: http
|
||||
containerPort: 51502
|
||||
hostname: om-function
|
Reference in New Issue
Block a user