MNMd Nur Mohammadinmohammadwithdevops.hashnode.dev路Apr 8 路 5 min readK8s_(kubeadm)_Install_by_Shell_script_in AWS EC2 Instance. Run on the Master node #!/bin/bash # Exit on error set -e # Disable swap echo "Disabling swap..." sudo swapoff -a sudo sed -i '/ swap / s/^\(.*\)$/#\1/g' /etc/fstab # Load necessary kernel modules 00
MNMd Nur Mohammadinmohammadwithdevops.hashnode.dev路Jun 18, 2025 路 7 min readOpenTelemetry Collector ConfigurationThe OpenTelemetry Collector (OTel Collector) is a vendor-agnostic service that helps you collect, process, and export telemetry data (metrics, logs, and traces) from your applications. It is a core component of the OpenTelemetry ecosystem and plays a...00
MNMd Nur Mohammadinmohammadwithdevops.hashnode.dev路Jun 4, 2025 路 5 min readObservability by using OpenTelemetry in AWS EKS Cluster.Step 1: AWS EKS setup Create a standard EC2 instance (t2.micro is also acceptable) to establish the entry point for the EKS cluster. Install AWS CLI v2 curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" sudo apt ins...00
MNMd Nur Mohammadinmohammadwithdevops.hashnode.dev路May 16, 2025 路 9 min readObservability DevOps Project- Opentelemetry.Otel Astronomy Shop Demo App What is Open Telemetry (OTel)? OpenTelemetry is an open-source project designed to provide a unified standard for collecting and managing telemetry data from software applications, including traces, metrics, and logs. It ...00
MNMd Nur Mohammadinmohammadwithdevops.hashnode.dev路May 1, 2025 路 6 min readProject 4.4: Web Caching Fallback (E-commerce App)馃О PREREQUISITES: EC2 Instance: t2.medium (Ubuntu 24.04) Security Group: Open port 30000-32767 for NodePort 馃敡 STEP 1: Install Docker, Minikube, kubectl 1. Install Docker sudo apt update -y sudo apt install -y docker.io curl sudo systemctl enable...00