How to deploy a Helm 3 chart using C#

6/4/2020

What is the best way to deploy a Helm chart using C#? Helm 3 is written in go and I could not find a C# wrapper, any advise on that? Thank you.

-- Florian Boehmak
c#
kubernetes
kubernetes-helm

1 Answer

6/4/2020

Helm is written in Go so unless you want to get incredibly fancy your best bet is running it as a subprocess like normal. A medium-fancy solution would be using one of the many Helm operators and then using a C# Kubernetes api client library to set the objects.

-- coderanger
Source: StackOverflow