--
You received this message because you are subscribed to the Google Groups "Kubernetes developer/contributor discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kubernetes-de...@googlegroups.com.
To post to this group, send email to kuberne...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kubernetes-dev/49443b90-185a-48dd-9431-a506a4891281%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
The definition of containers inside pod requires the name of image. I hardly imagine how you can use the concept of images for running systemd units. Image would be the name of the command?Also, when using only systemd units, to add new software, you need to install packages on the system, i.e. by using some configuration management system. Container images allow you to pull images without having to install software on the host.But on the other hand, a custom CRI for systemd-nspawn is the idea I was loosely thinking about. Assuming that such a CRI implementation would use Docker images, the image service would need just to store them (most probably as tarballs for each layer) and untar them. Maybe that would be better idea for you if the thing you care mostly is to use only systemd-related ecosystem under Kubernetes?
On Mon, Feb 27, 2017 at 11:46 AM <the.m...@gmail.com> wrote:
Hi,Fleet is no longer being developed and maintained. This lead me to an idea to implement systemd-cri do to schedule systemd units in my cluster. No need for containers, no runc, no docker, no rkt etc. I want to use k8s for everything except the actual execution and execute the way we already do: no namespaces, just shelling out. Even data distribution is out of the scope as everything required is always available on AMIs.I did my research and it sounds possible to do. Looks like I just miss a custom CRI that will use systemd as runtime backend. I did take a look at cri-o but I'm not sure I need this amount of wrapping just to drop it later and run simple systemd units.1. Do I miss something that will prevent this from working?2. Is there any ongoing work towards the same direction?3. What do you think?Just to be clear. I do understand that this is an attempt to try to use k8s not the way it is supposed to be used. I do understand what containers are and everything. I do understand security implications. I just want to use this amazing system to solve my very problems and I don't need the whole package.--Alex
--
You received this message because you are subscribed to the Google Groups "Kubernetes developer/contributor discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kubernetes-dev+unsubscribe@googlegroups.com.
To post to this group, send email to kubernetes-dev@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kubernetes-dev/49443b90-185a-48dd-9431-a506a4891281%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To post to this group, send email to kuberne...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kubernetes-dev/49443b90-185a-48dd-9431-a506a4891281%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--Regards,
Alexander
--
You received this message because you are subscribed to the Google Groups "Kubernetes developer/contributor discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kubernetes-dev+unsubscribe@googlegroups.com.
To post to this group, send email to kubernetes-dev@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kubernetes-dev/CA%2BHyi5%3D7YQ%2BWsOFaVvFSaVZxvV87j2E4eR%2By97yuesAAS%2B%3DpXQ%40mail.gmail.com.
To unsubscribe from this group and stop receiving emails from it, send an email to kubernetes-de...@googlegroups.com.
To post to this group, send email to kuberne...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kubernetes-dev/49443b90-185a-48dd-9431-a506a4891281%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--Regards,
Alexander
--
You received this message because you are subscribed to the Google Groups "Kubernetes developer/contributor discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kubernetes-de...@googlegroups.com.
To post to this group, send email to kuberne...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kubernetes-dev/CA%2BHyi5%3D7YQ%2BWsOFaVvFSaVZxvV87j2E4eR%2By97yuesAAS%2B%3DpXQ%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "Kubernetes developer/contributor discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kubernetes-de...@googlegroups.com.
To post to this group, send email to kuberne...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kubernetes-dev/FC72389B-5373-42CD-8EF9-15F2F436F007%40gmail.com.
To unsubscribe from this group and stop receiving emails from it, send an email to kubernetes-dev+unsubscribe@googlegroups.com.
To post to this group, send email to kubernetes-dev@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kubernetes-dev/49443b90-185a-48dd-9431-a506a4891281%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--Regards,
Alexander
--
You received this message because you are subscribed to the Google Groups "Kubernetes developer/contributor discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kubernetes-dev+unsubscribe@googlegroups.com.
To post to this group, send email to kubernetes-dev@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kubernetes-dev/CA%2BHyi5%3D7YQ%2BWsOFaVvFSaVZxvV87j2E4eR%2By97yuesAAS%2B%3DpXQ%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "Kubernetes developer/contributor discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kubernetes-dev+unsubscribe@googlegroups.com.
To post to this group, send email to kubernetes-dev@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kubernetes-dev/FC72389B-5373-42CD-8EF9-15F2F436F007%40gmail.com.
For more options, visit https://groups.google.com/d/optout.
Yes, I'm well aware what namespaces are and what you get from them. I even understand that I go against the very idea of kubernetes: "Kubernetes is an open-source system for automating deployment, scaling, and management of containerized applications.". You can think about this idea to have systemd-cri as the ultimate test for CRI: is it robust enough fake all isolation while still keep the cluster rolling.
To unsubscribe from this group and stop receiving emails from it, send an email to kubernetes-de...@googlegroups.com.
To post to this group, send email to kuberne...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kubernetes-dev/49443b90-185a-48dd-9431-a506a4891281%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--Regards,
Alexander
--
You received this message because you are subscribed to the Google Groups "Kubernetes developer/contributor discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kubernetes-de...@googlegroups.com.
To post to this group, send email to kuberne...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Kubernetes developer/contributor discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kubernetes-de...@googlegroups.com.
To post to this group, send email to kuberne...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kubernetes-dev/f728b71d-2e03-4a74-8726-e7fa34de0b95%40googlegroups.com.