The Ops Community ⚙️

Robert Stein
Robert Stein

Posted on • Updated on • Originally published at unikube.io

Testing code locally

Reddit can be a wonderful community, not just for entertainment but also for professional purposes. We regularly skim through r/kubernetes and the level of discussion can be quite enlightening.

A couple of weeks ago we came across the following question:

“How are your developers testing their code locally?”

Quick references:

Moments of clarity
“Just mock all services” / “Contract testing is enough”

Since “local Kubernetes” is kind of “our thing” we of course had to chime in.

In general “testing code locally” in a Kubernetes infrastructure was a true issue we had to deal with on a daily basis. In the end we feel the best solution would be if developers would Kubernetes already during the local development process as that already solves a bunch of the main issues.

Reddit Post Screenshot

Moments of clarity

1. We must leverage Kubernetes in development

With container orchestration platforms like Kubernetes (with its compelling features to actually operate the software) applications have to intertwine with the platform one way or another.

For example, you’d like to have reasonable probes (not just serving a http 200, but mechanisms that really find out the state of the application), use sidecar patterns or speak to Kubernetes and operators via custom resource definitions.

Only that will leverage Kubernetes to the full extent and will make software much more reliable and scalable than ever. In addition, we hope that Kubernetes as a development platform would finally change the mindsets to create less monolithic applications and support the way of service-oriented thinking.

From our perspective, docker-compose or Docker alone did not lead to that in the past.

2. Let ops be ops and devs be devs

We observed that creating well-crafted container images is still something developers struggle with.

If you have a very good container image (i.e. secure, as slim as possible, etc) it’ll take ages to build. That is frustrating and thus doesn't really add to the acceptance of this technology. Keeping in mind that containers as well as container orchestration is driven by the IT operation side of things.

Of course you can find developers (mostly backend) with a strong affinity for infrastructure (I count containers to that part), so-called DevOps working on the interception of code and infrastructure, but this talent is rare.

“Just mock all adjacent services” / “Contract testing is enough”

We don’t think that this can be the answer.

Who is responsible for the mock service implementation?
The neighboring development team writing the actual service?
Or the team depending on that particular service?
We did that in the past and found mocking services to be not enough. Three relevant points:

1. Who is taking care of the mock?

The mock service is doomed to become outdated. Interfaces develop, data structures evolve over time, etc. Those mock services usually do have their own logic to create mock answers to mock complex scenarios. Since a mock service is perceived to not really contribute to the usable system the responsibility question is difficult to figure out within companies.

2. Bugs are rarely just in one service

Our dev teams quite often experienced bugs to be in between two or more services. That often depends on somewhat special data constellations in all participating applications. Something you can’t really test or hunt down running mock services.

3. What would your devs prefer?

After all, it’s not massive fun for developers to only write against mock services, contracts, and so on. Having real world setups with close-to-production data feels more productive as you can test your development effort and get instant feedback. From my point of view this is not negligible.
Still, there are situations where we feel a mock service is not avoidable.

Our dev teams have been using k3d (or other local Kubernetes provider) plus Telepresence 2 for quite some time. However, while Telepresence is a pretty cool tool, we must admit that we had quite a few troubles with it in the past.

Stop mocking - develop frontends with real K8s setups

During this talk, a showcase will be presented on federating multiple backend GraphQL interfaces into one common interface, which is then consumed by the frontend. The services are orchestrated with Kubernetes running locally on the developer's machine. The frontend comes with a webpack development server and is built with Vue.js.

However, with that approach being somehow forced onto the dev teams, we had them slightly overwhelmed with using k3d + kubectl + Helm + sops + still having to deal with Docker + other tooling.

And that is basically also part of the backstory as to why we started Unikube.

The idea is to expose as little of the complexity as possible to the developer while still being in the driver's seat.

The development of new features, bug fixes, and so on happens locally using the local Docker host, but having the application to behave as it would be right within the cluster. We see massive advantages of that approach (especially once all of the features are in place).

Written by Michael Schilonka

Top comments (0)