-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskaffold.yaml
More file actions
27 lines (26 loc) · 817 Bytes
/
Copy pathskaffold.yaml
File metadata and controls
27 lines (26 loc) · 817 Bytes
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
apiVersion: skaffold/v1beta15
kind: Config
build:
tagPolicy:
sha256: {}
# defines where to find the code at build time and where to push the resulting image
artifacts:
- image: docker.io/daggerok/idea-cloud-code-plugin-skaffold
# To learn more about how Jib builds Java containers visit
# https://github.com/GoogleContainerTools/jib
jib: {}
# defines the Kubernetes manifests to deploy on each run
deploy:
kubectl:
manifests:
- ./kubernetes-manifests/**.yaml
profiles:
# use the cloudbuild profile to build images using Google Cloud Build
- name: cloudbuild
build:
googleCloudBuild: {}
# use the dockerfile profile to build images using Docker instead of Jib
- name: dockerfile
build:
artifacts:
- image: docker.io/daggerok/idea-cloud-code-plugin-skaffold