Add SAL scripts

Change-Id: Ie90226b35cd708649f5c3411c1e6ffa51ae8dd2d
This commit is contained in:
jmarchel 2024-04-18 10:11:16 +02:00 committed by Radosław Piliszek
parent 5d6dc42671
commit 7b78b4669f
12 changed files with 88 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#!/bin/bash
echo "Master install script"
wget https://raw.githubusercontent.com/alijawadfahs/scripts/main/nebulous/install-kube-u22.sh && chmod +x ./install-kube-u22.sh && ./install-kube-u22.sh
echo "Installing Helm..."
sudo -H -u ubuntu bash -c ' curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 && chmod 700 get_helm.sh && ./get_helm.sh'
# Add KubeVela Helm repository and update
sudo -H -u ubuntu bash -c 'curl -fsSl https://kubevela.io/script/install.sh | bash'
echo "Configuration complete."

View File

@ -0,0 +1,2 @@
#!/bin/bash
echo "Master post-install script"

View File

@ -0,0 +1,3 @@
#!/bin/bash
echo "Master pre-install script"
sudo hostnamectl set-hostname "$variables_PA_JOB_NAME"

View File

@ -0,0 +1,52 @@
#!/bin/bash
echo "Master start script"
sudo kubeadm init --pod-network-cidr 10.244.0.0/16
echo "HOME: $(pwd), USERE: $(id -u -n)"
mkdir -p ~/.kube && sudo cp -i /etc/kubernetes/admin.conf ~/.kube/config && sudo chown $(id -u):$(id -g) ~/.kube/config
id -u ubuntu &> /dev/null
if [[ $? -eq 0 ]]
then
#USER ubuntu is found
mkdir -p /home/ubuntu/.kube && sudo cp -i /etc/kubernetes/admin.conf /home/ubuntu/.kube/config && sudo chown ubuntu:ubuntu /home/ubuntu/.kube/config
else
echo "User Ubuntu is not found"
fi
sudo -H -u ubuntu kubectl apply -f https://github.com/flannel-io/flannel/releases/latest/download/kube-flannel.yml;
echo "Setting KubeVela..."
sudo -H -u ubuntu bash -c 'helm repo add kubevela https://kubevela.github.io/charts && helm repo update'
sudo -H -u ubuntu bash -c 'nohup helm install --create-namespace -n vela-system kubevela kubevela/vela-core --version 1.8.2 > /home/ubuntu/vela.txt 2>&1 &'
sudo -H -u ubuntu bash -c 'helm repo add nebulous https://jmarchel7bulls.github.io/helm-charts/'
sudo -H -u ubuntu bash -c 'helm repo add netdata https://netdata.github.io/helmchart/'
sudo -H -u ubuntu bash -c 'helm repo update'
echo "Starting EMS"
sudo -H -E -u ubuntu bash -c 'helm install ems nebulous/ems-server \
--set tolerations[0].key="node-role.kubernetes.io/control-plane" \
--set tolerations[0].operator="Exists" \
--set tolerations[0].effect="NoSchedule" \
--set app_uuid=$APPLICATION_ID \
--set broker_address=$BROKER_IP \
--set image.tag="2024-apr-nebulous" \
--set broker_port=$BROKER_PORT'
sudo -H -u ubuntu bash -c 'helm install netdata netdata/netdata'
echo "Starting Solver"
sudo -H -E -u ubuntu bash -c 'helm install solver nebulous/nebulous-optimiser-solver \
--set tolerations[0].key="node-role.kubernetes.io/control-plane" \
--set tolerations[0].operator="Exists" \
--set tolerations[0].effect="NoSchedule" \
--set amplLicense.keyValue="$LICENSE_AMPL" \
--set application.id=$APPLICATION_ID \
--set activemq.ACTIVEMQ_HOST=$BROKER_IP \
--set activemq.ACTIVEMQ_PORT=$BROKER_PORT'

View File

@ -0,0 +1,2 @@
#!/bin/bash
echo "Master stop script"

View File

@ -0,0 +1,2 @@
#!/bin/bash
echo "Master update script"

View File

@ -0,0 +1,3 @@
#!/bin/bash
echo "Worker install script"
wget https://raw.githubusercontent.com/alijawadfahs/scripts/main/nebulous/install-kube-u22.sh && chmod +x ./install-kube-u22.sh && ./install-kube-u22.sh

View File

@ -0,0 +1,2 @@
#!/bin/bash
echo "worker post-install script"

View File

@ -0,0 +1,3 @@
#!/bin/bash
echo "Worker pre-install script"
sudo hostnamectl set-hostname "$variables_PA_JOB_NAME"

View File

@ -0,0 +1,4 @@
#!/bin/bash
echo "Worker start script"
echo $variables_kubeCommand
sudo $variables_kubeCommand

View File

@ -0,0 +1,2 @@
#!/bin/bash
echo "Worker stop script"

View File

@ -0,0 +1,2 @@
#!/bin/bash
echo "Worker update script"