SZSyed Zain Rashidinzainrashid.hashnode.dev·Mar 20, 2024 · 2 min readRust Asynchronous ProgrammingBackground: Recently Rust Language adopted Asynchronous Programming and announced it in stable version. Asynchronous Programming is different from Normal programming. In normal programming only one task is done at a time which is easy for computer bu...00
SZSyed Zain Rashidinzainrashid.hashnode.dev·Mar 20, 2024 · 3 min readWhat is Linux?In this article, Linux Operating System is explained and more importantly the function and purpose of commands used in Linux operating system are also explained. Operating System Operating system is the system software which is the master control pro...00
SZSyed Zain Rashidinzainrashid.hashnode.dev·Feb 7, 2024 · 2 min readGetting Started with Kubernetes — Chapter # 03REPLICASET: In K8s, whenever we are talking about the multiple copies of any resource like pods, we are actually referring to replicaset. ReplicaSet is the resource that helps creating and managing multiple copies of application in K8s. The replicase...00
SZSyed Zain Rashidinzainrashid.hashnode.dev·Feb 7, 2024 · 2 min readHow Kubernetes comes into action?Traditional Architecture: Monolithic means composed all in one piece. Software is designed to be self-contained meaning having all that is needed, in itself. There are many layers in monolithic architecture.- front-end (user-interact)- business layer...00
SZSyed Zain Rashidinzainrashid.hashnode.dev·Feb 7, 2024 · 3 min readGetting Started with Kubernetes — Chapter # 02Nodes: In K8’s, a group of servers is called a cluster. Kubernetes cluster consists of master node and worker nodes.Master node acts as a manager. Where, worker nodes are servers or system on which kubernetes deploys and run our application. Followi...00