-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTiltfile
More file actions
32 lines (23 loc) · 763 Bytes
/
Tiltfile
File metadata and controls
32 lines (23 loc) · 763 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
28
29
30
allow_k8s_contexts('arn:aws:eks:us-west-2:164382793440:cluster/github')
print('Loading up local Development')
prom_helm = helm(
'modules/prom/prometheus-operator',
name='prom',
namespace='monitoring',
# The values file to substitute into the chart.
#values=['./path/to/chart/dir/values-dev.yaml'],
# Values to set from the command-line
#set=['service.port=1234', 'ingress.enabled=true']
)
k8s_yaml(prom_helm)
3_tier_helm = helm(
'modules/prom/prometheus-operator',
name='prom',
namespace='monitoring',
# The values file to substitute into the chart.
#values=['./path/to/chart/dir/values-dev.yaml'],
# Values to set from the command-line
#set=['service.port=1234', 'ingress.enabled=true']
)
k8s_yaml(3_tier_helm)
local('')