blob: 096ca9a005237d9ea1165c7ff8b4c86c8faf2ebf [file] [log] [blame]
Andy Bavier1874f522019-06-24 14:46:18 -07001#!/usr/bin/env bash
2
Joey Armstrong0476e912024-02-09 16:00:26 -05003# Copyright 2018-2024 Open Networking Foundation (ONF) and the ONF Contributors
Andy Bavier1874f522019-06-24 14:46:18 -07004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17# compare_service_chart_version.sh
18# Prints out the service version in the chart and the source repo
19# Useful for seeing how far behind the chart versions are
20
21REPODIR=${REPODIR:-~/cord}
22DEBUG=${DEBUG:-false}
23
Matteo Scandolo50734112021-01-11 10:18:18 -080024for CHART in "$REPODIR"/helm-charts/xos-services/*
Andy Bavier1874f522019-06-24 14:46:18 -070025do
26 APPVERSION=$( awk '/^appVersion:/ { print $2 }' "$CHART/Chart.yaml" )
27 SVCNAME=$( basename "$CHART")
28
29 case $SVCNAME in
30 volt)
Joey Armstrong0476e912024-02-09 16:00:26 -050031 SVCNAME=olt-service
32 ;;
Andy Bavier1874f522019-06-24 14:46:18 -070033 kubernetes)
Joey Armstrong0476e912024-02-09 16:00:26 -050034 SVCNAME=kubernetes-service
35 ;;
Andy Bavier1874f522019-06-24 14:46:18 -070036 esac
37
38 if [ ! -e "$REPODIR/orchestration/xos-services/$SVCNAME/VERSION" ]
39 then
40 $DEBUG && echo "WARN: $SVCNAME has no VERSION file"
41 continue
42 fi
43
44 SVCVERSION=$( cat "$REPODIR/orchestration/xos-services/$SVCNAME/VERSION" )
45 echo $SVCNAME
46 echo " Chart: $APPVERSION"
47 echo " Service: $SVCVERSION"
48done