-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskaffold-helm.yaml
59 lines (59 loc) · 1.13 KB
/
skaffold-helm.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
49
50
51
52
53
54
55
56
57
58
59
apiVersion: skaffold/v2alpha3
kind: Config
metadata:
name: demo-app
build:
cluster:
namespace: preview
dockerConfig:
path: ~/.docker/config.json
artifacts:
- image: demo-app
kaniko: {}
deploy:
helm:
releases:
- name: demo-app
chartPath: charts/demo-app
wait: true
flags:
upgrade:
- --install
profiles:
- name: preview-remote
build:
tagPolicy:
envTemplate:
template: "{{.IMAGE_NAME}}:{{.GH_USER}}"
deploy:
helm:
releases:
- name: demo-app
chartPath: charts/demo-app
wait: true
valuesFiles:
- charts/preview/values.yaml
flags:
upgrade:
- --install
- name: preview-local
build:
local: {}
artifacts:
- docker: {}
image: demo-app
tagPolicy:
sha256: {}
deploy:
helm:
releases:
- name: demo-app
chartPath: charts/demo-app
wait: true
valuesFiles:
- charts/preview/values.yaml
setValueTemplates:
ingress.host: {{.ADDRESS}}
flags:
upgrade:
- --install