Revision d3285efeb37b483f7ad4abaa5bc46b280d7aa833 authored by harsimran pabla on 19 June 2024, 16:12:16 UTC, committed by Julian Wiedmann on 20 June 2024, 07:21:42 UTC
This change reorders peer creation and deletion order in peer
reconciler. This is done because if ASN is modified, we need to delete
old peer and then add new one.

Signed-off-by: harsimran pabla <hpabla@isovalent.com>
1 parent 4775694
Raw File
check-helmvalues.sh
#!/usr/bin/env bash

set -o errexit
set -o nounset
set -o pipefail

script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
helm_values="${script_dir}/helm-values.rst"

if ! git diff --quiet -- "${helm_values}" ; then
    git --no-pager diff "${helm_values}"
    echo "HINT: to fix this, run 'make -C Documentation update-helm-values'"
    exit 1
fi
back to top