-
Notifications
You must be signed in to change notification settings - Fork 0
/
skaffold.yaml
47 lines (47 loc) · 1.01 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
apiVersion: skaffold/v4beta11
kind: Config
metadata:
name: worker-controller
build:
tagPolicy:
gitCommit:
variant: CommitSha
ignoreChanges: true
profiles:
- name: crds
manifests:
kustomize:
paths:
- config/crd
- name: manager
build:
artifacts:
- image: controller
docker:
dockerfile: Dockerfile
manifests:
kustomize:
paths:
- config/default
- config/rbac
- config/manager
- name: demo
build:
artifacts:
- image: worker
context: internal/demo
docker:
dockerfile: Dockerfile
buildArgs:
DD_GIT_COMMIT_SHA: "{{ .IMAGE_TAG }}"
DD_GIT_REPOSITORY_URL: "github.com/DataDog/temporal-worker-controller"
manifests:
rawYaml:
- internal/demo/temporal_worker.yaml
deploy:
kubeContext: minikube
kubectl: {}
resourceSelector:
allow:
- groupKind: "TemporalWorker.temporal.io"
image: [".*"]