STSushil Tiwariinsusiltiwari.com.np·Mar 20 · 4 min readWhy Switching a Kubernetes PVC to RWX (and a Different Azure StorageClass) Is Harder Than It LooksA strange problem showed up while I fixed storage in Kubernetes. The whole thing made little sense at first. I was trying to make an existing PersistentVolumeClaim (PVC) work with ReadWriteMany (RWX) 00
STSushil Tiwariinsusiltiwari.com.np·Mar 30, 2025 · 3 min readAzure Tutorial: Building Virtual Machines and Managing Network Security GroupsThis is the continue of https://hashnode.com/post/cm8v7ntxi000209kw2xpm2tp7 To help you further understand Azure networking, let’s walk through a practical example of creating Virtual Machines (VMs), Network Security Groups (NSGs), and configuring ne...00
STSushil Tiwariinsusiltiwari.com.np·Mar 30, 2025 · 5 min readUnderstanding Key Concepts in Azure NetworkingMicrosoft Azure offers Azure Virtual Network (VNet) as its core networking service, enabling users to create private, secure, and scalable cloud networks. Whether you're setting up cloud-only applications or hybrid architectures, understanding VNets ...00
STSushil Tiwariinsusiltiwari.com.np·Mar 2, 2025 · 4 min readKubernetes Init ContainersWhat is an Init Container? As Kubernetes pods can have more than one container.Init containers are specialized containers that run before app containers in a Kubernetes Pod. Unlike regular containers, init containers must complete successfully before...00
STSushil Tiwariinsusiltiwari.com.np·Jun 19, 2024 · 3 min readPython Unit Testing: MockingMocking means replacing real objects with pretend ones during testing, especially in unit tests. This technique lets to create different scenarios without using real resources, which saves time and effort. The Mock() object from the unittest.mock cla...01I