Limit number of allowed failing Robot framework tests in your project
We can all agree that sometimes you just remember a valid test, but your implementation is not on level to pass it. Now you face a dilema: do I commit a test and fail the build, or I waste some more time to implement a solution as well? The usual answer is: implement a solution, mainly because most of the test frameworks fail the build, if there is a failing test. (more...)
Get number of failing JUnit tests in your project under control
We can all agree that sometimes you just remember a valid test, but your implementation is not on level to pass it. Now you face a dilema: do I commit a test and fail the build, or I waste some more time to implement a solution? The usual answer is: implement a solution, mainly because most of the test frameworks fail the build, if there is a failing test. (more...)
Helm: generate comma separated list
When you want to deploy your Django application with Helm to Kubernetes cluster, you will need to produce ALLOWED_HOSTS list inside the settings.py. I use Python decouple module and then inject the values through the environment variables. (more...)
Traefik v2 and LetsEncrypt cert-manager on RaspberryPi4 kubernetes cluster
Most of the times you just want to simply transfer your simple webpage to your raspberry pi cluster at home. The webpage is of course running on https and you are obtaining free certificates from LetsEncrypt using certbot in reality. (more...)