Andy Bavier | 1874f52 | 2019-06-24 14:46:18 -0700 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | |
Joey Armstrong | 0476e91 | 2024-02-09 16:00:26 -0500 | [diff] [blame] | 3 | # Copyright 2018-2024 Open Networking Foundation (ONF) and the ONF Contributors |
Andy Bavier | 1874f52 | 2019-06-24 14:46:18 -0700 | [diff] [blame] | 4 | # |
| 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 | |
| 21 | REPODIR=${REPODIR:-~/cord} |
| 22 | DEBUG=${DEBUG:-false} |
| 23 | |
Matteo Scandolo | 5073411 | 2021-01-11 10:18:18 -0800 | [diff] [blame] | 24 | for CHART in "$REPODIR"/helm-charts/xos-services/* |
Andy Bavier | 1874f52 | 2019-06-24 14:46:18 -0700 | [diff] [blame] | 25 | do |
| 26 | APPVERSION=$( awk '/^appVersion:/ { print $2 }' "$CHART/Chart.yaml" ) |
| 27 | SVCNAME=$( basename "$CHART") |
| 28 | |
| 29 | case $SVCNAME in |
| 30 | volt) |
Joey Armstrong | 0476e91 | 2024-02-09 16:00:26 -0500 | [diff] [blame] | 31 | SVCNAME=olt-service |
| 32 | ;; |
Andy Bavier | 1874f52 | 2019-06-24 14:46:18 -0700 | [diff] [blame] | 33 | kubernetes) |
Joey Armstrong | 0476e91 | 2024-02-09 16:00:26 -0500 | [diff] [blame] | 34 | SVCNAME=kubernetes-service |
| 35 | ;; |
Andy Bavier | 1874f52 | 2019-06-24 14:46:18 -0700 | [diff] [blame] | 36 | 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" ) |
Eric Ball | 0d7a0e6 | 2024-11-14 13:07:04 -0800 | [diff] [blame] | 45 | echo "$SVCNAME" |
Andy Bavier | 1874f52 | 2019-06-24 14:46:18 -0700 | [diff] [blame] | 46 | echo " Chart: $APPVERSION" |
| 47 | echo " Service: $SVCVERSION" |
| 48 | done |