- Create namespace or project for running iperf tests:
oc new-project iperf-test
- Create server Pod
rm -f pod-iperf-server.yaml
| #!/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() { |