More fixes
This commit is contained in:
parent
b0f53257ac
commit
0e7a2e70d6
1794
charts/kubezero-istio/remove-control-plane.yaml
Normal file
1794
charts/kubezero-istio/remove-control-plane.yaml
Normal file
File diff suppressed because it is too large
Load Diff
@ -7,6 +7,8 @@ global:
|
|||||||
targetRevision: HEAD
|
targetRevision: HEAD
|
||||||
pathPrefix: ''
|
pathPrefix: ''
|
||||||
|
|
||||||
|
HighAvailableControlplane: false
|
||||||
|
|
||||||
calico:
|
calico:
|
||||||
enabled: false
|
enabled: false
|
||||||
crds: true
|
crds: true
|
||||||
@ -45,6 +47,9 @@ metrics:
|
|||||||
enabled: false
|
enabled: false
|
||||||
crds: true
|
crds: true
|
||||||
namespace: monitoring
|
namespace: monitoring
|
||||||
|
istio:
|
||||||
|
grafana: {}
|
||||||
|
prometheus: {}
|
||||||
|
|
||||||
logging:
|
logging:
|
||||||
enabled: false
|
enabled: false
|
||||||
@ -55,3 +60,5 @@ argo-cd:
|
|||||||
enabled: false
|
enabled: false
|
||||||
crds: true
|
crds: true
|
||||||
namespace: argocd
|
namespace: argocd
|
||||||
|
istio:
|
||||||
|
enabled: false
|
||||||
|
21
scripts/update_helm.sh
Executable file
21
scripts/update_helm.sh
Executable 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
|
Loading…
Reference in New Issue
Block a user