src: https://www.stationx.net/nmap-cheat-sheet
| Switch | Example | Description |
| #!/bin/bash | |
| set -e | |
| set -o pipefail | |
| # Add user to k8s using service account, no RBAC (must create RBAC after this script) | |
| if [[ -z "$1" ]] || [[ -z "$2" ]]; then | |
| echo "usage: $0 <service_account_name> <namespace>" | |
| exit 1 | |
| fi |
src: https://www.stationx.net/nmap-cheat-sheet
| Switch | Example | Description |