-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebuild.sh
executable file
·48 lines (32 loc) · 1.03 KB
/
rebuild.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash
set -ef
helm lint ../helm-charts/zookeeper
helm package ../helm-charts/zookeeper
helm lint ../helm-charts/kafka
helm package ../helm-charts/kafka
helm lint ../helm-charts/kafka-op5
helm package ../helm-charts/kafka-op5
helm lint ../helm-charts/kafka-op5-3
helm package ../helm-charts/kafka-op5-3
#helm lint ../helm-charts/kafka-op5-2-subchart
#helm package ../helm-charts/kafka-op5-2-subchart
helm lint ../helm-charts/schema-registry
helm package ../helm-charts/schema-registry
helm repo index .
git add *.tgz
git commit --all -m 'New chart version'
git push
helm repo update
rm -f ../helm-charts/kafka_cluster/charts/*
helm dep up ../helm-charts/kafka_cluster
helm lint ../helm-charts/kafka_cluster
helm package ../helm-charts/kafka_cluster
rm -f ../helm-charts/kafka_cluster_op6/charts/*
helm dep up ../helm-charts/kafka_cluster_op6
helm lint ../helm-charts/kafka_cluster_op6
helm package ../helm-charts/kafka_cluster_op6
helm repo index .
git add *.tgz
git commit --all -m 'New chart version'
git push
helm repo update