Refer to deployment basics to learn about Sourcegraph Docker images and Renovate, which performs most image updates.
The master
branch of this repository is configured to track the latest builds from sourcegraph/sourgraph@main
, tagged as insiders
. Renovate automatically performs updates for these images.
Release branches (3.19
, etc) track specific versions instead, and updates are triggered manually for specific branches - see cutting a release.
⚠️ If you are using the Sourcegraph release tooling, this step will be done for you in the PR it creates. Learn more about the release process in the handbook.
The GitHub Action "Update tags" is used to enforce semver constraints for Sourcegraph Docker images for appropriate release branches (3.19
, etc). Click "Run workflow" and provide the necessary parameters to open a pull request. You can run the workflow locally as well:
.github/workflows/scripts/update-docker-tags.sh "~3.19"
Once an upgrade is performed, tag the release. The version numbers for sourcegraph/deploy-sourcegraph largely follow sourcegraph/sourcegraph's version numbers (i.e. [email protected]
uses sourcegraph/sourcegraph's v2.11.2
image tags).
Refer to releases for more details.
In most cases, you should not do this in deploy-sourcegraph
itself, but in relevant forks instead - see the installation guide.
If you want to update Docker images manually, you can update the Docker image versions in *.Deployment.yaml
to match the tagged version that you are releasing. You should look at our DockerHub repositories to see what the latest versions are. Make sure to include the sha256 digest for each image, which ensures that each image pull is immutable. Use docker inspect --format='{{index .RepoDigests 0}}' $IMAGE
to get the digest.
Wait for buildkite to pass and for your changes to be approved, then merge and check out master
.
Test what is currently checked in to master by installing Sourcegraph on a fresh cluster.
Clone sourcegraph/deploy-k8s-helper
to your machine and follow the README to set up all the prerequisistes.
- Ensure that the
deploySourcegraphRoot
value in your stack configuration (see https://github.com/sourcegraph/deploy-k8s-helper/blob/master/README.md) is pointing to your deploy-sourcegraph checkout (ex:pulumi config set deploySourcegraphRoot /Users/ggilmore/dev/go/src/github.com/sourcegraph/deploy-sourcegraph
) - In your deploy-sourcegraph checkout, make sure that you're on the latest
master
- Run
yarn up
in your https://github.com/sourcegraph/deploy-k8s-helper checkout - It'll take a few minutes for the cluster to be provisioned and for sourcegraph to be installed. Pulumi will show you the progresss that it's making, and will tell you when it's done.
- Use the instructions in configure.md to:
- Add a repository (e.g. sourcegraph/sourcegraph)
- Enable a language extension (e.g. Go), and test that code intelligence is working on the above repository
- Do a few test searches
- When you're done, run
yarn destroy
to tear the cluster down. This can take ~10 minutes.
- In your deploy-sourcegraph checkout, checkout the commit that contains the configuration for the previous release (e.g. the commit that has
2.11.x
images if you're currently trying to release2.12.x
, etc.) - Run
yarn up
in your https://github.com/sourcegraph/deploy-k8s-helper checkout - Do the same smoke tests that you did above
- In your deploy-sourcegraph checkout, checkout the latest
master
commit again and runyarn up
to deploy the new images. Check to see that the same smoke tests pass after the upgrade process. - When you're done, run
yarn destroy
to tear the cluster down.
Refer to how to deploy a test cluster.
- Deploy the latest
master
to your new cluster by running through the quickstart steps in docs/install.md- You'll need to create a GCP Storage Class named
sourcegraph
with the samezone
that you created your cluster in (see "Configure a storage class") - In order to give yourself permissions to create roles on the cluster, run:
kubectl create clusterrolebinding cluster-admin-binding --clusterrole cluster-admin --user [email protected]
- You'll need to create a GCP Storage Class named
- Use the instructions in configure.md to:
- Add a repository (e.g. sourcegraph/sourcegraph)
- Enable a language extension (e.g. Go), and test that code intelligence is working on the above repository
- Do a couple test searches
- Tear down the cluster that you created above by deleting it through from the Sourcegraph CI GCP Project.
- Checkout the commit that contains the configuration for the previous release (e.g. the commit has
2.11.x
images if you're currently trying to release2.12.x
, etc.) - Use the "Provision a new cluster" instructions above to create a new cluster.
- Deploy the older commit to the new cluster, and do the same smoke tests with the older version.
- Checkout the latest
master
, deploy the newer images to the same cluster (without tearing it down in between) by running./kubectl-apply-all.sh
, and check to see that the smoke test passes after the upgrade process.
You can use minikube to run Sourcegraph Cluster on your development machine. However, due to minikube requirements and reduced available resources we need to modify the resources to remove resources
requests/limits and storageClassNames
. Here is the shell commands you can use to spin up minikube:
find base -name '*Deployment.yaml' | while read i; do yj < $i | jq 'walk(if type == "object" then del(.resources) else . end)' | jy -o $i; done
find base -name '*PersistentVolumeClaim.yaml' | while read i; do yj < $i | jq 'del(.spec.storageClassName)' | jy -o $i; done
find base -name '*StatefulSet.yaml' | while read i; do yj < $i | jq 'del(.spec.volumeClaimTemplates[] | .spec.storageClassName) | del(.spec.template.spec.containers[] | .resources)' | jy -o $i; done
minikube start
kubectl create ns src
kubens src
./kubectl-apply-all.sh
kubectl expose deployment sourcegraph-frontend --type=NodePort --name sourcegraph --port=3080 --target-port=3080
minikube service list
Additionally you may want to deploy a modified version of a service locally. Minikube allows us to directly connect to its docker instance, making it easy to use unpublished images from the sourcegraph repository:
eval $(minikube docker-env)
IMAGE=repo-updater:dev ./cmd/repo-updater/build.sh
kubectl edit deployment/repo-updater # set imagePullPolicy to Never
kubectl set image deployment repo-updater '*=repo-updater:dev'
You can also use the minikube overlay. This avoids modifying the config files in base
.