forked from opendatahub-io/opendatahub-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget_all_manifests.sh
More file actions
executable file
·138 lines (121 loc) · 5.23 KB
/
Copy pathget_all_manifests.sh
File metadata and controls
executable file
·138 lines (121 loc) · 5.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#!/usr/bin/env bash
set -e
GITHUB_URL="https://github.com"
# COMPONENT_MANIFESTS is a list of components repositories info to fetch the manifests
# in the format of "repo-org:repo-name:ref-name:source-folder" and key is the target folder under manifests/
declare -A COMPONENT_MANIFESTS=(
["dashboard"]="opendatahub-io:odh-dashboard:main:manifests"
["workbenches/kf-notebook-controller"]="opendatahub-io:kubeflow:main:components/notebook-controller/config"
["workbenches/odh-notebook-controller"]="opendatahub-io:kubeflow:main:components/odh-notebook-controller/config"
["workbenches/notebooks"]="opendatahub-io:notebooks:main:manifests"
["modelmeshserving"]="opendatahub-io:modelmesh-serving:release-0.12.0-rc0:config"
["kserve"]="opendatahub-io:kserve:release-v0.15:config"
["kueue"]="opendatahub-io:kueue:dev:config"
["codeflare"]="opendatahub-io:codeflare-operator:main:config"
["ray"]="opendatahub-io:kuberay:dev:ray-operator/config"
["trustyai"]="opendatahub-io:trustyai-service-operator:incubation:config"
["modelregistry"]="opendatahub-io:model-registry-operator:main:config"
["trainingoperator"]="opendatahub-io:training-operator:dev:manifests"
["datasciencepipelines"]="opendatahub-io:data-science-pipelines-operator:main:config"
["modelcontroller"]="opendatahub-io:odh-model-controller:incubating:config"
["feastoperator"]="opendatahub-io:feast:stable:infra/feast-operator/config"
["llamastackoperator"]="opendatahub-io:llama-stack-k8s-operator:odh:config"
)
# PLATFORM_MANIFESTS is a list of manifests that are contained in the operator repository. Please also add them to the
# Dockerfile COPY instructions. Declaring them here causes this script to create a symlink in the manifests folder, so
# they can be easily modified during development, but during a container build, they must be copied into the proper
# location instead, as this script DOES NOT manage platform manifest files for a container build.
declare -A PLATFORM_MANIFESTS=(
["osd-configs"]="config/osd-configs"
["monitoring"]="config/monitoring"
["kueue-configs"]="config/kueue-configs"
["hardwareprofiles"]="config/hardwareprofiles"
)
# Allow overwriting repo using flags component=repo
pattern="^[a-zA-Z0-9_.-]+:[a-zA-Z0-9_.-]+:[a-zA-Z0-9_./-]+:[a-zA-Z0-9_./-]+$"
if [ "$#" -ge 1 ]; then
for arg in "$@"; do
if [[ $arg == --* ]]; then
arg="${arg:2}" # Remove the '--' prefix
IFS="=" read -r key value <<< "$arg"
if [[ -n "${COMPONENT_MANIFESTS[$key]}" ]]; then
if [[ ! $value =~ $pattern ]]; then
echo "ERROR: The value '$value' does not match the expected format 'repo-org:repo-name:ref-name:source-folder'."
continue
fi
COMPONENT_MANIFESTS["$key"]=$value
else
echo "ERROR: '$key' does not exist in COMPONENT_MANIFESTS, it will be skipped."
echo "Available components are: [${!COMPONENT_MANIFESTS[@]}]"
exit 1
fi
else
echo "Warning: Argument '$arg' does not follow the '--key=value' format."
fi
done
fi
TMP_DIR=$(mktemp -d -t "odh-manifests.XXXXXXXXXX")
trap '{ rm -rf -- "$TMP_DIR"; }' EXIT
function git_fetch_ref()
{
local repo=$1
local ref=$2
local dir=$3
local git_fetch="git fetch -q --depth 1 $repo"
mkdir -p $dir
pushd $dir &>/dev/null
git init -q
# try tag first, avoid printing fatal: couldn't find remote ref
if ! $git_fetch refs/tags/$ref 2>/dev/null ; then
$git_fetch refs/heads/$ref
fi
git reset -q --hard FETCH_HEAD
popd &>/dev/null
}
download_manifest() {
local key=$1
local repo_info=$2
echo -e "\033[32mCloning repo \033[33m${key}\033[32m:\033[0m ${repo_info}"
IFS=':' read -r -a repo_info <<< "${repo_info}"
repo_org="${repo_info[0]}"
repo_name="${repo_info[1]}"
repo_ref="${repo_info[2]}"
source_path="${repo_info[3]}"
target_path="${key}"
repo_url="${GITHUB_URL}/${repo_org}/${repo_name}"
repo_dir=${TMP_DIR}/${key}
if [[ -v USE_LOCAL ]] && [[ -e ../${repo_name} ]]; then
echo "copying from adjacent checkout ..."
mkdir -p ./opt/manifests/${target_path}
cp -rf "../${repo_name}/${source_path}"/* ./opt/manifests/${target_path}
return
fi
git_fetch_ref ${repo_url} ${repo_ref} ${repo_dir}
mkdir -p ./opt/manifests/${target_path}
cp -rf ${repo_dir}/${source_path}/* ./opt/manifests/${target_path}
}
# Track background job PIDs +declare -a pids=()
# Use parallel processing
for key in "${!COMPONENT_MANIFESTS[@]}"; do
download_manifest "$key" "${COMPONENT_MANIFESTS[$key]}" &
pids+=($!)
done
# Wait and check exit codes
failed=0
for pid in "${pids[@]}"; do
if ! wait "$pid"; then
failed=1
fi
done
if [ $failed -eq 1 ]; then
echo "One or more downloads failed"
exit 1
fi
for key in "${!PLATFORM_MANIFESTS[@]}"; do
source_path="${PLATFORM_MANIFESTS[$key]}"
target_path="${key}"
if [[ -d ${source_path} && ! -L ./opt/manifests/${target_path} ]]; then
echo -e "\033[32mSymlinking local manifest \033[33m${key}\033[32m:\033[0m ${source_path}"
ln -s $(pwd)/${source_path} ./opt/manifests/${target_path}
fi
done