mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-08 18:27:21 +00:00
13 lines
514 B
Bash
13 lines
514 B
Bash
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
CRD_FILES="./vendor/github.com/open-cluster-management/api/cluster/v1/*.crd.yaml
|
|
./vendor/github.com/open-cluster-management/api/work/v1/*.crd.yaml
|
|
"
|
|
|
|
CLUSTER_MANAGER_CRD_FILE="./vendor/github.com/open-cluster-management/api/operator/v1/0000_01_operator.open-cluster-management.io_clustermanagers.crd.yaml"
|
|
KLUSTERLET_CRD_FILE="./vendor/github.com/open-cluster-management/api/operator/v1/0000_00_operator.open-cluster-management.io_klusterlets.crd.yaml"
|