Promote V2.18.0 to stable #32

Merged
stefan merged 50 commits from master into stable 2021-01-18 13:58:07 +00:00
3 changed files with 1822 additions and 0 deletions
Showing only changes of commit a23282bdf5 - Show all commits

File diff suppressed because it is too large Load Diff

View File

@ -7,6 +7,8 @@ global:
targetRevision: HEAD
pathPrefix: ''
HighAvailableControlplane: false
calico:
enabled: false
crds: true
@ -45,6 +47,9 @@ metrics:
enabled: false
crds: true
namespace: monitoring
istio:
grafana: {}
prometheus: {}
logging:
enabled: false
@ -55,3 +60,5 @@ argo-cd:
enabled: false
crds: true
namespace: argocd
istio:
enabled: false

21
scripts/update_helm.sh Executable file
View File

@ -0,0 +1,21 @@
#!/bin/bash
set -eux
CHARTS=${1:-'.*'}
SRCROOT="$(cd "$(dirname "$0")/.." && pwd)"
for dir in $(find -L $SRCROOT/charts -mindepth 1 -maxdepth 1 -type d);
do
name=$(basename $dir)
[[ $name =~ $CHARTS ]] || continue
if [ $(helm dep list $dir 2>/dev/null| wc -l) -gt 1 ]
then
echo "Processing chart dependencies"
rm -rf $dir/tmpcharts
helm dependency update --skip-refresh $dir
fi
echo "Processing $dir"
helm lint $dir && helm --debug package $dir
done