fix: image hashes#3226
Merged
Merged
Conversation
Contributor
|
Comparison of Helm chart templating output: # raw/templates/resources.yaml
@@ spec.jobTemplate.spec.template.spec.containers.kubectl.command @@
# batch/v1/CronJob/gitea-backup-job
! - one list entry removed:
- - |
- echo 'Verifying Rclone...' && ( test ! -f '/backup/.bin/rclone' || echo '58e35e0324769c1cb3df37f22086eefe8fb025990232f00e4b8548f15b749096e8c241fb572a7d89861b4ce7534b63a0f58b71b3663a5ee3bda6db5fb9bf440d /backup/.bin/rclone' | sha512sum -c - || rm '/backup/.bin/rclone' ) && if [ ! -f '/backup/.bin/rclone' ]; then
- echo 'Installing RClone...' &&
- mkdir -p /backup/.bin &&
- cd /backup/.bin &&
- curl -fsSL -o rclone.zip https://github.com/rclone/rclone/releases/download/v1.74.0/rclone-v1.74.0-linux-amd64.zip &&
- echo '4f73acc20e38773cc9c56639f405c775b4e6fca87127dae498a3f1cb032a896c106512f5ca1f5c48e6a9ac6f3e94ebeb0f130fff69e9260050da5beabe1ab1f6 rclone.zip' | sha512sum -c - &&
- unzip -oj rclone.zip &&
- echo '58e35e0324769c1cb3df37f22086eefe8fb025990232f00e4b8548f15b749096e8c241fb572a7d89861b4ce7534b63a0f58b71b3663a5ee3bda6db5fb9bf440d rclone' | sha512sum -c -
- fi && cd /backup && echo 'Creating backup...' && gitea dump --type tar.bz2 && echo 'Uploading to object storage...' && .bin/rclone copy --exclude '\.*/**' /backup gitea:/$BUCKET_NAME && echo 'Removing old backups from object storage...' && .bin/rclone delete --min-age '7d' --exclude '\.*/**' gitea:/$BUCKET_NAME && echo 'Cleaning up local backups...' && find . -type f -iname '*.tar.bz2' -ctime +1 -delete
! + one list entry added:
+ - |
+ echo 'Verifying Rclone...' && ( test ! -f '/backup/.bin/rclone' || echo '8e6fa97a3916715952ddc4f41a7962aeb2c18e74580ed157e4830f6cec453d66f327f5fe91599690f25be3c7ac21e1587382caa3a039498871b48f9f8e06f105 /backup/.bin/rclone' | sha512sum -c - || rm '/backup/.bin/rclone' ) && if [ ! -f '/backup/.bin/rclone' ]; then
+ echo 'Installing RClone...' &&
+ mkdir -p /backup/.bin &&
+ cd /backup/.bin &&
+ curl -fsSL -o rclone.zip https://github.com/rclone/rclone/releases/download/v1.74.0/rclone-v1.74.0-linux-amd64.zip &&
+ echo 'deaf15bf8227ebeb5ead6ab033d34f0c21dca0bec272614958e0590ee85a4fd72abe8aa30c3fe8099b8632e18d999e1083cb119a1b1a56f6fff094ab027f8813 rclone.zip' | sha512sum -c - &&
+ unzip -oj rclone.zip &&
+ echo '8e6fa97a3916715952ddc4f41a7962aeb2c18e74580ed157e4830f6cec453d66f327f5fe91599690f25be3c7ac21e1587382caa3a039498871b48f9f8e06f105 rclone' | sha512sum -c -
+ fi && cd /backup && echo 'Creating backup...' && gitea dump --type tar.bz2 && echo 'Uploading to object storage...' && .bin/rclone copy --exclude '\.*/**' /backup gitea:/$BUCKET_NAME && echo 'Removing old backups from object storage...' && .bin/rclone delete --min-age '7d' --exclude '\.*/**' gitea:/$BUCKET_NAME && echo 'Cleaning up local backups...' && find . -type f -iname '*.tar.bz2' -ctime +1 -delete
# rabbitmq-cluster-operator/templates/messaging-topology-operator/validating-webhook-configuration.yaml
# values-repo.yaml
|
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.
📌 Summary
This fixes verification hash values, that were derived from the wrong files in #3218 .
🔍 Reviewer Notes
🧹 Checklist