Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions manifesto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
components:
pyaleph:
image: alephim/pyaleph-node
tag: "0.10.1-rc3"
tag: "0.10.1-rc5"

p2p-service:
image: alephim/p2p-service
tag: "0.1.5"

aleph-cli:
version: "0.8.3"
url: "https://github.com/aleph-im/aleph-rs/releases/download/v0.8.3/aleph-cli-linux-x86_64"
version: "0.9.0"
url: "https://github.com/aleph-im/aleph-rs/releases/download/v0.9.0/aleph-cli-linux-x86_64"

indexer:
image: alephim/credit-indexer
Expand All @@ -33,7 +33,7 @@ components:
tag: "latest"

aleph-vm:
version: "1.11.1"
version: "1.11.3"

infrastructure:
vm-connector:
Expand Down
1 change: 1 addition & 0 deletions scripts/crn-up.sh
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ ALEPH_VM_DOMAIN_NAME=$ip
ALEPH_VM_API_SERVER=$CCN_URL
ALEPH_VM_OWNER_ADDRESS=$CRN_OWNER_ADDR
ALEPH_VM_ALLOCATION_TOKEN_HASH=$token_hash
ALEPH_VM_PROGRAM_MEMORY_RESERVED_MIB=0
EOF

# Configure IPv6 if the droplet has a public IPv6 address
Expand Down
6 changes: 3 additions & 3 deletions tests/test_instances.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ def test_instance_create_and_ssh(
# Step 2: Create instance
instance_result = aleph_cli(
"instance", "create",
"--rootfs", rootfs_hash,
"--rootfs-size", "4GiB",
"--ssh-pubkey-file", public_key_path,
"--image", rootfs_hash,
"--vcpus", "1",
"--memory", "2GiB",
"--disk-size", "4GiB",
"--ssh-pubkey-file", public_key_path,
parse_json=True,
)
instance_hash = instance_result["item_hash"]
Expand Down
Loading