Kubernetes runtime vs registry #2565
Answered
by
asim
Davincible
asked this question in
General
-
@asim how do the k8s runtime and registry differ exactly? I've been running with default runtime and k8s registry perfectly fine, but what extra does the k8s runtime offer? |
Beta Was this translation helpful? Give feedback.
Answered by
asim
Sep 30, 2022
Replies: 1 comment 5 replies
-
The runtime package is for quite literally running code. So the k8s runtime will run services. The registry is purely service discovery so there's still a need to actually manage deployment. The runtime package was used by the micro runtime. It's not something a service would directly import or use itself. |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
Davincible
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The runtime package is for quite literally running code. So the k8s runtime will run services. The registry is purely service discovery so there's still a need to actually manage deployment. The runtime package was used by the micro runtime. It's not something a service would directly import or use itself.