Merge release/v2.9.26 into master

This commit is contained in:
Nubenetes Bot
2026-06-20 14:34:25 +02:00
5 changed files with 23 additions and 7 deletions
+8
View File
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [[2.9.26]](https://github.com/nubenetes/awesome-kubernetes/releases/tag/v2.9.26) - 2026-06-20
### Changed
- **Collapsible, nested left navigation**: After moving the sections to the left sidebar in 2.9.25, they rendered as a *flat* list of 18 labels with no expand/indent — `navigation.sections` made them non-collapsible group labels and `navigation.prune` stripped the inactive children. Disabled both so the sidebar is now a proper collapsible, nested, indented tree (14 toggles / chevrons, collapsed by default, click to expand). No size penalty (88,213 vs 88,516 bytes per page).
### Added
- **Home section headings**: The V2 home had a single H2, leaving its right-hand "On this page" TOC empty. Added `## Explore the Ecosystem` (badge cards) and `## Trending Now` (Intelligence Digest) alongside the existing `## The Cloud Native Universe We Track`, so the home's right TOC now lists three real sections. Net effect: both side columns are now useful on every page — left = full collapsible directory, right = per-page section map.
## [[2.9.25]](https://github.com/nubenetes/awesome-kubernetes/releases/tag/v2.9.25) - 2026-06-20
### Changed
+5 -5
View File
@@ -142,7 +142,7 @@ Additionally, as of May 2026, Nubenetes has reached the **Platinum Operational T
| :--- | :--- |
| **Total Technical Resources (Links)** | **18647+** |
| **Specialized MD Pages** | **162** |
| **Total Commits** | **6285+** |
| **Total Commits** | **6292+** |
| **Primary AI Engine** | **Google Gemini (Agentic)** |
<!-- HEART_STATS_END -->
@@ -180,7 +180,7 @@ The growth of Nubenetes reflects the acceleration of the Cloud Native ecosystem.
| 6 | 2023 | 30 | 123 | Maintenance & Refinement |
| 7 | 2024 | 53 | 218 | Curation Strategy Pivot |
| 8 | 2025 | 5 | 20 | Stability & Research Phase |
| 9 | 2026 | 2726 | 11,258 | **Agentic AI Surge** (May 2026 Inception) |
| 9 | 2026 | 2733 | 11,287 | **Agentic AI Surge** (May 2026 Inception) |
<!-- ANNUAL_GROWTH_END -->
<!-- ANNUAL_CHART_START -->
@@ -196,8 +196,8 @@ xychart-beta
title "Nubenetes Annual Growth Metrics (20182026)"
x-axis ["2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026"]
y-axis "Volume (Commits / Estimated New Refs)" 0 --> 12000
bar [1445, 586, 8449, 2193, 1660, 123, 218, 20, 11258]
bar [350, 142, 2046, 531, 402, 30, 53, 5, 2726]
bar [1445, 586, 8449, 2193, 1660, 123, 218, 20, 11287]
bar [350, 142, 2046, 531, 402, 30, 53, 5, 2733]
```
<!-- ANNUAL_CHART_END -->
@@ -207,7 +207,7 @@ xychart-beta
| :--- | :---: | :---: | :--- |
| 2026-04 | 25 | 103 | Active Curation |
| 2026-05 | 2101 | 8,677 | **Agentic Inception (Gemini Era)** |
| 2026-06 | 600 | 2,478 | Active Curation |
| 2026-06 | 607 | 2,506 | Active Curation |
<!-- MONTHLY_SURGE_END -->
### 2.4. Content Distribution and Semantic Clustering
+2
View File
@@ -1113,6 +1113,7 @@ class V2VisionEngine:
" </div>\n"
" </a>\n"
"</div>\n\n"
"## Explore the Ecosystem\n\n"
"<div class=\"hero-badge-row\">\n"
" <a href=\"./kubernetes/\" style=\"text-decoration: none; color: inherit; display: block;\">\n"
" <div class=\"hero-badge-card hero-badge-card--cyan\">\n"
@@ -1163,6 +1164,7 @@ class V2VisionEngine:
f"{coverage_info}\n\n"
# Altitude fix: surface the fresh, dynamic Trending/Digest BEFORE the
# signature YouTube mosaic (which now closes the page as a brand showcase).
"## Trending Now\n\n"
f"{pulse_md}\n\n"
"## The Cloud Native Universe We Track\n\n"
f"<center markdown=\"1\">\n{mosaic_html}\n</center>\n\n"
+4
View File
@@ -24,6 +24,8 @@
</a>
</div>
## Explore the Ecosystem
<div class="hero-badge-row">
<a href="./kubernetes/" style="text-decoration: none; color: inherit; display: block;">
<div class="hero-badge-card hero-badge-card--cyan">
@@ -86,6 +88,8 @@
- **Status**: The system is incrementally processing pending resources to complete the knowledge graph.
## Trending Now
<div class="trending-section">
<div class="trending-section__title">🔥 Trending Now — Cloud Native Intelligence <span class="trending-section__updated">Updated Jun 20, 2026</span></div>
<div class="trending-grid">
+4 -2
View File
@@ -34,7 +34,8 @@ theme:
# standard vertical list and stays populated on every page incl. home.
- navigation.top
- navigation.tracking
- navigation.sections
# navigation.sections disabled: render top-level as COLLAPSIBLE nested
# sections (chevron + indentation) instead of flat group labels.
# navigation.expand intentionally disabled: with ~169 nav entries it forced
# every section open (heavy DOM, overwhelming). The Topic Map page now serves
# as the full directory; the left nav stays collapsed and scannable.
@@ -51,7 +52,8 @@ theme:
- content.action.view
- content.action.edit
- content.tooltips
- navigation.prune
# navigation.prune disabled: keep all children in the HTML so any section
# can expand (prune removed inactive children, leaving a flat list).
# toc.integrate removed: show the native sticky "On this page" TOC in the
# right sidebar instead of merging headings into the left nav. This replaces
# the per-page Markdown "## Table of Contents" we no longer render.