Skip to content

Commit

Permalink
add ingress-dns troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
dghelm committed Sep 13, 2024
1 parent 44e388c commit b5542fa
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion src/content/docs/en/sdk/guides/devnet-deployment.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -360,4 +360,32 @@ curl --location 'http://l1-devnet.scrollsdk/' \
"params":["0x10000000", "0xc"],
"id":0
}'
```
```

## Troubleshooting

### `ingress-dns` issues

Getting `ingress-dns` can be tricky across different machines, operating systems and network configurations.

Directly editing `etc/hosts` has worked for some users, adding all ingress hosts pointing to the minikube IP address.

For VPN users, we've seen the following work:

<Steps>
1. Execute command `sudo minikube tunnel`

1. Open file `/etc/hosts` and add:
```
127.0.0.1 l1-devnet.scrollsdk
127.0.0.1 bridge-history.scrollsdk
127.0.0.1 frontends.scrollsdk
127.0.0.1 grafana.scrollsdk
127.0.0.1 l1-devnet-explorer.scrollsdk
127.0.0.1 l2-rpc.scrollsdk
127.0.0.1 blockscout.scrollsdk
127.0.0.1 bridge-history-api.scrollsdk
```

1. Turn off VPN when visiting in browser
</Steps>

0 comments on commit b5542fa

Please sign in to comment.