forked from akash-network/awesome-akash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.yml
72 lines (70 loc) · 1.96 KB
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
version: "2.0"
services:
app:
image: ubuntu:22.04
env:
- "SSH_PASS=" # If you need SSH access to the container(user root), set this variable;
- "VERSION=RC-0.9.2" # Set actual version POKT;
- "CHAIN=" #Set POKT chain, mainnet or testnet;
- "KEYFILE_BASE64=" # Encrypted contents of the keyfile.json file using BASE64;
- "KEY_PASS=" # Password to keyfile.json;
- "ADDRESS=" # Account address;
- "GENESIS_LINK=" # Link to download genesis file https://docs.pokt.network/node/setup/#setup-the-genesis-configuration-file ;
- "CHAINS_LINK=" # Link to download chains.json file, or use CHAINS_BASE64 to transfer the contents of the chains.json file in encrypted form;
- "LINK_SNAPSHOT=" # Link to network snapshot https://docs.pokt.network/node/setup/#download-snapshot ;
- "SEEDS=" # Set seeds address https://docs.pokt.network/node/seeds/ ;
# params:
# storage:
# data:
# mount: /root
command:
- "bash"
- "-c"
args:
- "apt-get update && apt-get upgrade -y;apt-get install -y curl; curl -s https://raw.githubusercontent.com/akash-network/awesome-akash/master/pokt_network/main.sh | bash"
expose:
- port: 8081
to:
- global: true
- port: 8083
to:
- global: true
- port: 8443
to:
- global: true
- port: 26657
to:
- global: true
- port: 26656
to:
- global: true
- port: 22
to:
- global: true
profiles:
compute:
app:
resources:
cpu:
units: 4
memory:
size: 16Gi
storage:
size: 600Gi
#- name: data
# size: 600Gi
# attributes:
# persistent: true
# class: beta3
placement:
akash:
pricing:
app:
denom: uakt
amount: 10000
deployment:
app:
akash:
profile: app
count: 1