-
Notifications
You must be signed in to change notification settings - Fork 1
/
skaffold.yaml
82 lines (79 loc) · 2.22 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
apiVersion: skaffold/v2beta7
kind: Config
build:
local:
push: false
useBuildkit: true
artifacts:
- context: platform/k1s-dnsutils
image: k1s-dnsutils
- context: platform/k1s-error-pages
image: k1s-error-pages
- context: platform/k1s-ui
image: k1s-ui
profiles:
- name: dev
activation:
- command: dev
build:
artifacts:
- context: platform/k1s-dnsutils
image: k1s-dnsutils
custom:
buildCommand: ./scripts/build.sh
sync: {}
- context: platform/k1s-error-pages
image: k1s-error-pages
custom:
buildCommand: ./scripts/build.sh
sync: {}
- context: platform/k1s-ui
image: k1s-ui
custom:
buildCommand: ./scripts/build.sh
sync: {}
deploy:
statusCheckDeadlineSeconds: 1300
helm:
releases:
- name: k1s-traefik
namespace: k1s
chartPath: infrastructure/k1s-traefik
valuesFiles:
- infrastructure/helm-values.yaml
artifactOverrides:
traefik.cron.image: k1s-dnsutils
- name: k1s-error-pages
namespace: k1s
chartPath: infrastructure/k1s-error-pages
valuesFiles:
- infrastructure/helm-values.yaml
artifactOverrides:
pages.image: k1s-error-pages
- name: k1s-oauth
namespace: k1s
chartPath: infrastructure/k1s-oauth
valuesFiles:
- infrastructure/helm-values.yaml
- name: k1s-prometheus
namespace: k1s
chartPath: infrastructure/k1s-prometheus
valuesFiles:
- infrastructure/helm-values.yaml
- name: k1s-grafana
namespace: k1s
chartPath: infrastructure/k1s-grafana
valuesFiles:
- infrastructure/helm-values.yaml
- name: k1s-kube-dashboard
namespace: k1s
chartPath: infrastructure/k1s-kube-dashboard
valuesFiles:
- infrastructure/helm-values.yaml
- name: k1s-ui
namespace: k1s
chartPath: infrastructure/k1s-ui
valuesFiles:
- infrastructure/helm-values.yaml
artifactOverrides:
ui.image: k1s-ui