forked from stolostron/thanos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "[release-2.9] Upgrade to thanos 0.32.3 (stolostron#84)"
This reverts commit 8727d9f. Signed-off-by: Subbarao Meduri <smeduri@redhat.com>
- Loading branch information
1 parent
8214b23
commit c2dccb9
Showing
36 changed files
with
730 additions
and
1,078 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Auto generated by busybox-updater.sh. DO NOT EDIT | ||
amd64=7926ace2c2ee4c8fd52ae5badcc409685bae02090f796e26ef7bb504245acaaa | ||
arm64=2754fd36a6cd1753c82f7954477b9864a0d0d2f7825c9ad015f3f2ce58d82f14 | ||
arm=a2f2a8253820f58e0a9721045b9e5f61df2aef79d679a638e2b901d4be6e27df | ||
ppc64le=5e26d389ce9d04cf55740944dab6d7896766fd21a5eca05201e0aef4eab96852 | ||
riscv64=d671b149d69a3497f12d802a2cb3bf490bc16d9f048583868176bd016f35da61 | ||
s390x=50895280c397af8998357e1a522a4f82774d6abeddc7a95bafeb10cb46692bba | ||
amd64=650cefc7292b429ac55e3f9cc49a55a4cdd58698474310bb280c5e57adebf40a | ||
arm64=63e8d2c5aa02d37f81bc9bfd80b92bbc59b31a0099a990649b887f861264b3b5 | ||
arm=810be036d4e95b015f26c01ba999a2e14fde69b5af0c264fe607971a35ba3787 | ||
ppc64le=b698a18e2d756e00697a63ac749825ee8c3f8a50133b8998dbed092c474c1f46 | ||
riscv64=02a69336c173007423c0be20cfd1c8a76b3fd6d4696a5b7c19022be9a631688b | ||
s390x=72832339f6003c44a4cdf9d576efa3ff19d5ce55e27198b4089528bf0dd04788 |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Upgrade | ||
|
||
When upgrading Thanos to a newer version, these are the sequences of commands that have been the most consistently accurate. | ||
|
||
```bash | ||
# make sure that there aren't already too many diffs between the current branch and the tag it's supposed to be replicating | ||
$ git diff <current-upstream-tag> --name-only | ||
``` | ||
|
||
```bash | ||
# cherry pick the commits between the current upstream tag and the one you want to upgrade to | ||
$ git cherry-pick -X theirs -m 1 <current-upstream-tag>..<upgrade-upstream-tag> | ||
``` | ||
|
||
You may need to use `$ git cherry-pick --skip` a few times to reconcile empty commits, but this is fine. | ||
|
||
To make sure it worked correctly: | ||
```bash | ||
# this should yield the same results as the first command, even though the new tag has been specified | ||
$ git diff <upgrade-upstream-tag> --name-only | ||
``` |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.32.3 | ||
0.32.1 |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.