Skip to content
New issue

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

docs: version bump and general updates #127

Closed
6 tasks done
andy108369 opened this issue Sep 23, 2023 · 1 comment
Closed
6 tasks done

docs: version bump and general updates #127

andy108369 opened this issue Sep 23, 2023 · 1 comment
Assignees
Labels

Comments

@andy108369
Copy link
Contributor

andy108369 commented Sep 23, 2023

After having tested them on the Hurricane provider, it's time to bump the docs.

  • kubespray 2.21.0 => 2.23.0
  • nginx-ingress controller 4.7.1 => 4.7.2
  • metallb 0.13.7 => 0.13.11
  • rook/ceph v1.12.3 => v1.12.4

Additionally

1) From the K8s control-plane node directly

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 .

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.

  1. Forward 26657 to 127.0.0.1:26657
$ 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
  1. Put the kubectl port-forward process into background

Press Ctrl+Z and type bg + Enter as follows:

^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 &
  1. After that you can access the RPC as if it were running locally
$ curl -s http://127.0.0.1:26657/status | jq -r .
  1. Stop kubectl port-forward after you are done
$ 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

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)

@andy108369 andy108369 changed the title docs: version bump docs: version bump and general updates Sep 23, 2023
@chainzero
Copy link
Collaborator

All requested doc updates have been completed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants