Skip to content

Commit

Permalink
[pre-commit.ci lite] apply automatic fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci-lite[bot] authored Mar 6, 2025
1 parent 11eb817 commit 2a028f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions kubernetes/global_vdms_setup_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion remote_function/Dockerfile.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2a028f1

Please sign in to comment.