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:
yfei1
2019-10-11 11:10:14 -07:00
committed by GitHub
parent 89691b5512
commit cb610a92b1
2 changed files with 32 additions and 0 deletions

View 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

View 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