-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathskaffold.yaml
48 lines (46 loc) · 915 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
36
37
38
39
40
41
42
43
44
45
46
47
48
apiVersion: skaffold/v2beta1
kind: Config
metadata:
name: java-tools
build:
artifacts:
- image: robustadev/java-toolkit
docker:
dockerfile: dockerfile
local:
push: true
concurrency: 0
deploy:
kubectl:
manifests:
- test_deployment.yaml
profiles:
- name: apple-m1-dev
build:
artifacts:
- image: robustadev/java-toolkit
context: .
custom:
buildCommand: ./build_on_apple_m1.sh
local:
push: true
concurrency: 0
- name: gcloud-build
build:
googleCloudBuild:
projectId: genuine-flight-317411
artifacts:
- image: robustadev/java-toolkit
context: .
docker:
dockerfile: dockerfile
- name: arm
build:
artifacts:
- image: robustadev/java-toolkit
context: .
custom:
buildCommand: ./build_with_arm.sh
local:
push: true
concurrency: 0