# KindHelmChartResource Properties

- 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: `Properties`
- Members: `5`

A Helm chart deployed to a Kind cluster.

<a id="chartref"></a>

## ChartRef

- Name: `ChartRef`
- Modifiers: `get`
- Returns: `string`
- Source: [GitHub](https://github.com/CommunityToolkit/Aspire/blob/d479e13473b1d29d06b974f144a0049289a3cb5c/src/CommunityToolkit.Aspire.Hosting.Kind/KindHelmChartResource.cs#L22)

Gets the chart reference passed to `helm install`.

```csharp
public string ChartRef { get; }
```

<a id="releasename"></a>

## ReleaseName

- Name: `ReleaseName`
- Modifiers: `get`
- Returns: `string`
- Source: [GitHub](https://github.com/CommunityToolkit/Aspire/blob/d479e13473b1d29d06b974f144a0049289a3cb5c/src/CommunityToolkit.Aspire.Hosting.Kind/KindHelmChartResource.cs#L33)

Gets the Helm release name. Defaults to the resource name.

```csharp
public string ReleaseName { get; }
```

<a id="values"></a>

## Values

- Name: `Values`
- Modifiers: `get`
- Returns: `Dictionary<string, string>`
- Source: [GitHub](https://github.com/CommunityToolkit/Aspire/blob/d479e13473b1d29d06b974f144a0049289a3cb5c/src/CommunityToolkit.Aspire.Hosting.Kind/KindHelmChartResource.cs#L38)

Gets the inline Helm values (each maps to `--set key=value`).

```csharp
public Dictionary<string, string> Values { get; }
```

<a id="valuesfiles"></a>

## ValuesFiles

- Name: `ValuesFiles`
- Modifiers: `get`
- Returns: `List<string>`
- Source: [GitHub](https://github.com/CommunityToolkit/Aspire/blob/d479e13473b1d29d06b974f144a0049289a3cb5c/src/CommunityToolkit.Aspire.Hosting.Kind/KindHelmChartResource.cs#L43)

Gets the paths to values files (each maps to `-f path`).

```csharp
public List<string> ValuesFiles { get; }
```

<a id="version"></a>

## Version

- Name: `Version`
- Modifiers: `nullable` `get; set`
- Returns: `string?`
- Source: [GitHub](https://github.com/CommunityToolkit/Aspire/blob/d479e13473b1d29d06b974f144a0049289a3cb5c/src/CommunityToolkit.Aspire.Hosting.Kind/KindHelmChartResource.cs)

Gets or sets the Helm chart version (maps to `--version`). When `null`, Helm uses the latest version.

```csharp
public string? Version { get; set; }
```
