-
Notifications
You must be signed in to change notification settings - Fork 0
/
skaffold.yaml
41 lines (40 loc) · 1.08 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
apiVersion: skaffold/v2beta28
kind: Config
profiles:
- name: dev
activation:
- command: dev
build:
artifacts:
- image: europe-west1-docker.pkg.dev/autocode-347209/sandbox/playground-sandbox
context: ./backend
docker:
target: development
sync:
manual:
- src: "src/**/*.ts"
dest: .
- image: europe-west1-docker.pkg.dev/autocode-347209/sandbox/playground-sandbox-fr
context: ./frontend
docker:
target: development
sync:
manual:
- src: "src/**"
dest: .
deploy:
kustomize:
paths: ["./k8s/overlays/local"]
build:
artifacts:
- image: europe-west1-docker.pkg.dev/autocode-347209/sandbox/playground-sandbox
context: ./backend
docker:
target: production
- image: europe-west1-docker.pkg.dev/autocode-347209/sandbox/playground-sandbox-fr
context: ./frontend
docker:
target: production
deploy:
kustomize:
paths: ["./k8s/overlays/production"]