forked from neuralmagic/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
·191 lines (169 loc) · 7.77 KB
/
get_all_manifests.sh
File metadata and controls
executable file
·191 lines (169 loc) · 7.77 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
#!/usr/bin/env bash
set -e
GITHUB_URL="https://github.com"
DST_MANIFESTS_DIR="./opt/manifests"
# 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/
# ref-name can be a branch name, tag name, or a commit SHA (7-40 hex characters)
# Supports three ref-name formats:
# 1. "branch" - tracks latest commit on branch (e.g., main)
# 2. "tag" - immutable reference (e.g., v1.0.0)
# 3. "branch@commit-sha" - tracks branch but pinned to specific commit (e.g., main@a1b2c3d4)
declare -A COMPONENT_MANIFESTS=(
["dashboard"]="opendatahub-io:odh-dashboard:main@40edc4b121e9d62a0bdb478105a6678f8ce2e3f5:manifests"
["workbenches/kf-notebook-controller"]="opendatahub-io:kubeflow:main@40da0d22ed6356961aef3bd640c1be83e10734ab:components/notebook-controller/config"
["workbenches/odh-notebook-controller"]="opendatahub-io:kubeflow:main@40da0d22ed6356961aef3bd640c1be83e10734ab:components/odh-notebook-controller/config"
["workbenches/notebooks"]="opendatahub-io:notebooks:main@603bf2ff71ed371247c76cba6bd6db4778b1d13a:manifests"
["kserve"]="opendatahub-io:kserve:release-v0.15@e585d3953efb855fb60737e0ec52f5a129f55ce1:config"
["ray"]="opendatahub-io:kuberay:dev@be7bbfc611040115299cd58631140b6d9f0712c1:ray-operator/config"
["trustyai"]="opendatahub-io:trustyai-service-operator:incubation@c0d153c22f3a2916fe52aa5819bb754937bae34a:config"
["modelregistry"]="opendatahub-io:model-registry-operator:main@5ba49bfd29aa65f89a4e1eed9adb11e415b63313:config"
["trainingoperator"]="opendatahub-io:training-operator:dev@fc212b8db7fde82f12e801e6778961097899e88d:manifests"
["datasciencepipelines"]="opendatahub-io:data-science-pipelines-operator:main@324ddef9c98d74865a98ceb1a9470f1fdc7d1240:config"
["modelcontroller"]="opendatahub-io:odh-model-controller:incubating@4859b3de43e0c1ed812dc1451323269f9b44c3e2:config"
["feastoperator"]="opendatahub-io:feast:stable@3c6fd777b7d5c9de4f7949ee7b9ee7f829dc8528:infra/feast-operator/config"
["llamastackoperator"]="opendatahub-io:llama-stack-k8s-operator:odh@226e911cca9bf7efa1e632860613087b0bf14d74: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"
["hardwareprofiles"]="config/hardwareprofiles"
["connectionAPI"]="config/connectionAPI"
)
# Allow overwriting repo using flags component=repo
# Updated pattern to accept commit SHAs (7-40 hex chars) and branch@sha format in addition to branches/tags
pattern="^[a-zA-Z0-9_.-]+:[a-zA-Z0-9_.-]+:([a-zA-Z0-9_./-]+|[a-zA-Z0-9_./-]+@[a-f0-9]{7,40}):[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 try_fetch_ref()
{
local repo=$1
local ref_type=$2 # "tags" or "heads"
local ref=$3
local git_ref="refs/$ref_type/$ref"
local ref_name=$([[ $ref_type == "tags" ]] && echo "tag" || echo "branch")
if git ls-remote --exit-code "$repo" "$git_ref" &>/dev/null; then
if git fetch -q --depth 1 "$repo" "$git_ref" && git reset -q --hard FETCH_HEAD; then
return 0
else
echo "ERROR: Failed to fetch $ref_name $ref from $repo"
return 1
fi
fi
return 1
}
function git_fetch_ref()
{
local repo=$1
local ref=$2
local dir=$3
mkdir -p $dir
pushd $dir &>/dev/null
git init -q
# Check if ref is in tracking format: branch@sha
if [[ $ref =~ ^([a-zA-Z0-9_./-]+)@([a-f0-9]{7,40})$ ]]; then
local commit_sha="${BASH_REMATCH[2]}"
# For tracking format, fetch the specific commit SHA
git remote add origin $repo
if ! git fetch --depth 1 -q origin $commit_sha; then
echo "ERROR: Failed to fetch from repository $repo"
popd &>/dev/null
return 1
fi
if ! git reset -q --hard $commit_sha 2>/dev/null; then
echo "ERROR: Commit SHA $commit_sha not found in repository $repo"
popd &>/dev/null
return 1
fi
else
# Original logic for branches, tags, and plain commit SHAs
# Try to fetch as tag first, then as branch
if try_fetch_ref "$repo" "tags" "$ref" || try_fetch_ref "$repo" "heads" "$ref"; then
# Successfully fetched tag or branch
: # no-op, we're done
else
echo "ERROR: '$ref' is not a valid branch, tag, or commit SHA in repository $repo"
echo "You can check available refs with:"
echo " git ls-remote --heads $repo # for branches"
echo " git ls-remote --tags $repo # for tags"
popd &>/dev/null
return 1
fi
fi
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 ${DST_MANIFESTS_DIR}/${target_path}
cp -rf "../${repo_name}/${source_path}"/* ${DST_MANIFESTS_DIR}/${target_path}
return
fi
if ! git_fetch_ref ${repo_url} ${repo_ref} ${repo_dir}; then
echo "ERROR: Failed to fetch ref '${repo_ref}' from '${repo_url}' for component '${key}'"
return 1
fi
mkdir -p ${DST_MANIFESTS_DIR}/${target_path}
cp -rf ${repo_dir}/${source_path}/* ${DST_MANIFESTS_DIR}/${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 ${DST_MANIFESTS_DIR}/${target_path} ]]; then
echo -e "\033[32mSymlinking local manifest \033[33m${key}\033[32m:\033[0m ${source_path}"
ln -s $(pwd)/${source_path} ${DST_MANIFESTS_DIR}/${target_path}
fi
done