-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskaffold.yaml
54 lines (49 loc) · 1.03 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
apiVersion: skaffold/v2beta15
kind: Config
metadata:
name: base
build:
local:
push: false
artifacts:
- image: base-builder
docker:
dockerfile: cmd/Dockerfile
---
apiVersion: skaffold/v2beta15
kind: Config
metadata:
name: boilerplate
build:
artifacts:
- image: some-registry/api
docker:
dockerfile: cmd/api/Dockerfile
requires:
- image: base-builder
alias: BASE_BUILDER
local:
concurrency: 0 # 0 concurrency means run all in parallel, could probably tune this if the number of services grows
tagPolicy:
gitCommit: {}
deploy:
helm:
releases:
- name: api
chartPath: charts/api
artifactOverrides:
api.image: some-registry/api
imageStrategy:
helm:
explicitRegistry: true
profiles:
- name: local
activation:
- command: debug
deploy:
kubeContext: kind-boilerplate
portForward:
- resourceType: Service
resourceName: api
port: 80
localPort: 9000