CloudGuru
← All topics

Tag

Devops

6 articles

Monitoring3 min read

Guide on Configuring Prometheus Blackbox Exporter and Grafana

The Prometheus Blackbox Exporter is a flexible and powerful tool used to monitor endpoints over various protocols such as HTTP, HTTPS, TCP, and ICMP (ping). This guide will walk you through everything you need to know about setting up and configuring the Blackbox Exporter with Prometheus, including writing configurations, setting up Docker Compose, and using …

Entra ID3 min read

Managing TLS 1.2 on Microsoft Entra Connect: A Comprehensive PowerShell Script for Enable, Disable, Check, and Uninstall

Here’s a PowerShell script that allows you to enable, check, disable, or uninstall TLS 1.2 on your Microsoft Entra Connect server. It prompts the user for an option and performs the corresponding action: Get-ADSyncToolsTls12RegValue { [CmdletBinding()] Param( [Parameter(Mandatory = $true, Position = 0)] [string]$RegPath, [Parameter(Mandatory = $true, Position = 1)] [string]$RegName ) $regItem = Get-ItemProperty …

DevOps2 min read

SLIs, SLOs, SLAs, DevOps and SRE

DevOps Earlier Dev and Operation teams used to work as silos. There used to be barriers between the Developers and Operations team. Developers used to focus on coding/testing the features where as operations focus on maintenance and stability. DevOps is a set up practices and culture to break this barrier. SRE Site Reliability Engineer. If DevOps …

DevOps1 min read

Agile Testing

What is Agile? Agile project management is an iterative approach to managing software development projects that focuses on continuous releases and customer feedback and requirements keep changing as per the customer needs. What is Agile Testing? Its a software testing practice that follows principles of Agile software development. How Agile testing is different from the conventional waterfall …

DevOps3 min read

Agile Ceremonies Format and Sample Agenda

1. Daily StandupDaily Standups are not status meetings. Team swarms everyday and ensures the delivery. Links Daily-Standup Protocol: 2. Backlog Refinement: 1. Discuss the stories for next sprint including requirements/scope and architecture. a. Identify the dependencies b. Estimate the Story …