An open API service indexing awesome lists of open source software.

https://github.com/chgeuer/azure_openhack_devops_utils_chgeuer

My utilities for the Microsoft DevOps OpenHack
https://github.com/chgeuer/azure_openhack_devops_utils_chgeuer

azure bash-script helm helm-chart kubernetes microsoft openhack

Last synced: over 1 year ago
JSON representation

My utilities for the Microsoft DevOps OpenHack

Awesome Lists containing this project

README

          

# README

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

Screenshot of the blue-green utility

## Installation

```bash
#!/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

```bash
#!/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}"
```