Morten Lied Johansen
Morten Lied Johansen
Correct the execution order of deep dependency trees. Fixes #28.
I ran into a problem where task dependencies are not resolved/executed in the correct order. It's hard to explain, so here is an example instead: ``` # Bakefile-working build: build/stage...
I'm testing bake, and wanted to define two environment variables at the start that would apply to all tasks. Strangely enough, only the first one takes effect, the second one...
I have the following setup: ``` mockHandler. On("Apply", mock.AnythingOfType("*v1.ReplicaSet"), mock.AnythingOfType("*v1.Secret"), mock.Anything). Return(nil). mockHandler. On("Cleanup", mock.AnythingOfType("*v1.Secret"), mock.Anything). Return(nil) ``` After exercising my code, I want to assert that `Cleanup` was called:...
In our project we have implemented dumping of request and response when debug-mode is enabled. Since this might end up in logfiles or other places where sensitive data is unwanted,...
I have a small k3s cluster running on a couple Raspberry Pis, and with the size of the cluster, som automatic clean up of stuff I forget would be very...
We want to make a dashboard with heatmaps, and one recommendation is to limit the number of data points by setting the "Query option" "Max data points" to a reasonable...
# What is currently missing? Observability into the performance and operation of Karapace. # How could this be improved? It would be very useful to add some observability, like number...
A common pattern I've used a lot is to have a two step build pipeline. The first step is to build the docker image and run tests etc. The second...
There is a set of recommended labels that overlap to some degree with the labels we set. Should we transition to using the recommended labels instead of (or in addition...