adfinis / back8sup

A simple way to backup your kubernetes resources
GNU Affero General Public License v3.0
2 stars 2 forks source link

first, initial release #1

Closed eyenx closed 4 years ago

karras commented 4 years ago

I'd suggest to also add a small note why it makes sense to use this script instead of Velero. For example for very basic K8s resource dumps when S3 is not available.

ayekat commented 4 years ago

command already checks whether the file is executable, so all the command checks can be simplified to:

if ! command -v … >/dev/null; then

--edit: Thanks for fixing!