Add recap for HAMi at KubeCon + CloudNativeCon Japan 2026 and update community flyer - #707
Add recap for HAMi at KubeCon + CloudNativeCon Japan 2026 and update community flyer#707rootsongjc wants to merge 3 commits into
Conversation
… with images and tags Signed-off-by: Jimmy Song <jimmy@dynamia.ai>
…size Signed-off-by: Jimmy Song <jimmy@dynamia.ai>
✅ Deploy Preview for project-hami ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: rootsongjc The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (2)
🚧 Files skipped from review as they are similar to previous changes (2)
📝 WalkthroughWalkthroughAdded English and Chinese blog posts that recap KubeCon + CloudNativeCon Japan 2026. The posts cover HAMi keynote content, SNOW’s GPU deployment, booth discussions, event resources, and the new Japan tag. ChangesKubeCon Japan 2026 recap
Estimated code review effort: 1 (Trivial) | ~5 minutes Possibly related PRs
Suggested labels: Suggested reviewers: 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@blog/kubecon-japan-2026-recap/index.md`:
- Around line 11-17: Resolve all broken recap references in
blog/kubecon-japan-2026-recap/index.md and
i18n/zh/docusaurus-plugin-content-blog/kubecon-japan-2026-recap/index.md: add or
correct the English and Chinese KubeCon landing and community pages, all three
recap images, and the SNOW case-study PDF at the referenced paths, preserving
the localized URL structure so the broken-link build succeeds.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro Plus
Run ID: 652af247-2f76-455e-b9b6-c5dd0fb96a39
⛔ Files ignored due to path filters (4)
static/img/kubecon-japan-2026-recap/hami-booth.jpgis excluded by!**/*.jpgstatic/img/kubecon-japan-2026-recap/keynote.jpgis excluded by!**/*.jpgstatic/img/kubecon-japan-2026-recap/reza-snow.jpgis excluded by!**/*.jpgstatic/resources/flyers/community-flyer.pdfis excluded by!**/*.pdf
📒 Files selected for processing (3)
blog/kubecon-japan-2026-recap/index.mdi18n/zh/docusaurus-plugin-content-blog/kubecon-japan-2026-recap/index.mdi18n/zh/docusaurus-plugin-content-blog/tags.yml
| For the full overview, talk slides, and the SNOW case study, see the [KubeCon Japan 2026 page](/landing/kubecon-japan). | ||
|
|
||
| <!-- truncate --> | ||
|
|
||
| ## HAMi in the Keynote | ||
|
|
||
|  |
There was a problem hiding this comment.
🎯 Functional Correctness | 🟠 Major | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
set -euo pipefail
for asset in keynote.jpg reza-snow.jpg hami-booth.jpg snow_corp_cncf.pdf; do
fd --hidden --type f --glob "$asset" . >/dev/null
done
rg -n --fixed-strings 'kubecon-japan' blog i18n
rg -n --fixed-strings 'community' blog i18nRepository: Project-HAMi/website
Length of output: 34798
🏁 Script executed:
#!/bin/bash
set -euo pipefail
echo "repo files matching targets:"
python3 - <<'PY'
from pathlib import Path
targets = [
"img/kubecon-japan-2026-recap/keynote.jpg",
"img/kubecon-japan-2026-recap/reza-snow.jpg",
"img/kubecon-japan-2026-recap/hami-booth.jpg",
"resources/2026-kubecon-japan/snow_corp_cncf.pdf",
"landing/kubecon-japan/index.md",
"landing/kubecon-japan/index.mdx",
"blog/community/index.md",
"blog/community/index.mdx",
"i18n/zh/docusaurus-plugin-content-landing/kubecon-japan/index.md",
"i18n/zh/docusaurus-plugin-content-landing/kubecon-japan/index.mdx",
"i18n/zh/docusaurus-plugin-content-blog/community/index.md",
"i18n/zh/docusaurus-plugin-content-blog/community/index.mdx",
]
for t in targets:
p = Path(t)
print(f"{t}: {'EXISTS' if p.exists() else 'MISSING'}")
PY
echo
echo "Docusaurus config route-related snippets:"
fd -a 'docusaurus.config.*|sidebars.*|tailwind.config.*' . | sed 's#^\./##' | sed -n '1,80p'
for f in $(fd 'docusaurus.config.*|sidebars.js|sidebars.cjs' .); do
echo "--- $f"
sed -n '1,220p' "$f" | sed -n '1,220p' | rg -n "landing|community|redirects|staticDirectories|presets|plugins|routeBasePath|locale|defaultLocale|i18n|baseUrl|trailingSlash" -C 3 || true
done
echo
echo "blog tags with community/link references:"
sed -n '1,220p' i18n/zh/docusaurus-plugin-content-blog/tags.yml 2>/dev/null || trueRepository: Project-HAMi/website
Length of output: 7490
Add or correct the missing recap assets and pages before merge.
blog/kubecon-japan-2026-recap/index.md uses onBrokenLinks: "throw", so these missing targets will break the build:
- English:
/landing/kubecon-japan,/community/, the three recap images, and/resources/2026-kubecon-japan/snow_corp_cncf.pdf. - Chinese:
/zh/landing/kubecon-japan,/zh/community/, the same images, and the same PDF.
📍 Affects 2 files
blog/kubecon-japan-2026-recap/index.md#L11-L17(this comment)i18n/zh/docusaurus-plugin-content-blog/kubecon-japan-2026-recap/index.md#L11-L17
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@blog/kubecon-japan-2026-recap/index.md` around lines 11 - 17, Resolve all
broken recap references in blog/kubecon-japan-2026-recap/index.md and
i18n/zh/docusaurus-plugin-content-blog/kubecon-japan-2026-recap/index.md: add or
correct the English and Chinese KubeCon landing and community pages, all three
recap images, and the SNOW case-study PDF at the referenced paths, preserving
the localized URL structure so the broken-link build succeeds.
|
Is Jonathan Bryce CNCF's Executive Director, or Linux Foundation's? The earlier |
He is Executive Director, Cloud and Infrastructure, The Linux Foundation, I will update his title. |
…te description Signed-off-by: Jimmy Song <jimmy@dynamia.ai>
Introduce a recap of HAMi's participation at KubeCon + CloudNativeCon Japan 2026, including key sessions and booth interactions. Update the community flyer PDF with a new version and reduced size.
cc/ @fishman
Summary by CodeRabbit
Documentation