From b0815bc322e0297be6fb61bcf54f4ceac7f9e559 Mon Sep 17 00:00:00 2001 From: jmarchel7bulls Date: Mon, 23 Sep 2024 12:27:45 +0200 Subject: [PATCH 1/2] Installing influxdb, lstm predictor, monitoring data persistor, prediction orchestrator, SLOViD and exponential smoothing predictor as helm charts --- installation-scripts-onm/MASTER_START_SCRIPT.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/installation-scripts-onm/MASTER_START_SCRIPT.sh b/installation-scripts-onm/MASTER_START_SCRIPT.sh index 50cc86f..782b0c2 100644 --- a/installation-scripts-onm/MASTER_START_SCRIPT.sh +++ b/installation-scripts-onm/MASTER_START_SCRIPT.sh @@ -41,6 +41,13 @@ sudo -H -E -u ubuntu bash -c 'helm install solver nebulous/nebulous-optimiser-so --set activemq.ACTIVEMQ_HOST=$BROKER_ADDRESS \ --set activemq.ACTIVEMQ_PORT=$BROKER_PORT' +sudo -H -E -u ubuntu bash -c 'helm install solver nebulous/nebulous-influxdb' +sudo -H -E -u ubuntu bash -c 'helm install solver nebulous/nebulous-lstm-predictor' +sudo -H -E -u ubuntu bash -c 'helm install solver nebulous/nebulous-monitoring-data-persistor' +sudo -H -E -u ubuntu bash -c 'helm install solver nebulous/nebulous-prediction-orchestrator' +sudo -H -E -u ubuntu bash -c 'helm install solver nebulous/nebulous-slo-violation-detector' +sudo -H -E -u ubuntu bash -c 'helm install solver nebulous/nebulous-exponential-smoothing-predictor' + echo "Add volumes provisioner" sudo -H -u ubuntu bash -c "kubectl apply -f https://raw.githubusercontent.com/rancher/local-path-provisioner/v0.0.27/deploy/local-path-storage.yaml" From b186be0761ca612f9c34ff8b73bd937e38bc2af9 Mon Sep 17 00:00:00 2001 From: jmarchel7bulls Date: Mon, 23 Sep 2024 12:41:35 +0200 Subject: [PATCH 2/2] Installing activemq as helm chart --- installation-scripts-onm/MASTER_START_SCRIPT.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/installation-scripts-onm/MASTER_START_SCRIPT.sh b/installation-scripts-onm/MASTER_START_SCRIPT.sh index 782b0c2..8a6b038 100644 --- a/installation-scripts-onm/MASTER_START_SCRIPT.sh +++ b/installation-scripts-onm/MASTER_START_SCRIPT.sh @@ -42,6 +42,7 @@ sudo -H -E -u ubuntu bash -c 'helm install solver nebulous/nebulous-optimiser-so --set activemq.ACTIVEMQ_PORT=$BROKER_PORT' sudo -H -E -u ubuntu bash -c 'helm install solver nebulous/nebulous-influxdb' +sudo -H -E -u ubuntu bash -c 'helm install solver nebulous/nebulous-activemq' sudo -H -E -u ubuntu bash -c 'helm install solver nebulous/nebulous-lstm-predictor' sudo -H -E -u ubuntu bash -c 'helm install solver nebulous/nebulous-monitoring-data-persistor' sudo -H -E -u ubuntu bash -c 'helm install solver nebulous/nebulous-prediction-orchestrator'