-
Notifications
You must be signed in to change notification settings - Fork 3
/
skaffold.yaml
40 lines (40 loc) · 1.04 KB
/
skaffold.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
apiVersion: skaffold/v4beta2
kind: Config
build:
artifacts:
- image: omdemo/matchfunction/simple1vs1
ko:
main: ./matchfunction/simple1vs1
dependencies:
paths: ["matchfunction/simple1vs1/*.go"]
- image: omdemo/matchfunction/backfill3
ko:
main: ./matchfunction/backfill3
dependencies:
paths: ["matchfunction/backfill3/*.go"]
- image: omdemo/testdirector
ko:
main: ./cmd/testdirector
dependencies:
paths: ["**/*.go"]
ignore: ["tests/**/*.go"]
deploy:
kubectl:
defaultNamespace: open-match
manifests:
rawYaml:
- ./matchfunction/simple1vs1/simple1vs1.yaml
- ./matchfunction/backfill3/backfill3.yaml
# for load-testing cli
# - ./cmd/testdirector/testdirector.yaml
portForward:
- resourceType: Service
resourceName: open-match-frontend
namespace: open-match
port: 50504
localPort: 50504
- resourceType: Service
resourceName: open-match-backend
namespace: open-match
port: 50505
localPort: 50505