Hacker News new | ask | show | jobs
by ownagefool 2427 days ago
None of these things are really needs but lets take a look at the bigger picture of what you do want.

You want well tested software?

kubectl create namespace pr-12-fix-banner-clipping

helm upgrade --install --wait --set url=pr-12-fix-banner-clipping.example.com pr-12-fix-banner-clipping . --namespace pr-12-fix-banner-clipping

./end2end --url https://pr-12-fix-banner-clipping.example.com

helm delete --purge pr-12-fix-banner-clipping

kubectl delete namespace pr-12-fix-banner-clipping

This assumes infrastructure as code, production like environments, ephemeral compute, etc. It's one of the easiest ways to achieve this and it's available anywhere.

You also don't want something like software defined networking. You want the ability for services to talk to each other, and firewalling at the service level, and when you throw multiple services on shared infrastructure together, the SDN helps you do this.

When you add it altogether, pretty much everyone wants all this stuff if they're going to deliver services at a professional level, but its obviously not the only way to do it, and most people don't want to be working at the kubernetes abstraction level.