-
Notifications
You must be signed in to change notification settings - Fork 36
/
skaffold.yaml
45 lines (43 loc) · 1.1 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
# apiVersion: skaffold/v4beta2
# kind: Config
# metadata:
# name: quakeflow
# build:
# artifacts:
# - image: phasenet-api
# context: PhaseNet
# - image: gamma-api
# context: GaMMA
# - image: deepdenoiser-api
# context: DeepDenoiser
# manifests:
# rawYaml:
# - kubernetes/quakeflow-local.yaml
apiVersion: skaffold/v2beta19
kind: Config
build:
tagPolicy:
sha256: {}
# defines where to find the code at build time and where to push the resulting image
artifacts:
- context: quakeflow/demo/hub
image: zhuwq0/quakeflow-hub
- context: quakeflow/demo/data
image: zhuwq0/quakeflow-data
- context: quakeflow/demo/picking
image: zhuwq0/picking-api
- context: quakeflow/demo/association
image: zhuwq0/association-api
- context: quakeflow/demo/location
image: zhuwq0/location-api
# defines the Kubernetes manifests to deploy on each run
deploy:
kubectl:
manifests:
- quakeflow/deployment.yaml
- quakeflow/service.yaml
# use the cloudbuild profile to build images using Google Cloud Build
profiles:
- name: cloudbuild
build:
googleCloudBuild: {}