💡 Add Tiltfile to facilitate writing Helm charts

This commit is contained in:
Jerome Petazzoni
2021-10-26 19:25:05 +02:00
parent 2e096d85c7
commit e7a74769b5

8
k8s/Tiltfile.helmchart Normal file
View File

@@ -0,0 +1,8 @@
k8s_yaml(helm(
"./path-to-chart", name="blue",
values=[], # Example: ["./path/to/values.yaml"]
set=[
"image.repository=jpetazzo/color",
"image.tag=latest",
]
))