KubeBlogs - DevOps and Cloud content
  • DevOps
  • Kubernetes
  • Cloud
  • Python
  • Tools
  • LLM
  • KubeNine™
Sign in Subscribe
qb9.in
Tools

QB9: Your global bookmark on the internet

Ever been stuck searching for the right document or webpage, wasting time and energy clicking through tabs and folders? Picture this: you’re checking into a hotel, and the receptionist asks for your ID. It’s stored in your Google Drive, but after a frustrating few minutes of digging through
30 Jan 2025 3 min read
KubeBlogs: All you need to know about the Bottlerocket Operating System

All you need to know about the Bottlerocket Operating System

Introduction Bottlerocket OS has been promoted by AWS for a while now. In fact it is the recommended default OS for EKS worker nodes. They also use the same OS for ECS as well. Although by design bottlerocket seems extremely promising but we are yet to see any official benchmark
21 Jan 2025 2 min read
KubeBlogs: Reduce Cost and Improve Security with Amazon VPC Endpoints

Reduce Cost and Improve Security with Amazon VPC Endpoints

What If I Told You That You Could Reduce Your AWS Costs by Up to 90%? No, you’re not wrong—that’s entirely possible. For example, when working with S3 buckets, you can cut costs by as much as 90%. So, you might be wondering: what’s the secret
13 Jan 2025 7 min read
KubeBlogs: Run streamlit reliably in production using supervisor!

How to run Streamlit reliably in production using supervisor!

Streamlit is widely used by Python developers for rapid prototyping as well as running real production applications. Have you ever faced a situation where your Streamlit application suddenly stops working? Whether due to crashes or server issues. Most developers run streamlit using tmux or nohup - which work - but
09 Jan 2025 3 min read
KubeBlogs: Authentication with OAuth2-Proxy and NGINX Ingress on Kubernetes
Kubernetes

Adding Authentication to Any App in Minutes using OAuth2 Proxy!

Introduction Imagine this—you've built an amazing application, but there's one problem: it doesn’t support authentication out of the box. Now you need to secure it without rewriting code or building a custom auth system. That’s where OAuth2-Proxy can help. It’s a straightforward
02 Jan 2025 4 min read
Jenkins or GitHub Actions? Deciding the Right CI/CD Tool for Your Workflow
DevOps

Jenkins or GitHub Actions? Deciding the Right CI/CD Tool for Your Workflow

Introduction Continuous Integration and Delivery is a key part of any software application. Be it a mobile app, a backend app or a website - everything requires CI/CD to make things easier for everyone. From testing and building code to deploying it across environments, CI/CD tools help simplify
31 Dec 2024 10 min read
Breaking free from Servers: Serverless RDBMS without the headaches
Tools

Breaking free from Servers: Serverless RDBMS without the headaches

Introduction Sometimes, you might set up an RDS instance that gets queried only a few times a day. For example, QA instances used by testing teams during office hours often stay idle for the rest of the day, yet you still have to pay for the entire instance. This can
30 Dec 2024 5 min read
KubeBlogs: AWS EKS Auto Mode
Cloud

EKS Auto Mode launched recently - is it worth the hype?

Introduction Running Kubernetes in production can be hard. Even with the managed options Kubernetes isn’t a bed of roses. AWS recently launched EKS Auto Mode which aims to offload some pain. While the features offered by the auto mode can be useful, almost all of them were already used
25 Dec 2024 5 min read
How we use airflow to optimize our DevOps workflow

How we use Airflow to optimize our DevOps workflow.

Introduction Apache Airflow is a powerful tool for automating workflows and managing complex processes effectively. In DevOps, tasks like token validation, Kubernetes configuration management, and updating secrets are often repetitive and time-consuming. With Airflow, we replaced manual work with automated workflows, saving time and reducing errors. We used chatgpt to
20 Dec 2024 6 min read
AWS KMS MasterClass - Secure AWS services using AWS KMS
Cloud

AWS KMS MasterClass - Secure AWS services using AWS KMS

In a world where data breaches and unauthorized access are just a news headline away, encryption isn't optional—it's a must-have. But here's the thing: encryption is only as good as the keys securing it. Imagine locking your most valuable belongings in a high-tech
09 Dec 2024 9 min read
Django Development with Cookiecutter
Python

Accelerate Django Development with Cookiecutter

As a Django developer, you’ve received a PRD to start building a brand-new product from scratch. Your first task? Project initialization and a deployment checklist. Sounds familiar, right? It's the same routine of configurations you’ve handled in your recent projects, just with a few tweaks for
04 Dec 2024 4 min read
Set Up EC2 Memory Monitoring with Amazon CloudWatch Agent and Terraform
Cloud

Set Up EC2 Memory Monitoring with Amazon CloudWatch Agent and Terraform

Introduction Amazon EC2 is a widely used service for running applications in the cloud. Keeping track of its performance is important to make sure your applications run without issues. EC2 provides metrics like CPU usage and network activity by default. However, memory usage is not included, and this can be
27 Nov 2024 5 min read
Secrets Management in Kubernetes with AWS and External Secrets Operator
Kubernetes

Simplifying Secret Management in Kubernetes with AWS and External Secrets Operator

Managing sensitive information, like passwords and API keys, in Kubernetes can be challenging. You want to keep your secrets secure while still making them available to your applications. In this guide, we'll walk you through how to connect AWS Secrets Manager with your Kubernetes cluster using the External
19 Nov 2024 7 min read
Top 10 tools for effortless Kubernetes management
Tools

Beyond the Basics: Tools That Make Kubernetes Management Effortless

Kubernetes is a powerful platform for container orchestration, but managing it effectively requires the right set of tools. These tools help to simplify tasks such as deploying applications, managing permissions, scaling services, and ensuring security. Let’s explore ten essential tools that can greatly simplify Kubernetes management. 1. Stern Stern
13 Nov 2024 5 min read
Loki vs. Elasticsearch: Choosing the Right Logging System for You
DevOps

Loki vs. Elasticsearch: Choosing the Right Logging System for You

Logging systems are vital tools that help us understand what's happening inside our applications. They record events, errors, and other important information, making it easier to troubleshoot problems, monitor performance, and keep things running smoothly. In this post, we'll compare two popular logging systems: Grafana Loki
08 Nov 2024 8 min read
KubeBlogs : Integrate Slack Notifications into ArgoCD
DevOps

Integrating Slack Notifications into ArgoCD for Better Workflow

ArgoCD is a powerful tool for managing Kubernetes applications through GitOps principles, ensuring that your deployments are consistent and reliable. Slack, on the other hand, is a widely-used communication platform that enhances team collaboration. By integrating Slack with ArgoCD, you can receive real-time notifications about your deployment statuses directly in
04 Nov 2024 8 min read
Simplify Database Migrations and Management using Python with SQLAlchemy and Alembic

Simplify Database Migrations and Management using Python with SQLAlchemy and Alembic

Consider a scenario where you’re building a user management system for a web application. Initially, you might only need to store simple details like names and emails. But as your application expands, so does your database’s complexity. You might want to add features such as user preferences, roles,
30 Oct 2024 10 min read
Build secure Internal applications: How to Integrate OAuth2 in Your Streamlit Apps

Build secure Internal applications: How to Integrate OAuth2 in Your Streamlit Apps

Streamlit makes it super easy to build apps superfast. But what if you want to add a simple login system that works with your company’s existing SSO, like Microsoft or Google? You can still build awesome internal tools fast while making sure only the right people have access. With
29 Oct 2024 5 min read
Streamlit: Stream Logs to AWS CloudWatch

Streamlit in Production: How to Stream Logs to AWS CloudWatch

If you’re running a streamlit application in production, you might want to ship logs generated by it to cloudwatch. If you’re using ECS then it might be simple but if your have deployed your app on an EC2 instance or Kubernetes then it might not be that straightforward.
24 Oct 2024 4 min read
Streamlit Authentication

Streamlit Authentication Made Simple: Step-by-Step Guide

Streamlit can help us quickly build a fully functional web application. It’s really effective in prototyping as well as building full fledged internal apps. Recently we had a use case where we had a requirement of adding basic authentication in front of the streamlit app to prevent unauthorized access
22 Oct 2024 4 min read
Docker - KubeBlogs
DevOps

Reduce docker image size from 1GB to 150mb | Method to optimize docker images

Docker makes it easy to package software, but if you're not careful, your images can get bloated. Big images mean slower downloads, delayed deployments, and longer startup times—nobody wants that. The main problem? We often add stuff we don't need: source code, build tools, and
18 Oct 2024 9 min read
The art of zero-downtime in kubernetes : Deployment Strategies
Kubernetes

The art of zero-downtime in kubernetes : Deployment Strategies

Introduction Imagine you're running a popular online service, and suddenly, during an update, your application goes down. Users can't access your service, and with each passing minute, you're losing revenue and customer trust. This scenario is every developer's nightmare. Downtime not only
16 Oct 2024 11 min read
How to Install Loki using helm!
DevOps

How to Install Loki using helm!

In the previous blog, we covered everything about Loki, from its components to its architecture, explaining how it works and how it efficiently compresses logs. If you have not read the blog check it out here: https://www.kubeblogs.com/all-you-need-to-know-about-loki/ Now that you have a solid understanding of Loki’
09 Oct 2024 4 min read
All you need to know About Loki!
Tools

All you need to know About Loki!

At KubeNine, we ensure that our customers log well and log right! Logs are crucial because they keep track of everything your applications do, from errors and warnings to user activities and system events. However, managing all these logs can take up a lot of resources and make it hard
09 Oct 2024 9 min read
Manage your kubernetes secrets securely, directly from the web browser!
Tools

Manage your kubernetes secrets securely, directly from the web browser!

Managing secrets in Kubernetes can be a real headache. If you've ever struggled with keeping environment variables secure and up-to-date across multiple clusters, I totally get it. Many of us have faced the hassle of manual secret management, and it's time we found a better way.
05 Oct 2024 5 min read
← Newer Posts Page 2 of 4 Older Posts →
KubeBlogs - DevOps and Cloud content © 2025
  • DevOps
  • Cloud
  • Python
Powered by Ghost