# Как отключить блокировки про неудачной проверке HA

<div class="contain-inline-size rounded-md border-[0.5px] border-token-border-medium relative bg-token-sidebar-surface-primary" id="bkmrk-%D0%97%D0%B0%D0%B9%D1%82%D0%B8-%D0%B2-%D0%BA%D0%BE%D0%BD%D1%82%D0%B5%D0%B9%D0%BD%D0%B5%D1%80%C2%A0ha"><div class="flex items-center text-token-text-secondary px-4 py-2 text-xs font-sans justify-between h-9 bg-token-sidebar-surface-primary dark:bg-token-main-surface-secondary select-none rounded-t-[5px]">Зайти в контейнер `hassio_cli` : </div></div>```
sudo docker exec -it hassio_cli bash
```

Внутри контейнера выполнить команду:

```
ha jobs options --ignore-conditions healthy
```

Этот параметр **разрешит Supervisor'у работать даже если система помечена как "unhealthy"**, то есть игнорировать текущее состояние здоровья системы.

Вернуть систему в обычное состояние можно командой:

```
ha jobs options --ignore-conditions none
```

Данные действия решают проблему при установке Home Assistant Supervised на Ubuntu:

```
ERROR (MainThread) [supervisor.resolution.evaluations.container] Found image in unhealthy image list 'portainer/portainer-ce' on the host
```

Ссылки на данное решение: [https://community.home-assistant.io/t/system-unhealthy-because-of-portainer/473307](https://community.home-assistant.io/t/system-unhealthy-because-of-portainer/473307)