[OP here] It feels bizarre saying this, having spent so much of my life advocating for and selling a distribution of Kubernetes and consulting services to help folks get the most of out it, but here goes! YOU probably shouldn't use Kubernetes and a bunch of other "cool" things for your product. Most folks building software at startups and scale-ups should avoid Kubernetes and other premature optimisations. If your co…
Running a self-hosted Kubernetes is indeed ... questionable, but a managed Kubernetes? That's a pretty sane thing to do IMO. The alternatives are running your Docker containers either manually on some EC2 or other bare-metal server which is a nightmare to do deployments, or using something like Elastic Beanstalk which is even worse. For me at least, Kubernetes has become something like an universal standard: if you'r…
Kubernetes is a red flag signalling premature optimisation
11–20 of 558 posts
Re: Kubernetes is a red flag signalling premature optimisation
#12Re: Kubernetes is a red flag signalling premature optimisation
#13Our startup has a webapp that acts as a UI for a machine learning application. We have two different types of heavy workloads (ML and something else). The workers for these run on Kubernetes, which makes them easy to scale (which we do a lot, automatically). The app itself doesn't run on Kubernetes yet (simple VM). It would be better if it did, though! We keep building a lot of functionality ourselves (e.g. deploymen…
What is it giving you over an ec2 auto scaling group or ECS/Fargate? Both can scale as much as you like, your config can live as cdk/cloudformation/terraform code?
Also something like karpenter.sh is much nicer than ec2 autoscaling group.
Re: Kubernetes is a red flag signalling premature optimisation
#14it beats the pants off the the random rubricks of ansible and puppet projects I've run into the past anyway
Re: Kubernetes is a red flag signalling premature optimisation
#15Re: Kubernetes is a red flag signalling premature optimisation
#16Nothing I've ever done has taken off at all so automating DevOps would have been a total waste of time. Then again the projects themselves have been a complete waste of time.
Re: Kubernetes is a red flag signalling premature optimisation
#17Re: Kubernetes is a red flag signalling premature optimisation
#18Earlier quoted context omitted.
Running a self-hosted Kubernetes is indeed ... questionable, but a managed Kubernetes? That's a pretty sane thing to do IMO. The alternatives are running your Docker containers either manually on some EC2 or other bare-metal server which is a nightmare to do deployments, or using something like Elastic Beanstalk which is even worse. For me at least, Kubernetes has become something like an universal standard: if you'r…
A managed cluster is not as much managed as you would think. Still have to configure and install a lot of things yourself.
All of these much more annoying and harder than `helm update --install`ing some charts to your own cluster.
Re: Kubernetes is a red flag signalling premature optimisation
#19Having worked with Kubernetes, it's great - I think even smaller setups can benefit from it and its approach (especially when using a managed provider). But for startups and/or simpler setups, ECS/Lambda is so much less work, while usually being powerful enough.
Re: Kubernetes is a red flag signalling premature optimisation
#20Why should using different languages for front-end and back-end be a problem? I rather think that it is better to use languages that are appropriate for the given problem. It is not premature optimization to have parts of a back-end implemented in C/C++/Go/whatever else if high performance is needed. It would rather be a waste of resources, money and energy not to use an high-performance language for high-performance…
We never had an issue with multiple languages across tier-n architectures.
Suddenly with the uptake of HTML 5, it became an issue not being able to use JavaScript everywhere.