-
Notifications
You must be signed in to change notification settings - Fork 0
/
skaffold.yaml
31 lines (30 loc) · 926 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
apiVersion: skaffold/v2beta20
kind: Config
metadata:
name: platform
build:
artifacts:
- image: us-central1-docker.pkg.dev/genuine-flight-317411/devel/robusta-pre-requisites
context: prereqrunner
docker:
dockerfile: Dockerfile
local:
concurrency: 0
# this is very important. we need to use inputDigest so that different developers don't build the same tags
# and interfere with one another's work (e.g. when building and then running pytest you want to test the version
# you built and not a version someone else built with the same tag)
tagPolicy:
inputDigest: {}
deploy:
kustomize:
paths: ["./deployment"]
profiles:
- name: apple-m1-dev
build:
artifacts:
- image: us-central1-docker.pkg.dev/genuine-flight-317411/devel/robusta-pre-requisites
context: prereqrunner
custom:
buildCommand: ../build_on_apple_m1.sh
local:
concurrency: 0