Monday, October 24, 2022

Deploy AKS Cluster with GitHub Actions

GitHub actions facilitate automation of software workflows to enable continuous delivery and deployment. It has facility to customize your own workflows or utilize built-in workflows. This blog explains how to deploy Azure Kubernetes Cluster with Microsoft Create AKS Cluster action in GitHub Marketplace.

Pre-requisites:

  • GitHub repository
  • Basic knowledge on YAML build pipelines.

Let's get started.

Sunday, October 23, 2022

Find Network Adapter Status with PowerShell

This blog explains how to verify network adapter is enabled or disabled in Windows machine using a PowerShell script.

Following is the look up values for net connection status for Disconnected and Connected.

Disconnected

 0

Connected

 2


Thursday, October 20, 2022

GitHub Actions Secrets

Continuous integration and continuous deployment are well-known process in today's Software world which supported by several software workflow automation tools. No matter which tool you use, the secrets such as passwords should be hidden and secured. 

GitHub actions is a feature available in GitHub which can be utilized to create CI CD pipelines for the software products. This blog explains how to manage secrets in GitHub Action pipelines.

Pre-requisites: GitHub Repository