diff --git a/charts/akash-node/Chart.yaml b/charts/akash-node/Chart.yaml index 8c17c398..14fb406c 100644 --- a/charts/akash-node/Chart.yaml +++ b/charts/akash-node/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.23.0 +version: 0.24.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/akash-node/templates/configmap.yaml b/charts/akash-node/templates/configmap.yaml index d566cb68..e1c6e4ea 100644 --- a/charts/akash-node/templates/configmap.yaml +++ b/charts/akash-node/templates/configmap.yaml @@ -18,11 +18,11 @@ data: for i in $(seq 1 4); do while [ ! -f /data/node-${i}.id ]; do sleep 1; done ID=$(cat /data/node-${i}.id) - ADDRESS="${ID}@0.0.0.0:2665${i}" + ADDRESS="${ID}@127.0.0.1:2665${i}" SEEDS="${ADDRESS},${SEEDS}" done export AKASH_P2P_PERSISTENT_PEERS=${SEEDS%?} - export AKASH_RPC_LADDR=tcp://0.0.0.0:2666${NODE} - export AKASH_P2P_LADDR=tcp://0.0.0.0:2665${NODE} - export AKASH_PROF_LADDR=tcp://0.0.0.0:606${NODE} + export AKASH_RPC_LADDR=tcp://127.0.0.1:2666${NODE} + export AKASH_P2P_LADDR=tcp://127.0.0.1:2665${NODE} + export AKASH_PROF_LADDR=tcp://127.0.0.1:606${NODE} /bin/akash start