Skip to content

Commit

Permalink
add connect_remote to tutorial (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
xgdgsc authored Dec 26, 2022
1 parent 6ba76ec commit bd58191
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/src/howto.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,3 +119,11 @@ Setup your AWS CLI by running `aws configure` on the command line. You can then

If [kubectl](https://kubernetes.io/docs/reference/kubectl/overview/) is configured on your local system, you can use that to connect to RemoteREPL servers on your Kubernetes cluster. Run the following snippet: `connect_repl("your-pod-name"; tunnel=:k8s, namespace="your-namespace")`. The `namespace` argument is only required if the Pod is not in the default Kubernetes namespace.

## Use in Jupyter or Pluto

In environments without any REPL integrations like Jupyter or Pluto notebooks you can use

```julia
connect_remote();
```
which will allow you to use `@remote` without the REPL mode.

0 comments on commit bd58191

Please sign in to comment.