Skip to content

chgeuer/azure_openhack_devops_utils_chgeuer

Repository files navigation

README

This repo contains my helper utilities for the Microsoft OpenHack in DevOps.

Screenshot of the blue-green utility

Installation

#!/bin/bash
repo="chgeuer/azure_openhack_devops_utils_chgeuer"
script="blue-green-watch.sh"
url="https://raw.githubusercontent.com/${repo}/master/${script}"
curl --silent "${url}" -o "./${script}" && \
    chmod +x "./${script}" && \
    watch -n 1 "./${script}"

Fixing a run of helm update without the --reuse-values parameter

#!/bin/bash
repo="chgeuer/azure_openhack_devops_utils_chgeuer"
script="fix-reuse-values.sh"
url="https://raw.githubusercontent.com/${repo}/master/${script}"
curl --silent "${url}" -o "./${script}" && \
    chmod +x "./${script}" && \
    "./${script}"

Releases

No releases published

Packages

No packages published

Languages