Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: vm-connector used obsolete software #594

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/build-deb-package-and-integration-tests.yml
Original file line number Diff line number Diff line change
@@ -216,8 +216,8 @@ jobs:
ssh root@${DROPLET_IPV4} DEBIAN_FRONTEND=noninteractive "apt-get -o Dpkg::Progress-Fancy=0 -o DPkg::Lock::Timeout=60 update"
ssh root@${DROPLET_IPV4} DEBIAN_FRONTEND=noninteractive "apt-get -o Dpkg::Progress-Fancy=0 -o DPkg::Lock::Timeout=60 upgrade -y"
ssh root@${DROPLET_IPV4} DEBIAN_FRONTEND=noninteractive "apt-get -o Dpkg::Progress-Fancy=0 -o DPkg::Lock::Timeout=60 install -y docker.io apparmor-profiles"
ssh root@${DROPLET_IPV4} "docker pull ghcr.io/aleph-im/vm-connector:alpha"
ssh root@${DROPLET_IPV4} "docker run -d -p 127.0.0.1:4021:4021/tcp --restart=always --name vm-connector ghcr.io/aleph-im/vm-connector:alpha"
ssh root@${DROPLET_IPV4} "docker pull ghcr.io/aleph-im/vm-connector:2025-03"
ssh root@${DROPLET_IPV4} "docker run -d -p 127.0.0.1:4021:4021/tcp --restart=always --name vm-connector ghcr.io/aleph-im/vm-connector:2025-03"

# "--force-confold" keeps existing config files during package install/upgrade, avoiding prompts.
ssh root@${DROPLET_IPV4} DEBIAN_FRONTEND=noninteractive "apt-get -o Dpkg::Progress-Fancy=0 -o DPkg::Lock::Timeout=60 -o Dpkg::Options::="--force-confold" install -y /opt/${{ matrix.os_config.package_name }}"
@@ -367,7 +367,8 @@ jobs:
ssh root@${DROPLET_IPV4} DEBIAN_FRONTEND=noninteractive "apt-get -o Dpkg::Progress-Fancy=0 -o DPkg::Lock::Timeout=60 update"
ssh root@${DROPLET_IPV4} DEBIAN_FRONTEND=noninteractive "apt-get -o Dpkg::Progress-Fancy=0 -o DPkg::Lock::Timeout=60 upgrade -y"
ssh root@${DROPLET_IPV4} DEBIAN_FRONTEND=noninteractive "apt-get -o Dpkg::Progress-Fancy=0 -o DPkg::Lock::Timeout=60 install -y docker.io apparmor-profiles"
ssh root@${DROPLET_IPV4} "docker run -d -p 127.0.0.1:4021:4021/tcp --restart=always --name vm-connector alephim/vm-connector:alpha"
ssh root@${DROPLET_IPV4} "docker pull ghcr.io/aleph-im/vm-connector:2025-03"
ssh root@${DROPLET_IPV4} "docker run -d -p 127.0.0.1:4021:4021/tcp --restart=always --name vm-connector ghcr.io/aleph-im/vm-connector:2025-03"

# Copy our example VM on the server
scp -pr ./examples root@${DROPLET_IPV4}:/opt/
2 changes: 1 addition & 1 deletion .github/workflows/test-using-pytest.yml
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ jobs:
services:
# Run vm connector for the execution tests
vm-connector:
image: alephim/vm-connector:alpha
image: alephim/vm-connector:2025-03
ports:
- 4021:4021

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -66,7 +66,7 @@ Unless your focus is developing the VM-Connector, using the Docker image is easi
See the [VM-Connector README](./vm_connector/README.md) for more details.

```shell
docker run -d -p 127.0.0.1:4021:4021/tcp --restart=always --name vm-connector alephim/vm-connector:alpha
docker run -d -p 127.0.0.1:4021:4021/tcp --restart=always --name vm-connector alephim/vm-connector:2025-03
```

2. **Install the Debian Package**
4 changes: 2 additions & 2 deletions docker/vm_connector.dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM python:3.9
FROM python:3.13

RUN apt-get update && apt-get -y upgrade && apt-get install -y \
libsecp256k1-dev \
zip \
&& rm -rf /var/lib/apt/lists/*

RUN pip install fastapi aiofiles uvicorn aleph-client eth-account
RUN pip install 'fastapi==0.115.11' 'aiofiles==24.1.0' 'uvicorn==0.34.0' 'aleph-sdk-python==1.4.0' 'setuptools==76.0.0'

WORKDIR /opt
ENV PYTHONPATH=/opt
11 changes: 8 additions & 3 deletions vm_connector/README.md
Original file line number Diff line number Diff line change
@@ -20,17 +20,22 @@ apt update
apt install -y docker.io
```

### 2.b. Pull the Docker image
### 2.b. Build the docker image
```shell
docker build -f ./docker/vm_connector.dockerfile -t vm-connector .
```

### 2.c. Pull the Docker image

```shell
docker pull alephim/vm-connector:alpha
docker pull alephim/vm-connector:2025-03
```

## 3. Running

Run the Docker image
```shell
docker run -d -p 4021:4021/tcp --restart=always --name vm-connector alephim/vm-connector:alpha
docker run -d -p 4021:4021/tcp --restart=always --name vm-connector alephim/vm-connector:2025-03
```

## 4. Configuration
36 changes: 21 additions & 15 deletions vm_connector/main.py
Original file line number Diff line number Diff line change
@@ -2,14 +2,16 @@
import logging

import aiohttp
from aleph_client.asynchronous import create_post
from aleph_client.chains.common import get_fallback_private_key
from aleph_client.chains.ethereum import ETHAccount
from aleph_client.types import StorageEnum
from aleph_message.status import MessageStatus
from fastapi import FastAPI, HTTPException, Request
from fastapi.responses import Response, StreamingResponse
from pydantic import BaseModel

from aleph.sdk import AuthenticatedAlephHttpClient
from aleph.sdk.chains.common import get_fallback_private_key
from aleph.sdk.chains.ethereum import ETHAccount
from aleph.sdk.types import StorageEnum

from .conf import settings

logger = logging.getLogger(__file__)
@@ -164,17 +166,21 @@ async def publish_data(body: PostBody):
content = json.loads(message["item_content"])
content_content = content["content"]

result = await create_post(
account=account,
post_content=content_content,
post_type=content["type"],
address=content["address"],
ref=None,
channel=message["channel"],
inline=True,
storage_engine=StorageEnum.storage,
)
return {"status": "success"}
async with AuthenticatedAlephHttpClient(account) as client:
result, status = await client.create_post(
post_content=content_content,
post_type=content["type"],
address=content["address"],
ref=None,
channel=message["channel"],
inline=True,
storage_engine=StorageEnum.storage,
sync=True,
)
if status == MessageStatus.PROCESSED:
return {"status": "success"}
else:
return {"status": "error"}


@app.get("/properties")