Skip to content
Snippets Groups Projects
Commit f13a3bed authored by Panagiotis Karamolegkos's avatar Panagiotis Karamolegkos :v_tone2:
Browse files

Merge branch '25112024_SLEEP_TO_WAIT' into 'main'

Update apply_yamls.sh

See merge request !8
parents 54e5a3f5 d4e9cebd
No related branches found
No related tags found
1 merge request!8Update apply_yamls.sh
Pipeline #60089 passed
......@@ -39,21 +39,25 @@ kubectl apply -f ./volume/shared-pv-ro.yaml
kubectl apply -f ./data_preprocessing/pdlc-dp-role.yaml
kubectl apply -f ./data_preprocessing/pdlc-dp-role-binding.yaml
kubectl apply -f ./data_preprocessing/pdlc-dp-deployment.yaml
sleep 300 # Wait for Image to Download and Start
# sleep 300 # Wait for Image to Download and Start
kubectl wait --for=condition=Ready pod --all -n he-codeco-pdlc --timeout=5m
## Install CA Subcomponent
kubectl apply -f ./context_awareness/pdlc-ca-deployment.yaml
sleep 180 # Wait for Image to Download and Start
# sleep 180 # Wait for Image to Download and Start
kubectl wait --for=condition=Ready pod --all -n he-codeco-pdlc --timeout=3m
## Install GNN Subcomponent
kubectl apply -f ./gnn_model/gnn-role.yaml
kubectl apply -f ./gnn_model/gnn-role-binding.yaml
kubectl apply -f ./gnn_model/gnn_inference.yaml
kubectl apply -f ./gnn_model/gnn_controller.yaml
sleep 180 # Wait for Image to Download and Start
# sleep 180 # Wait for Image to Download and Start
kubectl wait --for=condition=Ready pod --all -n he-codeco-pdlc --timeout=3m
## Install RL Subcomponent
kubectl apply -f ./rl_model/rl-role.yaml
kubectl apply -f ./rl_model/rl-role-binding.yaml
kubectl apply -f ./rl_model/rl-model-deployment.yaml
sleep 300 # Wait for Image to Download and Start
# sleep 180 # Wait for Image to Download and Start
kubectl wait --for=condition=Ready pod --all -n he-codeco-pdlc --timeout=5m
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment