# kubectl-distribute A helper program/kubectl plugin designed to handle the distribution of a file to multiple pods based upon a label selector. `kubectl-distribute` queries for all pods matching a specific label (as specified by `-l` flag) with an array of values (as specified by `-v` flag(s)), then copies the file (as specified by `-f` flag) to the destination path (as specified by `-p` flag) within the matching pod containers. ``` Usage: kubectl-distribute [OPTIONS] --file --path Options: -v, --value The pod label value(s) used to select pods for distribution -f, --file The file to distribute to the selected pods -p, --path The path in each of the pods to distribute the file -l, --label