Skip to content

Commit a7d6ba8

Browse files
author
mike dupont
committed
first draft untested of sdk with no boot yet
1 parent c0d2235 commit a7d6ba8

File tree

2 files changed

+67
-0
lines changed

2 files changed

+67
-0
lines changed

akash_boot.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#to run this
2+
# curl https://raw.githubusercontent.com/meta-introspector/cloud-deployment-eliza/refs/heads/feature/akash_docker/akash_boot.sh | bash
3+

eliza.sdl.yml

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
---
2+
version: "2.0"
3+
services:
4+
service-1:
5+
image: h4ckermike/elizaos-eliza:akash
6+
expose:
7+
- port: 3000
8+
as: 3000
9+
to:
10+
- global: true
11+
command:
12+
- bash
13+
- "-c"
14+
args:
15+
- >-
16+
curl
17+
https://raw.githubusercontent.com/meta-introspector/cloud-deployment-eliza/refs/heads/feature/akash_docker/akash_boot.sh
18+
| bash
19+
env:
20+
- AKASH_ENV=mainnet
21+
- AKASH_NET=https://raw.githubusercontent.com/ovrclk/net/master/mainnet
22+
- RPC_ENDPOINT=https://rpc.akashnet.net:443
23+
- AKASH_GAS_PRICES=0.025uakt
24+
- AKASH_GAS_ADJUSTMENT=1.5
25+
- AKASH_KEYRING_BACKEND=os
26+
- AKASH_FROM=default
27+
- AKASH_FEES=20000uakt
28+
- AKASH_DEPOSIT=500000uakt
29+
- AKASH_PRICING_API_URL=https://console-api.akash.network/v1/pricing
30+
- AKASH_DEFAULT_CPU=1000
31+
- AKASH_DEFAULT_MEMORY=1000000000
32+
- AKASH_DEFAULT_STORAGE=1000000000
33+
- AKASH_CLOSE_DEP=closeAll
34+
- AKASH_CLOSE_DSEQ=19729929
35+
- AKASH_PROVIDER_INFO=akash1ccktptfkvdc67msasmesuy5m7gpc76z75kukpz
36+
- AKASH_DEP_STATUS=dseq
37+
- AKASH_DEP_DSEQ=19729929
38+
- AKASH_GAS_OPERATION=close
39+
- AKASH_GAS_DSEQ=19729929
40+
- AKASH_MANIFEST_MODE=auto
41+
- AKASH_MANIFEST_VALIDATION_LEVEL=strict
42+
# - AKASH_MANIFEST_PATH=
43+
44+
profiles:
45+
compute:
46+
service-1:
47+
resources:
48+
cpu:
49+
units: 2
50+
memory:
51+
size: 2048Mi
52+
storage:
53+
- size: 30Gi
54+
placement:
55+
dcloud:
56+
pricing:
57+
service-1:
58+
denom: uakt
59+
amount: 10000
60+
deployment:
61+
service-1:
62+
dcloud:
63+
profile: service-1
64+
count: 1

0 commit comments

Comments
 (0)