-q Set to be quite. I doubt it's intentional, but I kinda love it.
Show HN: Simplenetes – I replaced Kubernetes with 17k lines of shell script
61–70 of 159 posts
Re: Show HN: Simplenetes – I replaced Kubernetes with 17k lines of shell script
#62Earlier quoted context omitted.
Simplenetes does support state, no sweat. But it can't pull a disk out of the cloud for you, there is some traditional Ops involved.
So, it can reschedule container if there is a continuous error state on a particular host it is deployed?
However, if you are just dealing with a three node cluster (Yes I know many of you are running tri-cycles with k8s stickers on it) then maybe it can be fine for many applications to not have a scheduler.
Simplenetes does however support multiple replicas of pods so if one node fails it can be OK.
Re: Show HN: Simplenetes – I replaced Kubernetes with 17k lines of shell script
#63Earlier quoted context omitted.
Thanks! We just moved Space.sh from GitLab to GitHub (hurts in my heart, but yeah community is on GitHub). Also we are lousy at promoting our stuff, maybe April 1st is not the best day to do this either...
> community is on GitHub I'm surprised when people say this. I thought communities were only around repos.
Re: Show HN: Simplenetes – I replaced Kubernetes with 17k lines of shell script
#64Earlier quoted context omitted.
So, it can reschedule container if there is a continuous error state on a particular host it is deployed?
No, don't build the next Netflix on Simplenetes. However, if you are just dealing with a three node cluster (Yes I know many of you are running tri-cycles with k8s stickers on it) then maybe it can be fine for many applications to not have a scheduler. Simplenetes does however support multiple replicas of pods so if one node fails it can be OK.
Why do I need 17k lines shellscript to run my tri-cycles? I would rather recommend using docker swarm or just podman itself.
you are adding more complexity without to a very simple problem.
Re: Show HN: Simplenetes – I replaced Kubernetes with 17k lines of shell script
#65Software developers should be required to have a license to use the word "simple".
Re: Show HN: Simplenetes – I replaced Kubernetes with 17k lines of shell script
#66No Persistent Volume support, so not great for stateful applications. Claims that type of thing is "magic", and therefore out of scope. Quite an engineering feat, though, I am sure! Is this to have fun, to learn, to actually use in production?
Re: Show HN: Simplenetes – I replaced Kubernetes with 17k lines of shell script
#67Earlier quoted context omitted.
Asking to learn, but if you were to start a Java application in the following two scenarios: 1) Monolith with some CRUD, API, persistence to a DB + search. 2) Scalable backend with an API, persistence to a DB + some caching what would you use these days?
A new Java application? Java is getting pretty long in the tooth. You might be better off building on top of Go or Rust, especially for those specific scenarios (Go in particular was designed to build network services.)
Re: Show HN: Simplenetes – I replaced Kubernetes with 17k lines of shell script
#68Earlier quoted context omitted.
So, it can reschedule container if there is a continuous error state on a particular host it is deployed?
No, don't build the next Netflix on Simplenetes. However, if you are just dealing with a three node cluster (Yes I know many of you are running tri-cycles with k8s stickers on it) then maybe it can be fine for many applications to not have a scheduler. Simplenetes does however support multiple replicas of pods so if one node fails it can be OK.
Re: Show HN: Simplenetes – I replaced Kubernetes with 17k lines of shell script
#69Earlier quoted context omitted.
No, don't build the next Netflix on Simplenetes. However, if you are just dealing with a three node cluster (Yes I know many of you are running tri-cycles with k8s stickers on it) then maybe it can be fine for many applications to not have a scheduler. Simplenetes does however support multiple replicas of pods so if one node fails it can be OK.
Simplenetes does not support volumes. Simplenetes does not support rescheduling containers. Why do I need 17k lines shellscript to run my tri-cycles? I would rather recommend using docker swarm or just podman itself. you are adding more complexity without to a very simple problem.
Re: Show HN: Simplenetes – I replaced Kubernetes with 17k lines of shell script
#70Also namespaces are a killer feature of K8s imo