k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
361 B
12 lines
361 B
#!/bin/bash
|
|
set -e
|
|
|
|
version_from_galaxy=$(grep "^version:" galaxy.yml | awk '{print $2}')
|
|
|
|
# TODO: compute the next expected version somehow
|
|
if [[ $KUBESPRAY_VERSION == "v${version_from_galaxy}" ]]
|
|
then
|
|
echo "Please update galaxy.yml version to match the next KUBESPRAY_VERSION."
|
|
echo "Be sure to remove the \"v\" to adhere to semantic versioning"
|
|
exit 1
|
|
fi
|