Azure AKS - AGIC and AGC
Welcome back! This is the third and final post in my series on ingress and load balancing for Azure Kubernetes Service (AKS). In the first article we walked through the different ways you can expose w
Search for a command to run...
Welcome back! This is the third and final post in my series on ingress and load balancing for Azure Kubernetes Service (AKS). In the first article we walked through the different ways you can expose w
Problem: Your company has two AWS accounts: DevAccount and ProdAccount. Developers in DevAccount need to access an S3 bucket in ProdAccount without using long-term credentials. How do you configure access securely? Solution: Create an IAM Role in Pr...
From https://www.syncfusion.com/blogs/post/solve-504-gateway-time-out-error-azure-gateway When a browser attempts to load a website, a request is typically made to a web server. An HTTP 504 error code is sent to the browser when the request takes to...
Architecture
Anmol Singh Yadav 1. Introduction Docker is a revolutionary technology that enables developers to build, deploy & maintain applications in a lightweight, portable, and efficient way (known as containers). One can think of containers similar to a ‘Vir...
Kubernetes Secrets: An Overview The Problem with Sensitive Data in Deployment Manifests When deploying applications like MySQL, we often need to pass sensitive information such as database passwords or root credentials. Including these directly in a ...
https://overcast.blog/optimizing-kubernetes-pod-disruption-budgets-d3eedbee615d 1. What Are Pod Disruption Budgets? A Pod Disruption Budget (PDB) is a Kubernetes policy mechanism that helps maintain the availability of applications during disruptions...
1. Basic Command for Running a JAR File The simplest way to run a JAR file is by using the java -jar command: java -jar myapp.jar This command instructs the Java Virtual Machine (JVM) to execute the JAR file specified (in this case, myapp.jar). 2.Ru...
To mount an Azure Disk or Azure Files volume in a pod, developers must create a PersistentVolume (PV) and a PersistentVolumeClaim (PVC) object. The PV object represents the actual storage resource, while the PVC object requests a specific amount of s...