Skip to content

Commit 1394e24

Browse files
authored
Merge pull request ovrclk#1 from ovrclk/pass1
First attempt at running Akash on Akash
2 parents 5ebe7f4 + 12453e3 commit 1394e24

8 files changed

+1608
-0
lines changed

Dockerfile

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
FROM ovrclk/akash:0.9.0-rc13
2+
LABEL org.opencontainers.image.source https://github.com/ovrclk/akash-on-akash
3+
4+
EXPOSE 8080
5+
EXPOSE 26656
6+
EXPOSE 26657
7+
8+
RUN apt-get update && apt-get install --no-install-recommends --assume-yes ca-certificates python3 python3-toml p7zip-full && apt-get clean
9+
10+
RUN mkdir /node
11+
12+
COPY genesis.json /node/
13+
COPY app.toml /node/
14+
COPY config.toml /node/
15+
16+
COPY run.sh /node/
17+
RUN chmod 555 /node/run.sh
18+
19+
COPY ./patch_config_toml.py /node/
20+
21+
CMD /node/run.sh

README.md

+115
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
# Akash On Akash
2+
3+
This project allows you to run an Akash node on the Akash network. It is currently configured for the Q4 2020 Edgenet.
4+
5+
# How to use this project
6+
7+
Download the file `sdl/deployment.yaml' from this project. Edit the file and find the line like
8+
9+
```
10+
- ENC_KEY=
11+
```
12+
13+
Create a secret password to be used for this node. Edit the line like this
14+
15+
```
16+
- ENC_KEY=mysecret
17+
```
18+
19+
Next create a deployment on the Akash edgenet
20+
21+
```
22+
TODO - copy steps from elsewhere
23+
```
24+
25+
Query the order
26+
27+
```
28+
TODO - copy steps
29+
```
30+
31+
Send the manifest to the provider that won
32+
33+
```
34+
TODO - copy steps
35+
```
36+
37+
To find the provider's public host name run
38+
39+
```
40+
akash "./cache" provider status --provider "akash1psl4djcj9l5gysjys3mf685pxhc0am2f072deq"
41+
```
42+
43+
This should return a large amount of output including a line like
44+
45+
```
46+
"cluster-public-hostname": "example.test"
47+
```
48+
49+
Here the cluster hostname is "example.test", this value is different in your deployment.
50+
51+
52+
Wait for the deployment to come online. Then get the lease status to find the RPC port for the deployment
53+
54+
```
55+
akash provider lease-status --owner $OWNER --provider $PROVIDER --dseq $DSEQ --gseq $GSEQ --oseq $OSEQ
56+
```
57+
58+
This returns output like this
59+
60+
```
61+
{
62+
"services": {
63+
"akash": {
64+
"name": "akash",
65+
"available": 1,
66+
"total": 1,
67+
"uris": [
68+
"jyc2hf8tk8tzmarfk3jsjk.kind.localhost"
69+
],
70+
"observed-generation": 0,
71+
"replicas": 0,
72+
"updated-replicas": 0,
73+
"ready-replicas": 0,
74+
"available-replicas": 0
75+
}
76+
},
77+
"forwarded-ports": {
78+
"akash": [
79+
{
80+
"port": 26656,
81+
"externalPort": 32204,
82+
"proto": "TCP",
83+
"available": 1,
84+
"name": "akash"
85+
},
86+
{
87+
"port": 26657,
88+
"externalPort": 32407,
89+
"proto": "TCP",
90+
"available": 1,
91+
"name": "akash"
92+
}
93+
]
94+
}
95+
}
96+
```
97+
98+
In the section `forwarded-ports` you can see that port 32407 (this number is different in your deployment) is forwarded to port 26657,
99+
which is the RPC interface. Now you can query the node to confirm it is up. The public hostname & the port are combined in the
100+
command below.
101+
102+
```
103+
akash status --node tcp://example.test:32407
104+
```
105+
106+
You can also download the node secrets that were created when the node started up. In the result of getting the lease status there
107+
is a `uris` section. In this example the hostname is `jyc2hf8tk8tzmarfk3jsjk.kind.localhost`. The hostname is different for your deployment.
108+
You can download the encrypted archive by going to
109+
110+
```
111+
http://jyc2hf8tk8tzmarfk3jsjk.kind.localhost/node.7z
112+
```
113+
114+
This file can be opened with whatever archive tool your prefer or with the [official 7Zip client](https://www.7-zip.org/download.html).
115+
Whenever you are prompted for the password set it to whatever you set the `ENC_KEY` line at the start to.

app.toml

+152
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,152 @@
1+
# This is a TOML config file.
2+
# For more information, see https://github.com/toml-lang/toml
3+
4+
###############################################################################
5+
### Base Configuration ###
6+
###############################################################################
7+
8+
# The minimum gas prices a validator is willing to accept for processing a
9+
# transaction. A transaction's fees must meet the minimum of any denomination
10+
# specified in this config (e.g. 0.25token1;0.0001token2).
11+
minimum-gas-prices = ""
12+
13+
# default: the last 100 states are kept in addition to every 500th state; pruning at 10 block intervals
14+
# nothing: all historic states will be saved, nothing will be deleted (i.e. archiving node)
15+
# everything: all saved states will be deleted, storing only the current state; pruning at 10 block intervals
16+
# custom: allow pruning options to be manually specified through 'pruning-keep-recent', 'pruning-keep-every', and 'pruning-interval'
17+
pruning = "everything"
18+
19+
# These are applied if and only if the pruning strategy is custom.
20+
pruning-keep-recent = "0"
21+
pruning-keep-every = "0"
22+
pruning-interval = "0"
23+
24+
# HaltHeight contains a non-zero block height at which a node will gracefully
25+
# halt and shutdown that can be used to assist upgrades and testing.
26+
#
27+
# Note: Commitment of state will be attempted on the corresponding block.
28+
halt-height = 0
29+
30+
# HaltTime contains a non-zero minimum block time (in Unix seconds) at which
31+
# a node will gracefully halt and shutdown that can be used to assist upgrades
32+
# and testing.
33+
#
34+
# Note: Commitment of state will be attempted on the corresponding block.
35+
halt-time = 0
36+
37+
# MinRetainBlocks defines the minimum block height offset from the current
38+
# block being committed, such that all blocks past this offset are pruned
39+
# from Tendermint. It is used as part of the process of determining the
40+
# ResponseCommit.RetainHeight value during ABCI Commit. A value of 0 indicates
41+
# that no blocks should be pruned.
42+
#
43+
# This configuration value is only responsible for pruning Tendermint blocks.
44+
# It has no bearing on application state pruning which is determined by the
45+
# "pruning-*" configurations.
46+
#
47+
# Note: Tendermint block pruning is dependant on this parameter in conunction
48+
# with the unbonding (safety threshold) period, state pruning and state sync
49+
# snapshot parameters to determine the correct minimum value of
50+
# ResponseCommit.RetainHeight.
51+
min-retain-blocks = 0
52+
53+
# InterBlockCache enables inter-block caching.
54+
inter-block-cache = true
55+
56+
# IndexEvents defines the set of events in the form {eventType}.{attributeKey},
57+
# which informs Tendermint what to index. If empty, all events will be indexed.
58+
#
59+
# Example:
60+
# ["message.sender", "message.recipient"]
61+
index-events = []
62+
63+
###############################################################################
64+
### Telemetry Configuration ###
65+
###############################################################################
66+
67+
[telemetry]
68+
69+
# Prefixed with keys to separate services.
70+
service-name = ""
71+
72+
# Enabled enables the application telemetry functionality. When enabled,
73+
# an in-memory sink is also enabled by default. Operators may also enabled
74+
# other sinks such as Prometheus.
75+
enabled = false
76+
77+
# Enable prefixing gauge values with hostname.
78+
enable-hostname = false
79+
80+
# Enable adding hostname to labels.
81+
enable-hostname-label = false
82+
83+
# Enable adding service to labels.
84+
enable-service-label = false
85+
86+
# PrometheusRetentionTime, when positive, enables a Prometheus metrics sink.
87+
prometheus-retention-time = 0
88+
89+
# GlobalLabels defines a global set of name/value label tuples applied to all
90+
# metrics emitted using the wrapper functions defined in telemetry package.
91+
#
92+
# Example:
93+
# [["chain_id", "cosmoshub-1"]]
94+
global-labels = [
95+
]
96+
97+
###############################################################################
98+
### API Configuration ###
99+
###############################################################################
100+
101+
[api]
102+
103+
# Enable defines if the API server should be enabled.
104+
enable = false
105+
106+
# Swagger defines if swagger documentation should automatically be registered.
107+
swagger = false
108+
109+
# Address defines the API server to listen on.
110+
address = "tcp://0.0.0.0:1317"
111+
112+
# MaxOpenConnections defines the number of maximum open connections.
113+
max-open-connections = 1000
114+
115+
# RPCReadTimeout defines the Tendermint RPC read timeout (in seconds).
116+
rpc-read-timeout = 10
117+
118+
# RPCWriteTimeout defines the Tendermint RPC write timeout (in seconds).
119+
rpc-write-timeout = 0
120+
121+
# RPCMaxBodyBytes defines the Tendermint maximum response body (in bytes).
122+
rpc-max-body-bytes = 1000000
123+
124+
# EnableUnsafeCORS defines if CORS should be enabled (unsafe - use it at your own risk).
125+
enabled-unsafe-cors = false
126+
127+
###############################################################################
128+
### gRPC Configuration ###
129+
###############################################################################
130+
131+
[grpc]
132+
133+
# Enable defines if the gRPC server should be enabled.
134+
enable = false
135+
136+
# Address defines the gRPC server address to bind to.
137+
address = "0.0.0.0:9090"
138+
139+
###############################################################################
140+
### State Sync Configuration ###
141+
###############################################################################
142+
143+
# State sync snapshots allow other nodes to rapidly join the network without replaying historical
144+
# blocks, instead downloading and applying a snapshot of the application state at a given height.
145+
[state-sync]
146+
147+
# snapshot-interval specifies the block interval at which local state sync snapshots are
148+
# taken (0 to disable). Must be a multiple of pruning-keep-every.
149+
snapshot-interval = 0
150+
151+
# snapshot-keep-recent specifies the number of recent snapshots to keep and serve (0 to keep all).
152+
snapshot-keep-recent = 2

0 commit comments

Comments
 (0)