* first work for allowing ramdisk usage * add bump tooling. Fixes: #157 * bump minor versions due to adding ramdisk emptydir to persistence * allow disabling persistent storage * actually push major as it is breaking in theory * cleanup hpm example code * Allow custom storageClass and fix bug using the wrong storageClass * try fixing gabs * cleanup * update tests * revert some permission job changes * reverse some of the 3.0 common incompatible bitwarden changes
14 lines
352 B
Bash
14 lines
352 B
Bash
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
# This script requires pyBump to be installed using pip.
|
|
|
|
for train in stable incubator develop non-free deprecated; do
|
|
for chart in charts/${train}/*; do
|
|
if [ -d "${chart}" ]; then
|
|
echo "Bumping patch version for ${train}/${chart}"
|
|
pybump bump --file ${chart}/Chart.yaml --level patch
|
|
fi
|
|
done
|
|
done
|