Skip to content

Instantly share code, notes, and snippets.

View janlauber's full-sized avatar
🧼
Get me some [...]

Jan Lauber janlauber

🧼
Get me some [...]
View GitHub Profile

Keybase proof

I hereby claim:

  • I am janlauber on github.
  • I am janlauber (https://keybase.io/janlauber) on keybase.
  • I have a public key whose fingerprint is A297 8714 AD33 E71C 286F CCE4 57B6 E9B1 8E8C 838D

To claim this, I am signing this object:

@janlauber
janlauber / prtg_snmp.sh
Created February 10, 2022 10:35
This script is used to set the PRTG config with a defined SNMP community.
#!/bin/bash
# PRTG SNMP script
# Author: Jan Lauber
# Version: 1.0
# Date: 2018-02-12
# License: MIT
#
# Description:
# This script is used to set the PRTG config with a defined SNMP community.
#
@janlauber
janlauber / helm-release.sh
Created November 24, 2022 13:52
Helm Release Script for Gitlab CI
#!/bin/bash
# build the helm charts
helm package ./charts/**
# for each .tgz file in the charts directory, create a release
for f in ./*.tgz
do
# get the chart name
chart_name=$(basename $f)