[GLOBAL] Migrate to helm v3
[oom.git] / kubernetes / helm / plugins / deploy / deploy.sh
1 #!/bin/bash
2
3 usage() {
4 cat << EOF
5 Install (or upgrade) an umbrella Helm Chart, and its subcharts, as separate Helm Releases
6
7 The umbrella Helm Chart is broken apart into a parent release and subchart releases.
8 Subcharts the are disabled (<chart>.enabled=false) will not be installed or upgraded.
9 All releases are grouped and deployed within the same namespace.
10
11
12 The deploy arguments must be a release and chart. The chart
13 argument can be either: a chart reference('stable/onap'), a path to a chart directory,
14 a packaged chart, or a fully qualified URL. For chart references, the latest
15 version will be specified unless the '--version' flag is set.
16
17 To override values in a chart, use either the '--values' flag and pass in a file
18 or use the '--set' flag and pass configuration from the command line, to force string
19 values, use '--set-string'.
20
21 You can specify the '--values'/'-f' flag multiple times. The priority will be given to the
22 last (right-most) file specified. For example, if both myvalues.yaml and override.yaml
23 contained a key called 'Test', the value set in override.yaml would take precedence:
24
25     $ helm deploy demo ./onap --namespace onap -f openstack.yaml -f overrides.yaml
26
27 You can specify the '--set' flag multiple times. The priority will be given to the
28 last (right-most) set specified. For example, if both 'bar' and 'newbar' values are
29 set for a key called 'foo', the 'newbar' value would take precedence:
30
31     $ helm deploy demo local/onap --namespace onap -f overrides.yaml --set log.enabled=false --set vid.enabled=false
32
33 Usage:
34   helm deploy [RELEASE] [CHART] [flags]
35
36 Flags:
37       --namespace string         namespace to install the release into. Defaults to the current kube config namespace.
38       --set stringArray          set values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2)
39       --set-string stringArray   set STRING values on the command line (can specify multiple or separate values with commas: key1=val1,key2=val2)
40   -f, --values valueFiles        specify values in a YAML file or a URL(can specify multiple) (default [])
41       --verbose                  enables full helm install/upgrade output during deploy
42       --set-last-applied         set the last-applied-configuration annotation on all objects.This annotation is required to restore services using Ark/Veloro backup restore.
43 EOF
44 }
45
46 generate_overrides() {
47   SUBCHART_NAMES=($(cat $COMPUTED_OVERRIDES | grep -v '^\s\s'))
48
49   for index in "${!SUBCHART_NAMES[@]}"; do
50     START=${SUBCHART_NAMES[index]}
51     END=${SUBCHART_NAMES[index+1]}
52     if [ "$START" = "global:" ]; then
53       echo "global:" > $GLOBAL_OVERRIDES
54       cat $COMPUTED_OVERRIDES | sed '/common:/,/consul:/d' \
55         | sed -n '/^'"$START"'/,/'log:'/p' | sed '1d;$d' >> $GLOBAL_OVERRIDES
56     else
57       SUBCHART_DIR="$CACHE_SUBCHART_DIR/$(echo "$START" |cut -d':' -f1)"
58       if [ -d "$SUBCHART_DIR" ]; then
59         if [ -z "$END" ]; then
60           cat $COMPUTED_OVERRIDES | sed -n '/^'"$START"'/,/'"$END"'/p' \
61             | sed '1d;$d' | cut -c3- > $SUBCHART_DIR/subchart-overrides.yaml
62         else
63           cat $COMPUTED_OVERRIDES | sed -n '/^'"$START"'/,/^'"$END"'/p' \
64             | sed '1d;$d' | cut -c3- > $SUBCHART_DIR/subchart-overrides.yaml
65         fi
66       fi
67     fi
68   done
69 }
70 resolve_deploy_flags() {
71   flags=($1)
72   n=${#flags[*]}
73   i=0 ; while [ "$i" -lt "$n" ]; do
74     PARAM=${flags[i]}
75     if [ "$PARAM" = "-f" ] || \
76        [ "$PARAM" = "--values" ] || \
77        [ "$PARAM" = "--set" ] || \
78        [ "$PARAM" = "--set-string" ] || \
79        [ "$PARAM" = "--version" ]; then
80        # skip param and its value
81        i=$((i + 1))
82     else
83       DEPLOY_FLAGS="$DEPLOY_FLAGS $PARAM"
84     fi
85     i=$((i+1))
86   done
87   echo "$DEPLOY_FLAGS"
88 }
89
90 deploy() {
91   # validate params
92   if [ -z "$1" ] || [ -z "$2" ]; then
93     usage
94     exit 1
95   fi
96
97   RELEASE=$1
98   CHART_URL=$2
99   FLAGS=$(echo ${@} | sed 's/^ *[^ ]* *[^ ]* *//')
100   CHART_REPO="$(echo "$CHART_URL" | cut -d'/' -f1)"
101   CHART_NAME="$(echo "$CHART_URL" | cut -d'/' -f2)"
102
103   CACHE_DIR=~/.local/share/helm/plugins/deploy/cache
104   echo "Use cache dir: $CACHE_DIR"
105   CHART_DIR=$CACHE_DIR/$CHART_NAME
106   CACHE_SUBCHART_DIR=$CHART_DIR-subcharts
107   LOG_DIR=$CHART_DIR/logs
108
109   # determine if verbose output is enabled
110   VERBOSE="false"
111   if expr "$FLAGS" : ".*--verbose.*" ; then
112     FLAGS="$(echo $FLAGS| sed -n 's/--verbose//p')"
113     VERBOSE="true"
114   fi
115   # determine if delay for deployment is enabled
116   DELAY="false"
117   if expr "$FLAGS" : ".*--delay.*" ; then
118     FLAGS="$(echo $FLAGS| sed -n 's/--delay//p')"
119     DELAY="true"
120   fi
121   # determine if set-last-applied flag is enabled
122   SET_LAST_APPLIED="false"
123   if expr "$FLAGS" : ".*--set-last-applied.*" ; then
124     FLAGS="$(echo $FLAGS| sed -n 's/--set-last-applied//p')"
125     SET_LAST_APPLIED="true"
126   fi
127   if expr "$FLAGS" : ".*--dry-run.*" ; then
128     VERBOSE="true"
129     FLAGS="$FLAGS --debug"
130   fi
131
132   # should pass all flags instead
133   NAMESPACE="$(echo $FLAGS | sed -n 's/.*\(namespace\).\s*/\1/p' | cut -c10- | cut -d' ' -f1)"
134
135   VERSION="$(echo $FLAGS | sed -n 's/.*\(version\).\s*/\1/p' | cut -c8- | cut -d' ' -f1)"
136
137   if [ ! -z $VERSION ]; then
138      VERSION="--version $VERSION"
139   fi
140
141   # Remove all override values passed in as arguments. These will be used during dry run
142   # to resolve computed override values. Remaining flags will be passed on during
143   # actual upgrade/install of parent and subcharts.
144   DEPLOY_FLAGS=$(resolve_deploy_flags "$FLAGS")
145
146   # determine if upgrading individual subchart or entire parent + subcharts
147   SUBCHART_RELEASE="$(echo "$RELEASE" |cut -d'-' -f2)"
148   # update specified subchart without parent
149   RELEASE="$(echo "$RELEASE" |cut -d'-' -f1)"
150   if [ "$SUBCHART_RELEASE" = "$RELEASE" ]; then
151     SUBCHART_RELEASE=
152   fi
153
154   # clear previously cached charts
155   rm -rf $CACHE_DIR
156
157   # fetch umbrella chart (parent chart containing subcharts)
158   if [ -d "$CHART_URL" ]; then
159     mkdir -p $CHART_DIR
160     cp -R $CHART_URL/* $CHART_DIR/
161
162     charts=$CHART_DIR/charts/*
163     for subchart in $charts ; do
164       tar xzf ${subchart} -C $CHART_DIR/charts/
165     done
166     rm -rf $CHART_DIR/charts/*.tgz
167   else
168     echo "fetching $CHART_URL"
169     helm fetch $CHART_URL --untar --untardir $CACHE_DIR $VERSION
170   fi
171
172   # create log driectory
173   mkdir -p $LOG_DIR
174
175   # move out subcharts to process separately
176   mkdir -p $CACHE_SUBCHART_DIR
177   mv $CHART_DIR/charts/* $CACHE_SUBCHART_DIR/
178   # temp hack - parent chart needs common subchart
179   mv $CACHE_SUBCHART_DIR/common $CHART_DIR/charts/
180
181  # disable dependencies
182   rm $CHART_DIR/Chart.lock
183   sed -n '1,/dependencies:/p;/description:/,$p' $CHART_DIR/Chart.yaml | grep -v dependencies > $CHART_DIR/deploy_Chart.yaml
184   mv $CHART_DIR/Chart.yaml $CHART_DIR/Chart.deploy
185   mv $CHART_DIR/deploy_Chart.yaml $CHART_DIR/Chart.yaml
186
187   # compute overrides for parent and all subcharts
188   COMPUTED_OVERRIDES=$CACHE_DIR/$CHART_NAME/computed-overrides.yaml
189   helm upgrade -i $RELEASE $CHART_DIR $FLAGS --dry-run --debug \
190    | sed -n '/COMPUTED VALUES:/,/HOOKS:/p' | sed '1d;$d' > $COMPUTED_OVERRIDES
191
192   # extract global overrides to apply to parent and all subcharts
193   GLOBAL_OVERRIDES=$CHART_DIR/global-overrides.yaml
194   generate_overrides $COMPUTED_OVERRIDES $GLOBAL_OVERRIDES
195
196   # upgrade/install parent chart first
197   if [ -z "$SUBCHART_RELEASE" ]; then
198     LOG_FILE=$LOG_DIR/${RELEASE}.log
199     :> $LOG_FILE
200
201     helm upgrade -i $RELEASE $CHART_DIR $DEPLOY_FLAGS -f $COMPUTED_OVERRIDES \
202      > $LOG_FILE.log 2>&1
203
204     if [ "$VERBOSE" = "true" ]; then
205       cat $LOG_FILE
206     else
207       echo "release \"$RELEASE\" deployed"
208     fi
209     # Add annotation last-applied-configuration if set-last-applied flag is set
210     if [ "$SET_LAST_APPLIED" = "true" ]; then
211       helm get manifest ${RELEASE} \
212       | kubectl apply set-last-applied --create-annotation -n onap -f - \
213       > $LOG_FILE.log 2>&1
214     fi
215   fi
216
217   # upgrade/install each "enabled" subchart
218   cd $CACHE_SUBCHART_DIR/
219   #“helm ls” is an expensive command in that it can take a long time to execute.
220   #So cache the results to prevent repeated execution.
221   ALL_HELM_RELEASES=$(helm ls -q)
222   for subchart in * ; do
223     SUBCHART_OVERRIDES=$CACHE_SUBCHART_DIR/$subchart/subchart-overrides.yaml
224
225     SUBCHART_ENABLED=0
226     if [ -f $SUBCHART_OVERRIDES ]; then
227       SUBCHART_ENABLED=$(cat $SUBCHART_OVERRIDES | grep -c "^enabled: true")
228     fi
229
230     if [ $SUBCHART_ENABLED -eq 1 ]; then
231       if [ -z "$SUBCHART_RELEASE" ] || [ "$SUBCHART_RELEASE" = "$subchart" ]; then
232         LOG_FILE=$LOG_DIR/"${RELEASE}-${subchart}".log
233         :> $LOG_FILE
234
235         helm upgrade -i "${RELEASE}-${subchart}" $CACHE_SUBCHART_DIR/$subchart \
236          $DEPLOY_FLAGS -f $GLOBAL_OVERRIDES -f $SUBCHART_OVERRIDES \
237          > $LOG_FILE 2>&1
238
239         if [ "$VERBOSE" = "true" ]; then
240           cat $LOG_FILE
241         else
242           echo "release \"${RELEASE}-${subchart}\" deployed"
243         fi
244         # Add annotation last-applied-configuration if set-last-applied flag is set
245         if [ "$SET_LAST_APPLIED" = "true" ]; then
246           helm get manifest "${RELEASE}-${subchart}" \
247           | kubectl apply set-last-applied --create-annotation -n onap -f - \
248           > $LOG_FILE.log 2>&1
249         fi
250       fi
251       if [ "$DELAY" = "true" ]; then
252         echo sleep 3m
253         sleep 180
254       fi
255     else
256       array=($(echo "$ALL_HELM_RELEASES" | grep "${RELEASE}-${subchart}"))
257       n=${#array[*]}
258       for i in $(seq $(($n-1)) -1 0); do
259         helm del "${array[i]}"
260       done
261     fi
262   done
263
264   # report on success/failures of installs/upgrades
265   helm ls --all-namespaces | grep -i FAILED | grep $RELEASE
266 }
267 HELM_VER=$(helm version --template "{{.Version}}")
268 echo $HELM_VER
269
270 case "${1:-"help"}" in
271   "help")
272     usage
273     ;;
274   "--help")
275     usage
276     ;;
277   "-h")
278     usage
279     ;;
280   *)
281     deploy $1 $2 $(echo ${@} | sed 's/^ *[^ ]* *[^ ]* *//')
282     ;;
283 esac
284
285 exit 0