# HelmChartOptions

- Module: [Aspire.Hosting.Kubernetes](/reference/api/typescript/aspire.hosting.kubernetes.md)
- Version: `13.3.0-preview.1.26254.5`
- Kind: `handle`
- Source: [GitHub](https://github.com/microsoft/aspire)

## Definition

```typescript
interface HelmChartOptions {
  withChartVersion(version: ParameterResource): HelmChartOptions;
  withNamespace(namespace: ParameterResource): HelmChartOptions;
  withReleaseName(releaseName: ParameterResource): HelmChartOptions;
}
```

## Methods

- [withChartVersion](/reference/api/typescript/aspire.hosting.kubernetes/helmchartoptions/withchartversion.md) -- `method` -- Sets the Helm chart version for deployment.
    ```typescript
  withChartVersion(version: ParameterResource): HelmChartOptions
  ```
- [withNamespace](/reference/api/typescript/aspire.hosting.kubernetes/helmchartoptions/withnamespace.md) -- `method` -- Sets the target Kubernetes namespace for deployment.
    ```typescript
  withNamespace(namespace: ParameterResource): HelmChartOptions
  ```
- [withReleaseName](/reference/api/typescript/aspire.hosting.kubernetes/helmchartoptions/withreleasename.md) -- `method` -- Sets the Helm release name for deployment.
    ```typescript
  withReleaseName(releaseName: ParameterResource): HelmChartOptions
  ```
