From 2a028f196a4a3b038f502528c6a8e7ba40f51449 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci-lite[bot]" <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com> Date: Thu, 6 Mar 2025 11:00:40 +0000 Subject: [PATCH] [pre-commit.ci lite] apply automatic fixes --- kubernetes/global_vdms_setup_script.sh | 6 +++--- remote_function/Dockerfile.txt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/kubernetes/global_vdms_setup_script.sh b/kubernetes/global_vdms_setup_script.sh index 4616d8e..ca59a73 100644 --- a/kubernetes/global_vdms_setup_script.sh +++ b/kubernetes/global_vdms_setup_script.sh @@ -28,7 +28,7 @@ remoteSetupFunction() remoteInstallFunction() { echo "Dependency Installations will now be done on the remote machine" - ##install containerd + ##install containerd wget https://github.com/containerd/containerd/releases/download/v1.6.2/containerd-1.6.2-linux-amd64.tar.gz sudo tar Cxzvf /usr/local containerd-1.6.2-linux-amd64.tar.gz wget https://github.com/opencontainers/runc/releases/download/v1.1.3/runc.amd64 @@ -85,7 +85,7 @@ remoteInstallFunction() masterInstallFunction() { echo "Dependency Installation will now be done on the VDMS Master node" - ##install containerd + ##install containerd wget https://github.com/containerd/containerd/releases/download/v1.6.2/containerd-1.6.2-linux-amd64.tar.gz sudo tar Cxzvf /usr/local containerd-1.6.2-linux-amd64.tar.gz wget https://github.com/opencontainers/runc/releases/download/v1.1.3/runc.amd64 @@ -135,7 +135,7 @@ masterInstallFunction() curl -sSL "https://raw.githubusercontent.com/kubernetes/release/${RELEASE_VERSION}/cmd/krel/templates/latest/kubeadm/10-kubeadm.conf" | sed "s:/usr/bin:${DOWNLOAD_DIR}:g" | sudo tee /usr/lib/systemd/system/kubelet.service.d/10-kubeadm.conf sudo systemctl enable --now kubelet - #Install Cillium + #Install Cillium cd $CDIR CILIUM_CLI_VERSION=$(curl -s https://raw.githubusercontent.com/cilium/cilium-cli/main/stable.txt) CLI_ARCH=amd64 diff --git a/remote_function/Dockerfile.txt b/remote_function/Dockerfile.txt index 93c35c5..82dec09 100644 --- a/remote_function/Dockerfile.txt +++ b/remote_function/Dockerfile.txt @@ -2,7 +2,7 @@ FROM python:3.10 RUN /bin/bash -c "python3 -m venv venv" RUN /bin/bash -c "source venv/bin/activate" WORKDIR /remoteUDF -COPY . . +COPY . . RUN /bin/bash -c "python3 -m pip install pip --upgrade" RUN pip install -r requirements.txt RUN pip install pillow