-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskaffold.yaml
111 lines (111 loc) · 3.11 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
apiVersion: skaffold/v2alpha3
kind: Config
deploy:
kubectl:
manifests: # shouldn't add the persistent Volumes and dbs to skaffold
- ./infra/k8s/nats-depl.yaml
- ./infra/k8s/client/client-depl.yaml
- ./infra/k8s/client/client-restaurant-depl.yaml
- ./infra/k8s/menu/menu-depl.yaml
- ./infra/k8s/notification/notification-depl.yaml
- ./infra/k8s/order/order-depl.yaml
- ./infra/k8s/restaurant/restaurant-depl.yaml
- ./infra/k8s/user/user-depl.yaml
- ./infra/k8s/query/query-depl.yaml
- ./infra/k8s/payment/payment-depl.yaml
- ./infra/k8s/expiration/expiration-redis-depl.yaml
- ./infra/k8s/expiration/expiration-depl.yaml
- ./infra/k8s-dev/*
- ./infra/k8s/database-pvc.yaml #added it to refresh schemas
- ./infra/k8s/menu/menu-mongo-depl.yaml #added it to refresh schemas
- ./infra/k8s/restaurant/restaurant-mongo-depl.yaml #added it to refresh schemas
- ./infra/k8s/order/order-mongo-depl.yaml #added it to refresh schemas
- ./infra/k8s/user/user-mongo-depl.yaml #added it to refresh schemas
- ./infra/k8s/query/query-mongo-depl.yaml #added it to refresh schemas
- ./infra/k8s/payment/payment-mongo-depl.yaml #added it to refresh schemas
build:
local:
push: false
artifacts:
- image: isengart/food-user
context: user
docker:
dockerfile: Dockerfile
sync:
manual:
- src: 'src/**/*.ts'
dest: .
- image: isengart/food-restaurant
context: restaurant
docker:
dockerfile: Dockerfile
sync:
manual:
- src: 'src/**/*.ts'
dest: .
- image: isengart/food-menu
context: menu
docker:
dockerfile: Dockerfile
sync:
manual:
- src: 'src/**/*.ts'
dest: .
- image: isengart/food-order
context: order
docker:
dockerfile: Dockerfile
sync:
manual:
- src: 'src/**/*.ts'
dest: .
- image: isengart/food-payment
context: payment
docker:
dockerfile: Dockerfile
sync:
manual:
- src: 'src/**/*.ts'
dest: .
- image: isengart/food-notification
context: notification
docker:
dockerfile: Dockerfile
sync:
manual:
- src: 'src/**/*.ts'
dest: .
- image: isengart/food-query
context: query
docker:
dockerfile: Dockerfile
sync:
manual:
- src: 'src/**/*.ts'
dest: .
- image: isengart/food-expiration
context: expiration
docker:
dockerfile: Dockerfile
sync:
manual:
- src: 'src/**/*.ts'
dest: .
- image: isengart/food-client
context: client
docker:
dockerfile: Dockerfile
sync:
infer:
- '**/*.ts'
- '**/*.tsx'
- '**/*.less'
- image: isengart/food-client-restaurant
context: client-restaurant
docker:
dockerfile: Dockerfile
sync:
infer:
- '**/*.ts'
- '**/*.tsx'
- '**/*.less'