> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ankra.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# ankra helm

> Manage Helm registries and credentials

## ankra helm

Commands to manage Helm chart registries and registry credentials.

## ankra helm credentials

Manage Helm registry credentials

## ankra helm credentials create

Create a Helm registry credential with username and password.
The password will be prompted interactively.

Example:
ankra helm credentials create --name my-cred --username user

```bash theme={null}
ankra helm credentials create [flags]
```

**Flags**

| Flag         | Default | Description                  |
| ------------ | ------- | ---------------------------- |
| `--name`     |         | Credential name (required)   |
| `--username` |         | Registry username (required) |

## ankra helm credentials delete

Delete a Helm registry credential

```bash theme={null}
ankra helm credentials delete <name> [flags]
```

**Flags**

| Flag            | Default | Description              |
| --------------- | ------- | ------------------------ |
| `-f`, `--force` | `false` | Skip confirmation prompt |

## ankra helm credentials get

Get details of a Helm registry credential

```bash theme={null}
ankra helm credentials get <name>
```

## ankra helm credentials list

List Helm registry credentials

```bash theme={null}
ankra helm credentials list [flags]
```

**Flags**

| Flag             | Default | Description                                           |
| ---------------- | ------- | ----------------------------------------------------- |
| `-o`, `--output` |         | Output format: json or yaml (default: human-readable) |

## ankra helm credentials update

Update a Helm registry credential's username and password.
The password will be prompted interactively.

Example:
ankra helm credentials update my-cred --username user

```bash theme={null}
ankra helm credentials update <name> [flags]
```

**Flags**

| Flag         | Default | Description                  |
| ------------ | ------- | ---------------------------- |
| `--username` |         | Registry username (required) |

## ankra helm registries

Manage Helm chart registries

## ankra helm registries create

Create a Helm chart registry by providing a JSON spec file.

Example:
ankra helm registries create -f registry-spec.json

```bash theme={null}
ankra helm registries create [flags]
```

**Flags**

| Flag           | Default | Description                                |
| -------------- | ------- | ------------------------------------------ |
| `-f`, `--file` |         | Path to registry spec JSON file (required) |

## ankra helm registries delete

Delete a Helm chart registry

```bash theme={null}
ankra helm registries delete <name> [flags]
```

**Flags**

| Flag            | Default | Description              |
| --------------- | ------- | ------------------------ |
| `-f`, `--force` | `false` | Skip confirmation prompt |

## ankra helm registries get

Get details of a Helm chart registry

```bash theme={null}
ankra helm registries get <name> [flags]
```

**Flags**

| Flag             | Default | Description                                           |
| ---------------- | ------- | ----------------------------------------------------- |
| `-o`, `--output` |         | Output format: json or yaml (default: human-readable) |

## ankra helm registries list

List Helm chart registries

```bash theme={null}
ankra helm registries list [flags]
```

**Flags**

| Flag             | Default | Description                                           |
| ---------------- | ------- | ----------------------------------------------------- |
| `-o`, `--output` |         | Output format: json or yaml (default: human-readable) |

## ankra helm registries sync

Trigger a manual sync of a Helm chart registry

```bash theme={null}
ankra helm registries sync <name>
```

## ankra helm registries sync-jobs

List sync jobs for a Helm chart registry

```bash theme={null}
ankra helm registries sync-jobs <name> [flags]
```

**Flags**

| Flag          | Default | Description             |
| ------------- | ------- | ----------------------- |
| `--page`      | `1`     | Page number             |
| `--page-size` | `25`    | Number of jobs per page |

## ankra helm registries update

Update a Helm chart registry

```bash theme={null}
ankra helm registries update <name> [flags]
```

**Flags**

| Flag                  | Default | Description                                           |
| --------------------- | ------- | ----------------------------------------------------- |
| `--read-job-interval` | `0`     | Seconds between automatic background syncs (required) |
