[K8s news wrap up Q1-Q2 2025]

A curated update on what’s new in the world of Kubernetes, container orchestration, and cloud-native platforms.Click ▼ on the headlines below to see more details ! ▼ Ingress-NGINX Vulnerabilities (CVE-2025-1097, 1098, 24514, 1974) Wiz.io disclosed four critical RCE vulnerabilities in the Kubernetes Ingress-NGINX controller, allowing unauthenticated attackers to execute code in the controller pod. Over … Read more

[AI news] Agentic AI with Perplexity Labs

Perplexity Labs is an advanced platform developed by Perplexity.ai, designed to empower users to transform their ideas into interactive applications, dashboards, and reports using AI-driven tools.It serves as a creative and analytical workspace where users can leverage large language models (LLMs) to build and share projects across various domains such as education, finance, research, and … Read more

Monitor and test the capabilities of OpenAI models with Python (Part 1: command line)

For developers in the field of artificial intelligence, verifying the accuracy of AI models is crucial. This blog introduces a Python script designed to automatically check the capabilities of OpenAI models directly from the command line. Objective of the Script The script interfaces with the OpenAI API to fetch all available GPT models, tests each … Read more

Building a Stock Chart Display Application with Flask and Python

This post describes deploying a Flask-based application on a Linux system (Ubuntu, in this case) to display stock charts using Python. The simplicity of Flask makes it an ideal choice for DevOps engineers looking to leverage Python for web projects. Prerequisites Step 1: Setting Up Your Environment First, ensure you have Python and pip installed … Read more

[Python] Terraform install (AI generated)

This the python version of the bash script discussed in a previous post The script is designed to automate the installation and update process of Terraform (binary).What does the script do: Below Bash Code will install or update Terraform (File: install_terraform.sh) This is AI generated code (based on sample input of the previous terraform.sh bash … Read more

[Bash] Terraform install

To make sure the latest version of terraform is used when applying IaC code (mostly on a local Linux terminal) this bash script comes in handy ! The script is designed to automate the installation and update process of Terraform (binary).What does the script do: Below Bash Code will install or update Terraform (File: install_terraform.sh) … Read more

Deploying Azure Storage with Bicep and GitHub Actions (part 1)

In this blog post, it is shown how to deploy an Azure Storage account using Bicep, a declarative language for describing and deploying Azure resources, and GitHub Actions, a CI/CD solution that’s directly integrated into GitHub. The Bicep File Our Bicep file, main.bicep, starts by defining a few parameters: The Bicep file then defines a … Read more

[Cloudflare – Letsencrypt] Renew SSL Certificate with Certbot

This Article assumes renewal of an existing SSL (Letsencrypt) Certificate with DNS managed by Cloudflare. Renewal steps: 0. Preparation 1.Check Validity of the Certificate: In browser / SSL checker / openssl on host Example: vpn.devops100.net 2. Run the certbot command to renew the SSL Certificate for vpn.devops100.net 4. Check the TXT via Google Toolbox 5. … Read more