mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-21 16:43:48 +00:00
* update placement and placementdecision api to v1beta1 Signed-off-by: haoqing0110 <qhao@redhat.com> * remove PrioritizerConfig.Name Signed-off-by: haoqing0110 <qhao@redhat.com>
9 lines
182 B
Bash
Executable File
9 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source "$(dirname "${BASH_SOURCE}")/init.sh"
|
|
|
|
for f in $HUB_CRD_FILES
|
|
do
|
|
diff -N $f ./deploy/hub/$(basename $f) || ( echo 'crd content is incorrect' && false )
|
|
done
|