-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskaffold.yaml
64 lines (64 loc) · 1.49 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
apiVersion: skaffold/v4beta2
kind: Config
metadata:
name: poc-blog
build:
artifacts:
- image: codesandtags/client
context: client
docker:
dockerfile: Dockerfile
sync:
manual:
- src: "src/**/*.js"
dest: .
- image: codesandtags/comments
context: comments
docker:
dockerfile: Dockerfile
sync:
manual:
- src: "*.js"
dest: .
- image: codesandtags/event-bus
context: event-bus
docker:
dockerfile: Dockerfile
sync:
manual:
- src: "*.js"
dest: .
- image: codesandtags/moderation
context: moderation
docker:
dockerfile: Dockerfile
sync:
manual:
- src: "*.js"
dest: .
- image: codesandtags/posts
context: posts
docker:
dockerfile: Dockerfile
sync:
manual:
- src: "*.js"
dest: .
- image: codesandtags/query
context: query
docker:
dockerfile: Dockerfile
sync:
manual:
- src: "*.js"
dest: .
manifests:
rawYaml:
- infrastructure/k8s/client-deploy.yaml
- infrastructure/k8s/comments-deploy.yaml
- infrastructure/k8s/event-bus-deploy.yaml
- infrastructure/k8s/ingress-service.yaml
- infrastructure/k8s/moderation-deploy.yaml
- infrastructure/k8s/posts-deploy.yaml
- infrastructure/k8s/posts-service.yaml
- infrastructure/k8s/query-deploy.yaml