diff --git a/manifesto.yml b/manifesto.yml index 9f303ef..392364b 100644 --- a/manifesto.yml +++ b/manifesto.yml @@ -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 @@ -33,7 +33,7 @@ components: tag: "latest" aleph-vm: - version: "1.11.1" + version: "1.11.3" infrastructure: vm-connector: diff --git a/scripts/crn-up.sh b/scripts/crn-up.sh index aa6d41d..3a4e2b4 100755 --- a/scripts/crn-up.sh +++ b/scripts/crn-up.sh @@ -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 diff --git a/tests/test_instances.py b/tests/test_instances.py index 9bac516..b69ec03 100644 --- a/tests/test_instances.py +++ b/tests/test_instances.py @@ -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"]