-
Notifications
You must be signed in to change notification settings - Fork 369
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
If there is a change in the crd yaml files and if CustomResourceDefinitionSchemaVersion value is not updated accordingly in pkg/k8s/apis/cilium.io/v1alpha1/register.go or vice-versa . The CI will fail Signed-off-by: sadath-12 <[email protected]>
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Check CRD version update | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'pkg/k8s/apis/cilium.io/client/crds/v1alpha1/*.yaml' | ||
- 'pkg/k8s/apis/cilium.io/v1alpha1/version.go' | ||
|
||
jobs: | ||
check-version: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Check for CRD changes and version update | ||
run: | | ||
crd_changed=0 | ||
version_changed=0 | ||
# Check for CRD changes | ||
crd_changes=$(git diff --name-only ${{ github.base_ref }} ${{ github.head_ref }} -- pkg/k8s/apis/cilium.io/client/crds/v1alpha1/*.yaml) | ||
if [ -n "$crd_changes" ]; then | ||
crd_changed=1 | ||
fi | ||
# Check for version variable changes | ||
old_version=$(git show ${{ github.event.pull_request.base.sha }}:pkg/k8s/apis/cilium.io/v1alpha1/version.go | sed -n 's/^const CustomResourceDefinitionSchemaVersion = "\(.*\)".*/\1/p') | ||
new_version=$(sed -n 's/^const CustomResourceDefinitionSchemaVersion = "\(.*\)".*/\1/p' pkg/k8s/apis/cilium.io/v1alpha1/version.go) | ||
echo "old_version=$old_version" | ||
echo "new_version=$new_version" | ||
if [ "$old_version" != "$new_version" ]; then | ||
version_changed=1 | ||
fi | ||
if [ "$crd_changed" -eq 1 ] && [ "$version_changed" -eq 0 ]; then | ||
echo "Changes to the files pkg/k8s/apis/cilium.io/client/crds/v1alpha1/*.yaml requires CustomResourceDefinitionSchemaVersion to be updated in pkg/k8s/apis/cilium.io/v1alpha1/version.go" | ||
exit 1 | ||
fi | ||
if [ "$crd_changed" -eq 0 ] && [ "$version_changed" -eq 1 ]; then | ||
echo "CustomResourceDefinitionSchemaVersion in pkg/k8s/apis/cilium.io/v1alpha1/version.go to be updated only in case of modifying the files pkg/k8s/apis/cilium.io/client/crds/v1alpha1/*.yaml" | ||
exit 1 | ||
fi |