Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 934 Bytes

File metadata and controls

32 lines (25 loc) · 934 Bytes

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}"