GGaurav-Jethuriingauravdevopsblog.hashnode.dev·Apr 19, 2025 · 3 min readDecoding AI JargonsAttention Attention Attention What does mean by Generative Pre-trained Transformer (a.k.a GPT) ? But first understand what is “Transformer“, why are we using it at first place ? Listen, AI didn't start on November 30, 2022 (when ChatGPT was released)...00
GGaurav-Jethuriingauravdevopsblog.hashnode.dev·Jul 3, 2023 · 3 min readDemystifying AWS ECS: A Powerful Container Orchestration ServiceIntroduction: In today's world of scalable and flexible cloud computing, containerization has revolutionized how applications are deployed and managed. AWS Elastic Container Service (ECS) is a fully managed container orchestration service that simpli...00
GGaurav-Jethuriingauravdevopsblog.hashnode.dev·Jun 4, 2023 · 3 min readHow to create user in k8s using minikubeGenerate .key openssl genrsa -out user1.key 2048 Generate .csr(certificate sign request) openssl req -new \ -key user1.key \ -out user1.csr \ -subj "/CN=user1/O=eralabs" check the minikube folder to verify there ca.cert and ca.key files...00
GGaurav-Jethuriingauravdevopsblog.hashnode.dev·Jun 2, 2023 · 4 min readIngress in simplest way possibleIngress in the simplest way: In Kubernetes, an Ingress is an API object that manages external access to services within a cluster. It acts as a traffic controller, routing incoming requests to the appropriate services based on rules defined in the I...00
GGaurav-Jethuriingauravdevopsblog.hashnode.dev·May 30, 2023 · 1 min readMinikube Installationmake sure you choose t2.medium for master nodes sudo apt-get update sudo apt-get install docker.io -y sudo usermod -aG docker $USER && newgrp docker curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 sudo install...00