2020-11-20 12:05:46 +00:00
|
|
|
#!/bin/bash -e
|
|
|
|
set -o pipefail
|
|
|
|
|
|
|
|
this=`basename $0`
|
|
|
|
|
|
|
|
usage () {
|
|
|
|
cat << EOF
|
2021-02-26 13:21:31 +00:00
|
|
|
Usage: $this [-h] RELEASE_VERSION GPG_KEY GPG_KEYRING
|
2020-11-20 12:05:46 +00:00
|
|
|
|
|
|
|
Options:
|
|
|
|
-h show this help and exit
|
2021-02-26 13:21:31 +00:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
$this v0.1.2 "Jane Doe <jane.doe@example.com>" ~/.gnupg/secring.gpg
|
|
|
|
|
|
|
|
|
|
|
|
NOTE: The GPG key should be associated with the signer's Github account.
|
|
|
|
|
|
|
|
NOTE: Helm is not compatible with GnuPG v2 and you need to export the secret
|
|
|
|
keys in order for Helm to be able to sign the package:
|
|
|
|
|
|
|
|
gpg --export-secret-keys > ~/.gnupg/secring.gpg
|
|
|
|
|
2020-11-20 12:05:46 +00:00
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Parse command line
|
|
|
|
#
|
|
|
|
while getopts "h" opt; do
|
|
|
|
case $opt in
|
|
|
|
h) usage
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
*) usage
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
shift "$((OPTIND - 1))"
|
|
|
|
|
|
|
|
# Check that no extra args were provided
|
2021-02-26 13:21:31 +00:00
|
|
|
if [ $# -ne 3 ]; then
|
|
|
|
if [ $# -lt 3 ]; then
|
|
|
|
echo -e "ERROR: too few arguments\n"
|
|
|
|
else
|
|
|
|
echo -e "ERROR: unknown arguments: ${@:4}\n"
|
|
|
|
fi
|
2020-11-20 12:05:46 +00:00
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
release=$1
|
2021-02-26 13:21:31 +00:00
|
|
|
key="$2"
|
|
|
|
keyring="$3"
|
|
|
|
shift 3
|
|
|
|
|
2020-11-20 12:05:46 +00:00
|
|
|
container_image=k8s.gcr.io/nfd/node-feature-discovery:$release
|
|
|
|
|
|
|
|
#
|
|
|
|
# Check/parse release number
|
|
|
|
#
|
|
|
|
if [ -z "$release" ]; then
|
|
|
|
echo -e "ERROR: missing RELEASE_VERSION\n"
|
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ $release =~ ^(v[0-9]+\.[0-9]+)(\..+)?$ ]]; then
|
|
|
|
docs_version=${BASH_REMATCH[1]}
|
2021-02-26 13:21:31 +00:00
|
|
|
semver=${release:1}
|
2020-11-20 12:05:46 +00:00
|
|
|
else
|
|
|
|
echo -e "ERROR: invalid RELEASE_VERSION '$release'"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Patch docs configuration
|
|
|
|
echo Patching docs/_config.yml
|
|
|
|
sed -e s"/release:.*/release: $release/" \
|
|
|
|
-e s"/version:.*/version: $docs_version/" \
|
2020-11-20 14:48:57 +00:00
|
|
|
-e s"!container_image:.*!container_image: k8s.gcr.io/nfd/node-feature-discovery:$release!" \
|
2020-11-20 12:05:46 +00:00
|
|
|
-i docs/_config.yml
|
|
|
|
|
|
|
|
# Patch README
|
|
|
|
echo Patching README.md to refer to $release
|
|
|
|
sed s"!node-feature-discovery/v.*/!node-feature-discovery/$release/!" -i README.md
|
|
|
|
|
|
|
|
# Patch deployment templates
|
|
|
|
echo Patching '*.yaml.template' to use $container_image
|
2021-02-03 16:23:09 +00:00
|
|
|
sed -E -e s",^([[:space:]]+)image:.+$,\1image: $container_image," \
|
|
|
|
-e s",^([[:space:]]+)imagePullPolicy:.+$,\1imagePullPolicy: IfNotPresent," \
|
|
|
|
-i *yaml.template
|
2020-11-20 12:05:46 +00:00
|
|
|
|
2020-12-16 17:27:31 +00:00
|
|
|
# Patch Helm chart
|
|
|
|
sed -e s"/appVersion:.*/appVersion: $release/" -i deployment/node-feature-discovery/Chart.yaml
|
|
|
|
sed -e s"/pullPolicy:.*/pullPolicy: IfNotPresent/" \
|
|
|
|
-e s"!gcr.io/k8s-staging-nfd/node-feature-discovery!k8s.gcr.io/nfd/node-feature-discovery!" \
|
|
|
|
-i deployment/node-feature-discovery/values.yaml
|
|
|
|
|
2020-11-20 12:05:46 +00:00
|
|
|
# Patch e2e test
|
|
|
|
echo Patching test/e2e/node_feature_discovery.go flag defaults to k8s.gcr.io/nfd/node-feature-discovery and $release
|
|
|
|
sed -e s'!"nfd\.repo",.*,!"nfd.repo", "k8s.gcr.io/nfd/node-feature-discovery",!' \
|
|
|
|
-e s"!\"nfd\.tag\",.*,!\"nfd.tag\", \"$release\",!" \
|
|
|
|
-i test/e2e/node_feature_discovery.go
|
2021-02-26 13:21:31 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Create release assets to be uploaded
|
|
|
|
#
|
|
|
|
helm package deployment/node-feature-discovery/ --version $semver --sign \
|
|
|
|
--key "$key" --keyring "$keyring"
|
|
|
|
|
|
|
|
chart_name="node-feature-discovery-chart-$semver.tgz"
|
|
|
|
mv node-feature-discovery-$semver.tgz $chart_name
|
|
|
|
mv node-feature-discovery-$semver.tgz.prov $chart_name.prov
|
|
|
|
|
|
|
|
cat << EOF
|
|
|
|
|
|
|
|
*******************************************************************************
|
|
|
|
*** Please manually upload the following generated files to the Github release
|
|
|
|
*** page:
|
|
|
|
***
|
|
|
|
*** $chart_name
|
|
|
|
*** $chart_name.prov
|
|
|
|
***
|
|
|
|
*******************************************************************************
|
|
|
|
EOF
|