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

# Image

### read\_kernel\_image

```python theme={null}
vessl.read_kernel_image(
   image_id: int
)
```

Read the kernel image.

**Args**

* `image_id` (int) : Image ID.

**Example**

```python theme={null}
vessl.read_kernel_image(
    image_id=1,
)
```

***

## list\_kernel\_images

```python theme={null}
vessl.list_kernel_images(
   **kwargs
)
```

List kernel images in the default organization. If you
want to override the default organization, then pass `organization_name` as
`**kwargs`.

**Example**

```python theme={null}
vessl.list_kernel_images()
```
