Category: Canarys

  • Namespaces in Kubernetes

    A default namespace is created automatically when the cluster is being setup. To isolate or prevent a user from accidentally deleting the services, Kubernetes creates certain pods for its internal purpose like networking solution, DNS service etc. Kubernetes creates them under another namespace which is created at cluster startup named kube-system. The third namespace that…

  • Kubernetes basic Objects

    In this article, we will learn about the basic objects of Kubernetes in detail with their respective YAML files. POD Replication Controller Replica Set Daemon Set Deployment Service Volume Job POD A pod is a basic unit of K8S. Pod always run on node. In K8S cluster Pod represents running process. Inside the pod, you…

  • Services and Blue-Green Deployment Strategy

    In this article, we’ll briefly focus on services and blue-green deployment strategy. What is a service in Kubernetes? A service is responsible for making our pods discoverable inside the network or exposing them to the internet. A service identifies pods by its LabelSelector. What are the types of services? Cluster IP Node Port Load Balancer…

  • Understanding how to create and Install Windows Services in C#.Net

    Windows Service in C#: This article is about how to create a Windows Service in C# .net using Visual Studio. Windows Services: Windows services are the executable applications which run in the background and doesn’t contain any user interface. Windows services can be scheduled to run automatically whenever operating system boots or can be started/stopped/paused…

  • Don’t Postpone Digital Transformation, but Firm up on the Strategy during COVID-19 pandemic

    Trust you and your teams are safe!   The recent outbreak of COVID-19 has affected lives around the world and has been a crisis for all sectors.  The global pandemic continues to impact organizations – big or small and their customer base. It has thrown a couple of twists – the whole company working from…

  • SQL Server Data Tools (SSDT)

    SQL Server Data Tools (SSDT) is a modern development tool for building SQL Server relational databases, Azure SQL Databases, Analysis Services (AS) data models, Integration Services (IS) packages, and Reporting Services (RS) reports, which comes integrated with Visual Studio. With SSDT, you can design and deploy any SQL Server data models with the same ease as…

  • Integration of Git into Eclipse IDE

    The Eclipse IDE provides support for the Git version control system. You can easily perform the necessary Git commands like staging, commit, merge, pull and push via the Eclipse IDE. Git is pre-installed in Eclipse IDE. If git is not installed by default, go to Help > Eclipse Marketplace and install git explicitly. 1. Git Cloning Process: – This tutorial…

  • Implementing Azure DevSecOps with Microsoft Credential Scanner

    Let’s look at CredScan which is a Microsoft Code Analysis extension and it is abbreviated as MSCA in Azure DevOps. This blog outlines a set of simple steps to implement Credential Scanning using Azure DevOps on an ASP.NET application. Introducing MSCA Microsoft Security Code Analysis extension is a set of tasks that helps implement security analysis…

  • Difference Between K8S vs Azure Kubernetes Service (AKS)

    Kubernetes aka K8s is container orchestration tool, which helps us to control our containers in the clusters. It is open source platform for managing containerized applications. Born in GOOGLE, written in GO/Golang. Donated to CNCF in 2014. Kubernetes v1.0 was released on July 21 2015. Current stable version in 1.14 and latest is 1.17. K8S…

  • Code Analysis & Code Metrics Integration in Azure Pipelines

    This documentation shows the tutorial on how to integrate Visual Studio Code Analysis and Code Metrics in Azure Pipelines using YAML. Follow the steps: Open Visual Studio 2019 and open project or solution and select your project. Now you have to add a NuGet package named “Microsoft.CodeAnalysis.Metrics” to your solution. For this right click on…