-
Notifications
You must be signed in to change notification settings - Fork 2
/
skaffold.yaml.local
50 lines (50 loc) · 1.17 KB
/
skaffold.yaml.local
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
apiVersion: skaffold/v2beta29
kind: Config
deploy:
kubectl:
manifests:
- ./infra/k8s/*.yaml
build:
local:
push: false
artifacts:
- image: kavishkamk/hotel-reservation-alpha-auth
context: auth-alpha
docker:
dockerfile: Dockerfile
sync:
manual:
- dest: .
src: "src/**/*.ts"
- image: kavishkamk/hotel-reservation-alpha-services
context: services-alpha
docker:
dockerfile: Dockerfile
sync:
manual:
- dest: .
src: "src/**/*.ts"
- image: kavishkamk/hotel-reservation-alpha-booking
context: booking-alpha
docker:
dockerfile: Dockerfile
sync:
manual:
- dest: .
src: "src/**/*.ts"
- image: kavishkamk/hotel-reservation-alpha-expiration
context: expiration-alpha
docker:
dockerfile: Dockerfile
sync:
manual:
- dest: .
src: "src/**/*.ts"
- image: kavishkamk/hotel-reservation-alpha-payments
context: payments-alpha
docker:
dockerfile: Dockerfile
sync:
manual:
- dest: .
src: "src/**/*.ts"