You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lorry used to have a k8s exec client, which invokes lorry container through kubectl's exec capabilities. It is useful in local debug, as we often run kubeblocks as a process (with go run commands) instead of building an image and running as a pod.
In kb-agent, this exec client is missing and local debug becomes more complicated. I suggest add back exec client.
The text was updated successfully, but these errors were encountered:
Using port forward to achieve the same functionality seems to be better, as it reuses the HTTP client. (So that we don't need to deal with things like escaping quotes)
Lorry used to have a k8s exec client, which invokes lorry container through kubectl's exec capabilities. It is useful in local debug, as we often run kubeblocks as a process (with
go run
commands) instead of building an image and running as a pod.In kb-agent, this exec client is missing and local debug becomes more complicated. I suggest add back exec client.
The text was updated successfully, but these errors were encountered: