Recently, I've been struggling with a Minikube issue on Windows 11 with Hyper-V enabled and decided to share a quick note about it. Many people opt for VirtualBox, but I believe Hyper-V is a superior option because it's a higher-level hypervisor that offers better performance. It's also readily available on Windows without the need to … Continue reading Minikube & Hyper-V: Fix Start Host Error
Category: DevOps
Kubernetes: liveness & readiness probes with Nginx and PHP-FPM
Last time I wrote about linking PHP-FPM and Nginx on Kubernetes (but also Docker). It is very common configuration because PHP is so popular as backend and Nginx offers great performance with low resources usage. If we use such mix, we should also think more about proper health check in our cluster. Without that, it … Continue reading Kubernetes: liveness & readiness probes with Nginx and PHP-FPM
Kubernetes: Nginx and PHP-FPM
When we want to use PHP-FPM, in most cases, we also need to use some of the web servers. Typical choice is Nginx because it is a very light, reliable, and configurable solution which can handle even very big traffic without any issues. There are two methods of linking Nginx and PHP-FPM on the backend: … Continue reading Kubernetes: Nginx and PHP-FPM
Kuberenetes: Exposing
Kubernetes are amazing, very powerful tool and even small details are important. Of course, in complex solutions we always use YAML files to control our cluster, but for small tests, projects and changes we can also use just some commands. In this short post I would like to describe how to expose our app using … Continue reading Kuberenetes: Exposing
Recovering files on Google Cloud Storage
Google Cloud is a complex and very powerful platform. One of its components is Cloud Storage - based on buckets, a place where we can store files. It supports a lot of options like files versioning, saving metadata, generating signed URLs for downloading/pushing files etc. One of the most problematic options is data recovery: if … Continue reading Recovering files on Google Cloud Storage