solana: use loopback address to connect to other containers in same pod

There's a bit of a chicken-and-egg problem here - the liveness probe
cannot succeed until all containers in the pod are ready, and the
service load balancer won't work until it's ready.
This commit is contained in:
Leo 2020-11-29 19:19:37 +01:00
parent 120dfab49e
commit 5997f133c3
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ set -x
# Configure CLI (works the same as upstream Solana CLI)
mkdir -p ~/.config/solana/cli
cat <<EOF > ~/.config/solana/cli/config.yml
json_rpc_url: "http://solana-devnet:8899"
json_rpc_url: "http://127.0.0.1:8899"
websocket_url: ""
keypair_path: /usr/src/solana/id.json
EOF
@ -24,7 +24,7 @@ retry () {
}
# Fund our account (as seen in id.json).
retry cli airdrop solana-devnet:9900
retry cli airdrop 127.0.0.1:9900
# Create the bridge contract at a known address
# OK to fail on subsequent attempts (already created).