# KindHelmChartResource

- Kind: `class`
- Package: [CommunityToolkit.Aspire.Hosting.Kind](/reference/api/csharp/communitytoolkit.aspire.hosting.kind.md)
- Version: `13.4.1-beta.706`
- Namespace: `Aspire.Hosting.ApplicationModel`
- Target framework: `net10.0`
- Source: [GitHub](https://github.com/CommunityToolkit/Aspire/blob/d479e13473b1d29d06b974f144a0049289a3cb5c/src/CommunityToolkit.Aspire.Hosting.Kind/KindHelmChartResource.cs)
- Inherits: [KindDeployedResource](/reference/api/csharp/communitytoolkit.aspire.hosting.kind/kinddeployedresource.md)

A Helm chart deployed to a Kind cluster.

## Definition

```csharp
namespace Aspire.Hosting.ApplicationModel;

public class KindHelmChartResource
    : Aspire.Hosting.ApplicationModel.KindDeployedResource
{
    // ...
}
```

## Constructors

- [KindHelmChartResource(string, string, KindClusterResource)](/reference/api/csharp/communitytoolkit.aspire.hosting.kind/kindhelmchartresource/constructors.md#constructor-string-string-kindclusterresource) -- A Helm chart deployed to a Kind cluster.

## Properties

- [ChartRef](/reference/api/csharp/communitytoolkit.aspire.hosting.kind/kindhelmchartresource/properties.md#chartref) : `string` `get` -- Gets the chart reference passed to `helm install`.
- [ReleaseName](/reference/api/csharp/communitytoolkit.aspire.hosting.kind/kindhelmchartresource/properties.md#releasename) : `string` `get` -- Gets the Helm release name. Defaults to the resource name.
- [Values](/reference/api/csharp/communitytoolkit.aspire.hosting.kind/kindhelmchartresource/properties.md#values) : `Dictionary<string, string>` `get` -- Gets the inline Helm values (each maps to `--set key=value`).
- [ValuesFiles](/reference/api/csharp/communitytoolkit.aspire.hosting.kind/kindhelmchartresource/properties.md#valuesfiles) : `List<string>` `get` -- Gets the paths to values files (each maps to `-f path`).
- [Version](/reference/api/csharp/communitytoolkit.aspire.hosting.kind/kindhelmchartresource/properties.md#version) : `string?` `get; set` -- Gets or sets the Helm chart version (maps to `--version`). When `null`, Helm uses the latest version.
