10 Kubernetes Best Practices to Follow for your DevOps Architecture Add Comment Edit 10 best practices to follow when working with Kubernetes: Use Namespace : Utilize Kubernetes namespaces to logically partition your cl... Read More
Kubernetes Time Check Pod Kodekloud 1 Comment Edit Question: The Nautilus DevOps team want to create a time check pod in a particular Kubernetes namespace and record the logs. This might be... Read More
Build and Run PHP+MySQL Application in Docker 1 Comment Edit Method 1 (For Better Understanding): Create a Common Network for PHP & MySQL container docker network create chatbot PHP... Read More
DevOps Architecture: Enable Rate Limiting to restrict unwanted and frequent Incoming requests from Frontend Add Comment Edit An API gateway is a server that acts as an intermediary between a client application and a collection of backend services. Its primary fun... Read More
Avoid 5 things if you are using Kubernetes in Production Add Comment Edit Failing to ensure production grade infrastructure & fault tolerance: If you are creating kubernetes cluster for production then ma... Read More
How to Install or Setup Elasticsearch, Filebeat, Logstash, and Kibana (ELK Stack) in Kubernetes Cluster Add Comment Edit Installation Clone the repository git clone https://github.com/shawon100/elasticsearch-logstash-kibana-kubernetes Then add the... Read More
How to Setup Grafana and Prometheus monitoring tool in Kubernetes Add Comment Edit 1. At first clone this repo: https://github.com/shawon100/kubernetes-grafana-prometheus git clone https://github.com/shawon100/kubernetes... Read More
Simple Example of Java program about Lock Contention and Solution to Fix Add Comment Edit Lock Contention Program class Table { void printTable(int n) { for (int i=0; i<10; i++) { Syst... Read More
How to Install and Use K8sGPT tool to analyze Kubernetes POD and Service Error 1 Comment Edit K8sGPT is a tool for scanning your kubernetes clusters, diagnosing and triaging issues in simple english. It has SRE experience codified ... Read More
Build a Code Converter Application using OpenAI GPT-3 API 1 Comment Edit Step 1: Set up your development environment Before we begin, make sure that you have Python 3 and Flask installed on your system. You can ... Read More