-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathskaffold.yml
More file actions
32 lines (31 loc) · 850 Bytes
/
skaffold.yml
File metadata and controls
32 lines (31 loc) · 850 Bytes
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
apiVersion: skaffold/v2alpha3
kind: Config
deploy:
kubectl:
manifests:
- ./infra/k8s/dev/*
- ./infra/k8s/common/*
build:
local:
push: false
artifacts:
- image: solexkal/anonymous-client
context: ./frontends/Admin-Anonymous
docker:
dockerfile: ./docker/dev/Dockerfile.frontend
sync:
manual:
- src: "src/**/.{ts,tsx}"
dest: .
- image: solexkal/anonymous-backend
context: ./backends/Anonymous
docker:
dockerfile: ./docker/dev/Dockerfile.backend
buildArgs:
SERVICE: backends/auth-service
- image: solexkal/anonymous-notification-service
context: ./backends/notification-service
docker:
dockerfile: ./docker/dev/Dockerfile.backend
buildArgs:
SERVICE: backends/notification-service