DevOps

DevOps is a set of practices and cultural philosophies that integrate software development (Dev) and IT operations (Ops) to enhance an organization’s ability to deliver applications and services more efficiently and reliably. By promoting collaboration, communication, and automation, DevOps aims to shorten the development lifecycle, improve deployment frequency, and ensure high quality in software releases. Key components of DevOps include continuous integration and continuous delivery (CI/CD), infrastructure as code (IaC), monitoring, and feedback loops. This approach fosters a collaborative environment where development and operations teams work together seamlessly to innovate rapidly, respond to market changes, and provide robust, scalable, and secure software solutions.

130 articles

Jan 30, 2023 25 min read

Get Started with Terraform on Azure

One of the technologies that has come around through the DevOps movement of increased communication and cooperation between the Development and Operations teams has been Infrastructure as Code (IaC). These are technologies that DevOps Engineers and Site Reliability Engineers (SREs) have been adopting to build the latest technique of infrastructure automation in the cloud. Microsoft Azure natively supports ARM Templates for implementing IaC, but that's an Azure specific technology.

May 20, 2020 3 min read

Windows Gets Package Manager with winget CLI Utility

Microsoft released the new Windows Package Manager (winget) as an open source, community driven package manager for installing, updating, configuring, and removing software application packages…

Dec 13, 2019 3 min read

Azure CLI: List and Set Azure Subscription

To list and set the Azure Subscription to run Azure CLI commands against is an important step in command-line scripting. To do this, there are…

Jul 1, 2020 3 min read

Azure Web App: Application Settings

All web applications have some kind of configurations that are set on the server. The method of storing and accessing these settings varies on different…