From e7a74769b5f6030e3994be9668142a9251af19a1 Mon Sep 17 00:00:00 2001 From: Jerome Petazzoni Date: Tue, 26 Oct 2021 19:25:05 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=A1=20Add=20Tiltfile=20to=20facilitate?= =?UTF-8?q?=20writing=20Helm=20charts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- k8s/Tiltfile.helmchart | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 k8s/Tiltfile.helmchart diff --git a/k8s/Tiltfile.helmchart b/k8s/Tiltfile.helmchart new file mode 100644 index 00000000..5b428dbd --- /dev/null +++ b/k8s/Tiltfile.helmchart @@ -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", + ] +))