Understanding Kubernetes ProbesKubernetes provides powerful mechanisms to ensure the reliability and stability of applications running in a cluster. One such feature is…Mar 19Mar 19
Using SecretStore, ExternalSecret, and Secret in Kubernetes with VaultSecrets management is a crucial part of Kubernetes security. External Secrets Operator (ESO) allows Kubernetes to fetch secrets from…Mar 18Mar 18
Managing Active Connections in PostgreSQL to Drop a DatabaseWhen working with PostgreSQL, you may encounter situations where you need to drop a database but can’t because of active connections. In…Mar 17Mar 17
Migrating PostgreSQL Database Between Pods in KubernetesDatabase migrations are a common task in cloud-native environments, especially when working with containerized databases. This guide will…Mar 17Mar 17
Gitlab ci/cd configuration fileIn GitLab CI/CD, there are three main ways to define and use the .gitlab-ci.yml configuration file:Mar 12Mar 12
Docker Compose For KeycloakDocker Compose simplifies the management of multi-container applications by defining and running services in a single configuration file…Mar 12Mar 12
GitLab Services in CI/CD PipelinesGitLab CI/CD allows users to run automated pipelines to build, test, and deploy applications. One of the key features of GitLab CI/CD is…Mar 11Mar 11
Heredocs in Bash ScriptingHeredocs (short for “here documents”) are a powerful feature in Bash that allows multi-line input redirection into a command or script…Mar 11Mar 11
Guard Clause in Bash ScriptingA guard clause in Bash scripting is a way to immediately exit a function or script if certain conditions are not met. It helps improve…Mar 11Mar 11
Understanding the package.json File: A DevOps Architect’s PerspectiveIn the world of JavaScript and Node.js applications, the package.json file is at the heart of every project. Whether you’re a developer…Jan 13Jan 13