More fixes

This commit is contained in:
Stefan Reimer 2020-11-30 04:13:52 -08:00
parent 85e89f768c
commit a23282bdf5
3 changed files with 1822 additions and 0 deletions

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