Skip to content

Instantly share code, notes, and snippets.

View navarrothiago's full-sized avatar
🎯
Focusing

Thiago Navarro navarrothiago

🎯
Focusing
View GitHub Profile
@navarrothiago
navarrothiago / iperf-pods.md
Created September 13, 2022 12:22 — forked from williamcaban/iperf-pods.md
Using client/server iperf pods

Using iperf Pods

  • Create namespace or project for running iperf tests:
oc new-project iperf-test
  • Create server Pod
rm -f pod-iperf-server.yaml 
@navarrothiago
navarrothiago / go-install-locally.sh
Created February 25, 2023 14:40
Installs Go locally in the current directory
#!/usr/bin/env bash
# Installs Go locally, in the current directory
# Usage:
# ./go-install-locally.sh [GO_VERSION]
# Example:
# ./install-go.sh 1.16
# The script will install Go 1.16 locally in the current directory.
# The script will only install Go if it is not already installed.
# The script will do nothing if Go is already installed.
main() {