[Backport 6.8.x] fix(rel): add migrator job to release process#353
Merged
jdpleiness merged 1 commit into6.8.xfrom Oct 3, 2025
Merged
[Backport 6.8.x] fix(rel): add migrator job to release process#353jdpleiness merged 1 commit into6.8.xfrom
jdpleiness merged 1 commit into6.8.xfrom
Conversation
## Description The migrator job was missing from the release process, causing the image tag to no be updated during releases. This adds the steps to update the image during the release process. ## Checklist - [ ] Update [CHANGELOG.md](https://github.com/sourcegraph/deploy-sourcegraph-k8s/blob/main/CHANGELOG.md) - [ ] Update [K8s Upgrade notes](https://github.com/sourcegraph/sourcegraph/blob/main/doc/admin/updates/kubernetes.md) - [x] Kustomiz-specific changes - [ ] Update sister repository: [deploy-sourcegraph-helm](https://github.com/sourcegraph/deploy-sourcegraph-helm) - [ ] Update sister repository: [deploy-sourcegraph-docker](https://github.com/sourcegraph/deploy-sourcegraph-docker) - [ ] Verify all images have a valid tag and SHA256 sum ## Test plan Tested actions locally: ```shell sg release create --workdir=. --version=v6.8.2313 --inputs=server=v6.8.2313 --pretend ... 👉 [ step] Pretending to run step "sg ops (migrator)" [sg ops (migrator)] set -eu [sg ops (migrator)] sg ops update-images \ [sg ops (migrator)] --kind k8s \ [sg ops (migrator)] --registry us-docker.pkg.dev/sourcegraph-images/internal \ [sg ops (migrator)] --docker-username=$DOCKER_USERNAME \ [sg ops (migrator)] --docker-password=$DOCKER_PASSWORD \ [sg ops (migrator)] --pin-tag 6.8.2313 \ [sg ops (migrator)] components/utils/migrator/ [sg ops (migrator)] ... ``` (cherry picked from commit 9e64aa1)
jdpleiness
approved these changes
Oct 3, 2025
Contributor
Merge activity
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
The migrator job was missing from the release process, causing the image tag to no be updated during releases.
This adds the steps to update the image during the release process.
Checklist
Test plan
Tested actions locally:
Backport 9e64aa1 from #351