# KindHelmChartResource Constructors

- Package: [CommunityToolkit.Aspire.Hosting.Kind](/reference/api/csharp/communitytoolkit.aspire.hosting.kind.md)
- Type: [KindHelmChartResource](/reference/api/csharp/communitytoolkit.aspire.hosting.kind/kindhelmchartresource.md)
- Kind: `Constructors`
- Members: `1`

A Helm chart deployed to a Kind cluster.

<a id="constructor"></a>
<a id="constructor-string-string-kindclusterresource"></a>

## KindHelmChartResource(string, string, KindClusterResource)

- Name: `Constructor(string, string, KindClusterResource)`
- Source: [GitHub](https://github.com/CommunityToolkit/Aspire/blob/d479e13473b1d29d06b974f144a0049289a3cb5c/src/CommunityToolkit.Aspire.Hosting.Kind/KindHelmChartResource.cs#L17-L43)

A Helm chart deployed to a Kind cluster.

```csharp
public class KindHelmChartResource
{
    public KindHelmChartResource(
        string name,
        string chartRef,
        KindClusterResource parent)
    {
        // ...
    }
}
```

## Parameters

- `name` (`string`)
  The name of the resource (also used as the Helm release name).
- `chartRef` (`string`)
  Chart reference passed to `helm install`. Any form Helm supports: OCI ( `oci://registry/chart`), repo ( `repo/chart`), or local path ( `./charts/my-app`).
- `parent` ([KindClusterResource](/reference/api/csharp/communitytoolkit.aspire.hosting.kind/kindclusterresource.md))
  The parent Kind cluster resource.
