This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: ChengyuZhu6 <[email protected]>
- Loading branch information
1 parent
cdbd204
commit ecd8197
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
#!/bin/bash | ||
# | ||
# Copyright (c) 2023 Intel Corporation | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
|
||
set -o errexit | ||
set -o nounset | ||
set -o pipefail | ||
set -o errtrace | ||
|
||
cidir=$(dirname "$0") | ||
source "${cidir}/lib.sh" | ||
|
||
BUILD_SNAPSHOTTER=${BUILD_SNAPSHOTTER:-false} | ||
|
||
target_dir="/opt/confidential-containers" | ||
|
||
nydus_snapshotter_repo=${nydus_snapshotter_repo:-"github.com/containerd/nydus-snapshotter"} | ||
nydus_snapshotter_repo_git="https://${nydus_snapshotter_repo}.git" | ||
nydus_snapshotter_version=${nydus_snapshotter_version:-"v0.10.0"} | ||
nydus_snapshotter_repo_dir="${GOPATH}/src/${nydus_snapshotter_repo}" | ||
nydus_snapshotter_binary_target_dir="$target_dir/bin" | ||
nydus_snapshotter_config_target_dir="$target_dir/share/nydus-snapshotter" | ||
|
||
nydus_repo=${nydus_repo:-"https://github.com/dragonflyoss/image-service"} | ||
nydus_version=${nydus_version:-"v2.2.3"} | ||
|
||
clone_nydus_snapshotter_repo() { | ||
add_repo_to_git_safe_directory "${nydus_snapshotter_repo_dir}" | ||
|
||
if [ ! -d "${nydus_snapshotter_repo_dir}" ]; then | ||
mkdir -p "${nydus_snapshotter_repo_dir}" | ||
git clone ${nydus_snapshotter_repo_git} "${nydus_snapshotter_repo_dir}" || true | ||
pushd "${nydus_snapshotter_repo_dir}" | ||
git checkout "${nydus_snapshotter_version}" | ||
popd | ||
fi | ||
} | ||
|
||
build_nydus_snapshotter() { | ||
pushd "${nydus_snapshotter_repo_dir}" | ||
sudo -E PATH=$PATH make | ||
sudo install -D -m 755 "bin/containerd-nydus-grpc" "$nydus_snapshotter_binary_target_dir/containerd-nydus-grpc" | ||
sudo install -D -m 755 "bin/nydus-overlayfs" "$nydus_snapshotter_binary_target_dir/nydus-overlayfs" | ||
sudo ln -s "$nydus_snapshotter_binary_target_dir/nydus-overlayfs" "/usr/bin/nydus-overlayfs" | ||
rm -rf "./bin" | ||
popd >/dev/null | ||
} | ||
|
||
download_nydus_snapshotter_config() { | ||
if [ ! -d "$nydus_snapshotter_config_target_dir" ]; then | ||
mkdir -p "$nydus_snapshotter_config_target_dir" | ||
fi | ||
sudo curl -L https://raw.githubusercontent.com/containerd/nydus-snapshotter/main/misc/snapshotter/config-coco-guest-pulling.toml -o "$nydus_snapshotter_config_target_dir/config-coco-guest-pulling.toml" | ||
sudo curl -L https://raw.githubusercontent.com/containerd/nydus-snapshotter/main/misc/snapshotter/config-coco-host-sharing.toml -o "$nydus_snapshotter_config_target_dir/config-coco-host-sharing.toml" | ||
sudo chmod 644 "$nydus_snapshotter_config_target_dir/*" | ||
} |