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
- Host: GitHub
- URL: https://github.com/chgeuer/azure_openhack_devops_utils_chgeuer
- Owner: chgeuer
- Created: 2019-12-05T10:18:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-19T09:05:55.000Z (over 6 years ago)
- Last Synced: 2025-01-17T06:26:33.641Z (over 1 year ago)
- Topics: azure, bash-script, helm, helm-chart, kubernetes, microsoft, openhack
- Language: Shell
- Homepage: https://openhack.microsoft.com/
- Size: 711 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
This repo contains my helper utilities for the Microsoft OpenHack in DevOps.

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