This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# | |
# Testing multipart uploads into s3 with threads | |
# Tested with Ruby 1.8 and 1.9 | |
# This is proof of concept code, it works, but is not suitable for production, and may even have nasty bugs in the | |
# threading section | |
# Refs: | |
# http://docs.amazonwebservices.com/AmazonS3/latest/API/index.html?mpUploadInitiate.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
scriptName=$(basename "$0") | |
USAGE="Wraps \"helm package\" in order to be able to --set values at package time. | |
Usage: | |
$scriptName \\ | |
--set key1=value1 --set key2=value2 \\ | |
[--app-version 1.2.3] <chart-path>" |