FastAPI: Een framework voor High-Performance API’s in Python

Wat is FastAPI? FastAPI is een modern en goed presterend framework voor het bouwen van API’s in Python. Het is flexibel en gemakkelijk in gebruik. Qua performance is het gelijk aan Node.js en Go terwijl het het gebruiksgemak heeft van Python. Het is gebouwd rondom Starlette (routering en async functionaliteit) en Pydantic (data validatie). Dit … Read more

Install Grafana Loki on a local Kubernetes Cluster

This guide describes how to install a Grafana Loki instance with Event Exporter and Promtail on a local Kubernetes Cluster (using KinD). First you will install Docker on Windows, then deploy a Kubernetes Cluster on Docker using Kind. After that you will install Grafana Loki and Event Exporter and Promtail. The last step is executing … Read more

Ansible Vaults

Storing passwords in plain text within Ansible Playbooks poses a significant security risk. To mitigate this, it’s best to store sensitive variable values, such as passwords, in an Ansible Vault. Utilizing Ansible Vault enhances security by encrypting sensitive data, safeguarding it from unauthorized access or exposure. Creating the Vault A Vault can be created using … Read more