From 4e092ada95eb19dd9824ee4d5c3626a9593d654c Mon Sep 17 00:00:00 2001 From: Marc <7050295+marcleblanc2@users.noreply.github.com> Date: Mon, 16 Dec 2024 23:03:00 -0700 Subject: [PATCH] Add notes to install.sh --- install/install.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/install/install.sh b/install/install.sh index e870ae3..6ec76b5 100755 --- a/install/install.sh +++ b/install/install.sh @@ -148,9 +148,15 @@ echo "${SOURCEGRAPH_SIZE}" | sudo tee /home/ec2-user/.sourcegraph-size # Create override configMap for prometheus before startup Sourcegraph kubectl --kubeconfig $KUBECONFIG_FILE apply -f ./prometheus-override.ConfigMap.yaml + +# Install the Sourcegraph Helm chart helm --kubeconfig $KUBECONFIG_FILE upgrade -i -f ./override.yaml --version "$SOURCEGRAPH_VERSION" sourcegraph ./sourcegraph-charts.tgz + sleep 5 + +# Install the Executors Helm chart helm --kubeconfig $KUBECONFIG_FILE upgrade -i -f ./override.yaml --version "$SOURCEGRAPH_VERSION" executor ./sourcegraph-executor-k8s-charts.tgz + # Skip ingress start-up during AMI creation step: # kubectl --kubeconfig $KUBECONFIG_FILE create -f $DEPLOY_PATH/ingress.yaml