pankajkkamariya@gmail.com

Deployment rollout strategies in AKS (Azure Kubernetes Service)

A rollout is how Kubernetes updates your application (container image, config, etc.) in a Deployment without downtime. It replaces old pods with new ones gradually, based on the strategy you define. Rolling out a new application version in AKS (Azure Kubernetes Service) must be done carefully in production to minimize downtime, avoid errors, and ensure […]

Deployment rollout strategies in AKS (Azure Kubernetes Service) Read More »

What is Checkmarx scan?

Checkmarx is a Static Application Security Testing (SAST) tool that analyzes source code, configuration files, and dependencies to detect security vulnerabilities. It helps developers identify and fix security flaws early in the development process. What Type of Issues Does Checkmarx Identify? Checkmarx scans source code for security vulnerabilities related to OWASP Top 10, code injections,

What is Checkmarx scan? Read More »

What is Black Duck Scan?

Black Duck (by Synopsys) is a Software Composition Analysis (SCA) tool that scans application dependencies for: Open-source vulnerabilities✔ License compliance risks✔ Code quality issues✔ Security policy violations It integrates into CI/CD pipelines to detect and mitigate risks before deployment. Software Composition Analysis (SCA) is the process of scanning and analyzing open-source and third-party dependencies in

What is Black Duck Scan? Read More »

What is Restart Policy in AKS (Azure Kubernetes Service)?

In AKS, the restart policy defines how Kubernetes restarts containers inside a Pod when they exit (fail or stop). Restart Policy is Defined at the Pod Level It’s set in the Pod spec under .spec.restartPolicy. There are 3 types: Restart Policy Description Always Always restarts the container if it fails (default for regular Pods). OnFailure

What is Restart Policy in AKS (Azure Kubernetes Service)? Read More »