Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@ You can set up retention policies for both Mongo and PostgreSQL to clean up data
+
[source,bash]
----
kubectl exec -it <frontend-xxx> -- /bin/bash
kubectl port-forward $(kubectl get pods -l app=frontend -o jsonpath='{.items[0].metadata.name}' -n <namespace>) -n <namespace> 16000:6005 &
----
+
Then, connect to the REPL:
+
[source,bash]
----
lein repl :connect 6005
docker run --rm -it clojure bash
lein repl :connect host.docker.internal:16000
----

. Once connected, the current setting can be verified using the following command:
Expand Down