We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After having tested them on the Hurricane provider, it's time to bump the docs.
export AKASH_NODE="http://$(kubectl -n akash-services get ep akash-node-1 -o jsonpath='{.subsets[0].addresses[0].ip}'):26657" curl -s "$AKASH_NODE/status" | jq -r .
You can use kubectl port-forward for forwarding the akash node (RPC) port 26657/tcp to your local station.
kubectl port-forward
$ kubectl -n akash-services port-forward service/akash-node-1 26657:26657 Forwarding from 127.0.0.1:26657 -> 26657 Forwarding from [::1]:26657 -> 26657
Press Ctrl+Z and type bg + Enter as follows:
Ctrl+Z
bg
^Z [1]+ Stopped kubectl -n akash-services port-forward service/akash-node-1 26657:26657 $ bg [1]+ kubectl -n akash-services port-forward service/akash-node-1 26657:26657 &
$ curl -s http://127.0.0.1:26657/status | jq -r .
$ jobs [1]+ Running kubectl -n akash-services port-forward service/akash-node-1 26657:26657 & $ kill %1 $ jobs [1]+ Terminated kubectl -n akash-services port-forward service/akash-node-1 26657:26657
ibc-gpu-3-services-1-gpu-each-different.jq
As well as adding the example with specifying PRICE_TARGET_CPU=1.60 PRICE_TARGET_MEMORY=0.80 ... on the CLI (also in that PR comment)
PRICE_TARGET_CPU=1.60 PRICE_TARGET_MEMORY=0.80 ...
The text was updated successfully, but these errors were encountered:
All requested doc updates have been completed
Sorry, something went wrong.
chainzero
No branches or pull requests
After having tested them on the Hurricane provider, it's time to bump the docs.
Additionally
1) From the K8s control-plane node directly
2) From a remote address (outside the K8s network)
You can use
kubectl port-forward
for forwarding the akash node (RPC) port 26657/tcp to your local station.kubectl port-forward
process into backgroundPress
Ctrl+Z
and typebg
+ Enter as follows:kubectl port-forward
after you are doneibc-gpu-3-services-1-gpu-each-different.jq
-- from feat(bid-script): support setting price per specific GPU model requested and parametrize price targets via helm chart values helm-charts#226As well as adding the example with specifying
PRICE_TARGET_CPU=1.60 PRICE_TARGET_MEMORY=0.80 ...
on the CLI (also in that PR comment)The text was updated successfully, but these errors were encountered: