mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-13 04:38:13 +00:00
17 lines
324 B
Bash
Executable File
17 lines
324 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source "$(dirname "${BASH_SOURCE}")/init.sh"
|
|
|
|
for f in $HUB_CRD_FILES
|
|
do
|
|
cp $f ./manifests/cluster-manager/
|
|
done
|
|
|
|
for f in $SPOKE_CRD_FILES
|
|
do
|
|
cp $f ./manifests/klusterlet/
|
|
done
|
|
|
|
cp $CLUSTER_MANAGER_CRD_FILE ./deploy/cluster-manager/config/crds/
|
|
cp $KLUSTERLET_CRD_FILE ./deploy/klusterlet/config/crds/
|