-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: bump greptimedb version to v0.11.0 #212
chore: bump greptimedb version to v0.11.0 #212
Conversation
WalkthroughThe pull request involves updates to the Helm charts for the Changes
Possibly related PRs
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (6)
✅ Files skipped from review due to trivial changes (3)
🔇 Additional comments (4)charts/greptimedb-cluster/README.md (1)
The version badges have been correctly updated:
These changes align with the PR objective to bump the greptimedb version. charts/greptimedb-cluster/values.yaml (2)
The greptimedb image tag has been properly updated to
Let's ensure all version references have been updated consistently. ✅ Verification successfulVersion references are consistent across the repository The version references are consistent across the repository:
🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check for any remaining references to the old version
# This helps ensure we haven't missed any version updates
echo "Checking for any remaining references to v0.10.2..."
rg "0\.10\.2|v0\.10\.2" --type yaml --type md
echo "Checking Chart.yaml for version consistency..."
cat charts/greptimedb-cluster/Chart.yaml
Length of output: 1362 charts/greptimedb-standalone/values.yaml (1)
The image tag update to ✅ Verification successfulVersion consistency verified across Helm charts and Docker image The version update to
🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Verify version consistency across Helm chart files
echo "Checking version consistency in Chart.yaml files..."
for chart in greptimedb-standalone greptimedb-cluster; do
if [ -f "charts/${chart}/Chart.yaml" ]; then
echo "=== ${chart} Chart.yaml ==="
grep -E "version:|appVersion:" "charts/${chart}/Chart.yaml"
fi
done
echo -e "\nChecking image tag in values.yaml files..."
for chart in greptimedb-standalone greptimedb-cluster; do
if [ -f "charts/${chart}/values.yaml" ]; then
echo "=== ${chart} values.yaml ==="
grep -A 1 "tag:" "charts/${chart}/values.yaml"
fi
done
# Check if v0.11.0 exists in the greptime/greptimedb Docker Hub repository
echo -e "\nVerifying v0.11.0 tag exists in Docker Hub..."
curl -s "https://hub.docker.com/v2/repositories/greptime/greptimedb/tags/?page_size=100" | jq -r '.results[] | select(.name=="v0.11.0") | .name'
Length of output: 1849 Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Summary by CodeRabbit
New Features
greptimedb-cluster
andgreptimedb-standalone
Helm charts to0.2.40
and0.1.36
, respectively.0.11.0
for both clusters.v0.11.0
for GreptimeDB in both clusters.Documentation