-
Notifications
You must be signed in to change notification settings - Fork 0
/
skaffold.yaml
35 lines (34 loc) · 1002 Bytes
/
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
apiVersion: skaffold/v2beta17
kind: Config
deploy:
kubectl:
manifests:
- ./Infrastructure/k8s/*
build:
local:
push: false
artifacts:
- image: ranga/shopservice # image name that we prefer
context: ShopService # Folder that contains the source files
docker:
dockerfile: Dockerfile
sync: # Sync is the watcher for the file changes.
manual:
- src: '**.cs' # watching for Any .cs file changes
dest: . # destination where the files needs to be copied in the running container.
- image: ranga/listservice
context: ListService
docker:
dockerfile: Dockerfile
sync:
manual:
- src: '**.cs'
dest: .
- image: ranga/authservice
context: AuthService
docker:
dockerfile: Dockerfile
sync:
manual:
- src: '**.cs'
dest: .