Compare commits

...
19 Commits
Author SHA1 Message Date
Inaki da92e17410 Merge pull request #242 from nubenetes/develop
fix: configuration syntax and bump to 2.1.8
2026-05-25 23:41:05 +02:00
Nubenetes Bot 5508100fe2 docs: automated README metric synchronization [skip ci] 2026-05-25 21:40:04 +00:00
Nubenetes Bot 2fb13e13d9 fix: resolve YAML syntax error in mkdocs.yml and bump to 2.1.8 2026-05-25 23:39:32 +02:00
Inaki 3d9f79bdb7 Merge pull request #241 from nubenetes/develop
style: ultra-visible favicon and index restoration (v2.1.7)
2026-05-25 23:37:02 +02:00
Nubenetes Bot 2e6a7e346a docs: automated README metric synchronization [skip ci] 2026-05-25 21:36:44 +00:00
Nubenetes Bot 08d5a631be style: restore index branding and integrate ultra-visible favicon, bump to 2.1.7 2026-05-25 23:36:07 +02:00
Inaki a96a637cb8 Merge pull request #240 from nubenetes/develop
style: custom minimalist favicon logo and bump to 2.1.6
2026-05-25 23:30:11 +02:00
Nubenetes Bot d3fd4335b7 docs: automated README metric synchronization [skip ci] 2026-05-25 21:29:11 +00:00
Nubenetes Bot b0aad96917 style: replace favicon with custom minimalist Nubenetes Nano logo and bump to 2.1.6 2026-05-25 23:28:36 +02:00
Inaki 4d1decd737 Merge pull request #239 from nubenetes/develop
chore: optimize automated workflows and bump to 2.1.5
2026-05-25 21:41:29 +02:00
Nubenetes Bot 091441b23e docs: automated README metric synchronization [skip ci] 2026-05-25 19:40:13 +00:00
Nubenetes Bot 3c584b2530 chore: optimize automated workflows with direct push and bump to 2.1.5 2026-05-25 21:39:38 +02:00
Inaki d909ceb3d0 Merge pull request #236 from nubenetes/develop
feat: integrate leading AI YouTube channels and bump to 2.1.4
2026-05-25 21:32:36 +02:00
Nubenetes Bot 02050ac379 docs: automated README metric synchronization [skip ci] 2026-05-25 19:27:39 +00:00
Nubenetes Bot 65f268aa3d feat: integrate leading AI YouTube channels into visual mosaic and bump to 2.1.4 2026-05-25 21:27:02 +02:00
Inaki b7d28ed3cb Merge pull request #235 from nubenetes/develop
Develop
2026-05-25 21:08:54 +02:00
Nubenetes Bot f1f9eb67aa docs: automated README metric synchronization [skip ci] 2026-05-25 19:07:53 +00:00
Nubenetes Bot 5f27cd4bab docs: strictly enforce PR workflow for master updates in GEMINI.md 2026-05-25 21:07:20 +02:00
Nubenetes Bot 78e76118d0 docs: automated README metric synchronization [skip ci] 2026-05-25 18:54:16 +00:00
24 changed files with 229 additions and 82 deletions
+11 -8
View File
@@ -57,14 +57,17 @@ jobs:
PYTHONUNBUFFERED: "1"
run: python -u -m src.v2_metadata
- name: Create Pull Request for Metadata Update
uses: peter-evans/create-pull-request@v8
with:
branch: bot/v2-metadata-sync
base: develop
title: "V2 Data: GitHub Metadata Sync"
commit-message: "chore: update inventory stars and licenses [skip ci]"
labels: "v2-data, metadata-sync"
- name: Commit and Push Metadata Updates
run: |
git config --global user.name "Nubenetes Bot"
git config --global user.email "bot@nubenetes.com"
git add data/inventory.yaml
if git diff --staged --quiet; then
echo "No changes in inventory.yaml to commit."
else
git commit -m "chore: update inventory stars and licenses [skip ci]"
git push origin develop
fi
- name: Persist Incremental Inventory to Cache
if: always()
+11 -8
View File
@@ -59,14 +59,17 @@ jobs:
PYTHONUNBUFFERED: "1"
run: python -u -m src.v2_ai
- name: Create Pull Request for Inventory Update
uses: peter-evans/create-pull-request@v8
with:
branch: bot/v2-ai-sync
base: develop
title: "V2 Data: AI Curator Sync"
commit-message: "chore: update inventory AI analysis [skip ci]"
labels: "v2-data, ai-curator"
- name: Commit and Push AI Analysis Updates
run: |
git config --global user.name "Nubenetes Bot"
git config --global user.email "bot@nubenetes.com"
git add data/inventory.yaml
if git diff --staged --quiet; then
echo "No changes in AI analysis to commit."
else
git commit -m "chore: update inventory AI analysis [skip ci]"
git push origin develop
fi
- name: Persist Incremental Inventory to Cache
if: always()
+11 -13
View File
@@ -72,19 +72,17 @@ jobs:
export PYTHONPATH=$PYTHONPATH:.
python src/v2_video_portal.py
- name: Create Pull Request for Video Hub Update
uses: peter-evans/create-pull-request@v8
with:
branch: bot/v2-video-sync
base: develop
title: "V2 Content: Video Hub Enrichment Sync"
commit-message: "docs: update Video Hub with high-fidelity metadata [skip ci]"
labels: "v2-content, video-hub"
body: |
Automated update of the V2 Video Hub.
- Robust metadata extraction (yt-dlp + transcripts)
- AI-synthesized technical summaries
- Format-compliant Markdown rendering
- name: Commit and Push Video Hub Updates
run: |
git config --global user.name "Nubenetes Bot"
git config --global user.email "bot@nubenetes.com"
git add data/inventory.yaml v2-docs/videos.md
if git diff --staged --quiet; then
echo "No automated changes to commit."
else
git commit -m "docs: update Video Hub with high-fidelity metadata [skip ci]"
git push origin develop
fi
- name: Persist Incremental Inventory Cache
if: always()
+21 -32
View File
@@ -82,39 +82,28 @@ jobs:
python -m src.readme_updater
python -m src.safety_readme
- name: Create Pull Request for V2 Elite Update
id: cpr
uses: peter-evans/create-pull-request@v8
- name: Commit and Push V2 Elite Updates
run: |
git config --global user.name "Nubenetes Bot"
git config --global user.email "bot@nubenetes.com"
git add -A
if git diff --staged --quiet; then
echo "No automated changes to commit."
else
git commit -m "feat: sync V2 elite curated edition and README metrics [skip ci]"
git push origin develop
fi
- name: Upload Architecture and Decision Logs
if: always()
uses: actions/upload-artifact@v4
with:
branch: bot/v2-elite-sync
base: develop
title: "V2 Elite: Agentic Optimization Sync (2026)"
body-path: pr_description.md
commit-message: "feat: sync V2 elite curated edition and README metrics [skip ci]"
labels: "v2-elite, agentic-sync"
- name: Post Supplementary Architecture Audit (Comment)
if: steps.cpr.outputs.pull-request-number != ''
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_NUMBER: ${{ steps.cpr.outputs.pull-request-number }}
run: |
if [ -f v2_file_audit.md ]; then
gh pr comment $PR_NUMBER --body-file v2_file_audit.md
fi
- name: Post Elite Decision Matrix (Comment)
if: steps.cpr.outputs.pull-request-number != ''
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_NUMBER: ${{ steps.cpr.outputs.pull-request-number }}
run: |
if [ -f v2_decision_matrix.md ]; then
split -b 60000 v2_decision_matrix.md matrix_part_
for part in matrix_part_*; do
gh pr comment $PR_NUMBER --body-file $part
done
fi
name: v2-agentic-logs
path: |
v2_file_audit.md
v2_decision_matrix.md
v2_safety_report.md
if-no-files-found: ignore
- name: Persist Incremental Inventory to Cache
if: always()
+29
View File
@@ -5,6 +5,35 @@ 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.1.8]](https://github.com/nubenetes/awesome-kubernetes/releases/tag/v2.1.8) - 2026-05-25
### Fixed
- **Configuration Integrity**: Fixed a YAML syntax error in `mkdocs.yml` (corrupted trailing line) that was causing GitHub Pages deployment failures.
## [[2.1.7]](https://github.com/nubenetes/awesome-kubernetes/releases/tag/v2.1.7) - 2026-05-25
### Changed
- **Visual Identity (Ultra-Visible Favicon)**: Replaced the complex favicon with an ultra-minimalist, high-contrast design (Cyan "N" on dark background) to ensure maximum visibility in browser tabs, following the design patterns of X, GitHub, and LinkedIn.
- **Index Branding Restoration**: Reverted the header image on the V2 index page to the "Gemini construction car" (now standardized as `hero-car.png`) to maintain the project's established visual impact while keeping a separate, cleaner icon for navigation tabs.
## [[2.1.6]](https://github.com/nubenetes/awesome-kubernetes/releases/tag/v2.1.6) - 2026-05-25
### Changed
- **Visual Identity (Custom Logo)**: Replaced the generic car icon with a custom-engineered minimalist logo ("Nubenetes Nano Logo"). The new design features a high-contrast Cyber Cloud vehicle with Kubernetes helm wheels, ensuring superior perception and brand recognition as a favicon.
- **Asset Optimization**: Standardized the new logo as an SVG source and a 256x256 transparent PNG for cross-platform clarity.
## [[2.1.5]](https://github.com/nubenetes/awesome-kubernetes/releases/tag/v2.1.5) - 2026-05-25
### Changed
- **Automated Workflow Optimization**: Refactored V2 ecosystem workflows (Metadata, AI Curator, Video Hub, and Publisher) to utilize direct git push to the `develop` branch instead of creating redundant Pull Requests. This eliminates manual overhead and confusion while ensuring derived content is seamlessly synchronized using `[skip ci]` flags.
- **Workflow Observability**: Integrated GitHub Artifacts for automated architecture audits and decision matrices, replacing redundant PR comments.
## [[2.1.4]](https://github.com/nubenetes/awesome-kubernetes/releases/tag/v2.1.4) - 2026-05-25
### Added
- **Leading AI Channels Mosaic**: Expanded the visual branding mosaic in V1 and V2 portals to include the official YouTube channels for **Google Gemini**, **Google DeepMind**, **Anthropic**, **Microsoft Copilot**, **OpenAI**, and **Meta AI**.
- **Visual Asset Integration**: Optimized and integrated high-resolution logos for the new AI channels to maintain high-density visual standards.
## [[2.1.3]](https://github.com/nubenetes/awesome-kubernetes/releases/tag/v2.1.3) - 2026-05-25
### Fixed
+8 -5
View File
@@ -245,11 +245,14 @@ To maintain the integrity of the archive and ensure the AI agents operate correc
1. **Branch Hierarchy**:
* `master`: Read-only for contributors/bots. Restricted to repository owner only.
* `develop`: The only valid target for Pull Requests.
2. **Pull Request Policy**:
* AI agents MUST always target `develop`.
* Manual contributions (human PRs) targeting `master` must be automatically or manually redirected to `develop`.
3. **Owner-Only Merges**: Only the repository owner has the authority to merge `develop` into `master` after verifying the visual health dashboard and metrics.
* `develop`: The only valid target for direct AI commits and Pull Requests.
2. **Strict Pull Request Policy (No Manual Merges)**:
* AI agents MUST always target `develop` for their work.
* AI agents MUST NEVER perform manual CLI merges (e.g., `git merge develop`) into `master` or `main`.
* To promote changes to `master`, AI agents MUST open a formal Pull Request from `develop` to `master` (e.g., using `gh pr create`) and **STOP**, waiting for the repository owner to review and merge via the GitHub UI. This ensures CI/CD workflows run correctly.
3. **Owner-Only Merges & Tagging**:
* Only the repository owner has the authority to merge `develop` into `master` after verifying the visual health dashboard and metrics.
* Creation of version tags (`git tag`) MUST only occur AFTER the PR has been successfully merged into `master` by the owner.
## 📝 README Synchronization & Maintenance Protocols
+8 -8
View File
@@ -138,9 +138,9 @@ Additionally, as of May 2026, Nubenetes has reached the **Platinum Operational T
<!-- HEART_STATS_START -->
| Metric | Value |
| :--- | :--- |
| **Total Technical Resources (Links)** | **17986+** |
| **Total Technical Resources (Links)** | **17992+** |
| **Specialized MD Pages** | **161** |
| **Total Commits** | **5440+** |
| **Total Commits** | **5468+** |
| **Primary AI Engine** | **Google Gemini (Agentic)** |
<!-- HEART_STATS_END -->
@@ -178,7 +178,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 | 1881 | 7,768 | **Agentic AI Surge** (May 2026 Inception) |
| 9 | 2026 | 1909 | 7,884 | **Agentic AI Surge** (May 2026 Inception) |
<!-- ANNUAL_GROWTH_END -->
<!-- ANNUAL_CHART_START -->
@@ -194,8 +194,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 --> 9000
bar [1445, 586, 8449, 2193, 1660, 123, 218, 20, 7768]
bar [350, 142, 2046, 531, 402, 30, 53, 5, 1881]
bar [1445, 586, 8449, 2193, 1660, 123, 218, 20, 7884]
bar [350, 142, 2046, 531, 402, 30, 53, 5, 1909]
```
<!-- ANNUAL_CHART_END -->
@@ -204,7 +204,7 @@ xychart-beta
| Month | Commits | Est. New Refs | Status |
| :--- | :---: | :---: | :--- |
| 2026-04 | 25 | 103 | Active Curation |
| 2026-05 | 1856 | 7,665 | **Agentic Inception (Gemini Era)** |
| 2026-05 | 1884 | 7,780 | **Agentic Inception (Gemini Era)** |
<!-- MONTHLY_SURGE_END -->
### 2.4. Content Distribution and Semantic Clustering
@@ -217,7 +217,7 @@ This chart shows the high-level distribution across the primary domains of Cloud
<!-- PILLAR_CHART_START -->
```mermaid
pie title Nubenetes Major Ecosystem Pillars
"Specialized Topics" : 3586
"Specialized Topics" : 3592
"Kubernetes Ecosystem" : 3500
"Developer Ecosystem" : 3000
"Public/Private Cloud" : 2500
@@ -238,7 +238,7 @@ Reflecting Nubenetes' mission of global access while maintaining technical Engli
<!-- SUB_ECO_CHART_START -->
```mermaid
pie title Linguistic Diversity (Global Access)
"English" : 16187
"English" : 16192
"Spanish" : 1079
"French" : 179
"Others" : 539
+66
View File
@@ -282250,6 +282250,72 @@ https://www.youtube.com/@googlecloudtech:
- docs/index.md
v2_locations:
- index.md
https://www.youtube.com/@GoogleGemini:
content_hash: ""
description: Official channel for Google Gemini, focusing on the latest advancements and applications of Gemini AI models.
health_score: 100.0
last_checked: 0.0
status: online
title: Google Gemini
v1_locations:
- docs/index.md
v2_locations:
- index.md
https://www.youtube.com/@googledeepmind:
content_hash: ""
description: Official channel for Google DeepMind, showcasing research and breakthroughs in artificial intelligence.
health_score: 100.0
last_checked: 0.0
status: online
title: Google DeepMind
v1_locations:
- docs/index.md
v2_locations:
- index.md
https://www.youtube.com/@anthropic-ai:
content_hash: ""
description: Official channel for Anthropic, focusing on AI safety and the development of Claude AI.
health_score: 100.0
last_checked: 0.0
status: online
title: Anthropic
v1_locations:
- docs/index.md
v2_locations:
- index.md
https://www.youtube.com/@Microsoft.Copilot:
content_hash: ""
description: Official channel for Microsoft Copilot, highlighting AI-powered productivity tools and features.
health_score: 100.0
last_checked: 0.0
status: online
title: Microsoft Copilot
v1_locations:
- docs/index.md
v2_locations:
- index.md
https://www.youtube.com/OpenAI:
content_hash: ""
description: Official channel for OpenAI, the research and deployment company behind GPT-4 and ChatGPT.
health_score: 100.0
last_checked: 0.0
status: online
title: OpenAI
v1_locations:
- docs/index.md
v2_locations:
- index.md
https://www.youtube.com/@aiatmeta:
content_hash: ""
description: Official channel for Meta AI, sharing news and research on Meta's artificial intelligence initiatives.
health_score: 100.0
last_checked: 0.0
status: online
title: Meta AI
v1_locations:
- docs/index.md
v2_locations:
- index.md
https://www.youtube.com/kubernetescommunity:
content_hash: 5654ed1b031bb525606fadef419e20044ee5e80a0915535c7ae4e75f0c909d9d
health_score: 100.0
Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 53 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

+46
View File
@@ -0,0 +1,46 @@
<svg width="512" height="512" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="cyberGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#00E5FF;stop-opacity:1" />
<stop offset="100%" style="stop-color:#00838F;stop-opacity:1" />
</linearGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="5" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<!-- Futuristic Cloud-Vehicle Base -->
<path d="M100 350 Q 50 350 50 300 Q 50 250 100 250 L 120 200 Q 150 120 250 120 Q 350 120 380 200 L 400 250 Q 450 250 450 300 Q 450 350 400 350 Z"
fill="url(#cyberGradient)"
filter="url(#glow)"/>
<!-- Kubernetes Steering Wheel as Front Wheel -->
<g transform="translate(140, 350) scale(0.6)">
<circle cx="0" cy="0" r="80" fill="#0D1117" stroke="#FFFFFF" stroke-width="15"/>
<g stroke="#FFFFFF" stroke-width="12" stroke-linecap="round">
<line x1="0" y1="-80" x2="0" y2="80" transform="rotate(0)"/>
<line x1="0" y1="-80" x2="0" y2="80" transform="rotate(51.4)"/>
<line x1="0" y1="-80" x2="0" y2="80" transform="rotate(102.8)"/>
<line x1="0" y1="-80" x2="0" y2="80" transform="rotate(154.2)"/>
</g>
<circle cx="0" cy="0" r="25" fill="#FFFFFF"/>
</g>
<!-- Kubernetes Steering Wheel as Rear Wheel -->
<g transform="translate(360, 350) scale(0.6)">
<circle cx="0" cy="0" r="80" fill="#0D1117" stroke="#FFFFFF" stroke-width="15"/>
<g stroke="#FFFFFF" stroke-width="12" stroke-linecap="round">
<line x1="0" y1="-80" x2="0" y2="80" transform="rotate(0)"/>
<line x1="0" y1="-80" x2="0" y2="80" transform="rotate(51.4)"/>
<line x1="0" y1="-80" x2="0" y2="80" transform="rotate(102.8)"/>
<line x1="0" y1="-80" x2="0" y2="80" transform="rotate(154.2)"/>
</g>
<circle cx="0" cy="0" r="25" fill="#FFFFFF"/>
</g>
<!-- "N" Tech Detail -->
<text x="220" y="280" font-family="Arial, sans-serif" font-size="100" font-weight="bold" fill="#0D1117" opacity="0.8">N</text>
</svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

+10
View File
@@ -0,0 +1,10 @@
<svg width="256" height="256" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
<!-- Solid High-Contrast Background (LinkedIn/GitHub Style) -->
<rect width="256" height="256" rx="48" fill="#0D1117"/>
<!-- Bold Stylized "N" (Nubenetes) with Cyan Accent -->
<path d="M70 190V66L140 135V66H186V190L116 121V190H70Z" fill="#00E5FF"/>
<!-- Subtle Cloud Curve at the bottom for Cloud Context -->
<path d="M116 190H186V170C186 160 178 152 168 152H134C124 152 116 160 116 170V190Z" fill="#00E5FF" opacity="0.3"/>
</svg>

After

Width:  |  Height:  |  Size: 537 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

+1 -1
View File
@@ -351,7 +351,7 @@ A curated list of awesome references collected since 2018. Microservices archite
[![london IAC](images/londonIAC.jpg){: style="width:7%"}](https://www.youtube.com/c/LondonIAC) [![techworld nana](images/techworld_nana.jpg){: style="width:7%"}](https://www.youtube.com/c/TechWorldwithNana) [![honeypot](images/honeypot.jpg){: style="width:7%"}](https://www.youtube.com/c/Honeypotio) [![Ali Spittel](images/aspittel.jpg){: style="width:7%"}](https://www.youtube.com/c/AliSpittelDev) [![thomas maurer](images/thomas_maurer.jpg){: style="width:7%"}](https://www.youtube.com/c/ThomasMaurerCloud) [![freecodecamp](images/freecodecamp.jpg){: style="width:7%"}](https://www.youtube.com/c/Freecodecamp) [![thenewstack](images/thenewstack.jpg){: style="width:7%"}](https://www.youtube.com/c/TheNewStack) [![argocd project](images/argoproj.jpg){: style="width:7%"}](https://www.youtube.com/channel/UCOvYmppcbOPm1viN6ust3lA) [![fluxcd](images/fluxcd.jpg){: style="width:7%"}](https://www.youtube.com/channel/UCoZxt-YMhGHb20ZkvcCc5KA) [![container days](images/containerdays.jpg){: style="width:7%"}](https://www.youtube.com/c/ContainerDays) [![the cloud girl](images/thecloudgirl.jpg){: style="width:7%"}](https://www.youtube.com/c/priyankavergadia)<br/>
[![ContinuousDeliveryFoundation](images/ContinuousDeliveryFoundation.jpg){: style="width:7%"}](https://www.youtube.com/c/ContinuousDeliveryFoundation) [![tina huang](images/tinahuang.jpg){: style="width:7%"}](https://www.youtube.com/c/TinaHuang1) [![azure devops](images/azure_devops_youtube.jpg){: style="width:7%"}](https://www.youtube.com/c/AzureDevOps) [![azure cloud native](images/azure_cloud_native.jpg){: style="width:7%"}](https://www.youtube.com/channel/UC2Pk9GcHhlVV0R9CQIU6gLw) [![alibaba cloud](images/alibaba_cloud.jpg){: style="width:7%"}](https://www.youtube.com/c/AlibabaCloud) [![linode cloud](images/linode_cloud.jpg){: style="width:7%"}](https://www.youtube.com/c/linode) [![gaia-x](images/gaia_x.jpg){: style="width:7%"}](https://www.youtube.com/channel/UCB5WMc2FfrxKzfd7XIODoMw) [![gps](images/gps.jpg){: style="width:7%"}](https://www.youtube.com/c/MadeByGPS) [![keptn](images/keptn_logo.jpg){: style="width:7%"}](https://www.youtube.com/c/keptn) [![anais urlichs](images/anais_urlichs.jpg){: style="width:7%"}](https://www.youtube.com/c/AnaisUrlichs) [![the digital life](images/the_digital_life.jpg){: style="width:7%"}](https://www.youtube.com/c/TheDigitalLifeTech)<br/>
[![Azure Terraformer](images/azure-terraformer.jpg){: style="width:7%"}](https://www.youtube.com/@azure-terraformer) [![Ned in the Cloud](images/nedinthecloud.jpg){: style="width:7%"}](https://www.youtube.com/@NedintheCloud) [![netbox](images/netboxlabs_logo.jpg){: style="width:7%"}](https://www.youtube.com/@NetBoxLabs) [![Tech with Helen](images/techwithhelen.jpg){: style="width:7%"}](https://www.youtube.com/@techwithhelen) [![bytebytego](images/bytebytego.jpg){: style="width:7%"}](https://www.youtube.com/@ByteByteGo) [![dotcsv](images/dotcsv.jpg){: style="width:7%"}](https://www.youtube.com/@DotCSV) [![midulive](images/midulive.jpg){: style="width:7%"}](https://www.youtube.com/@midulive) [![returngis](images/returngis_logo.jpg){: style="width:7%"}](https://www.youtube.com/@returngis) [![kubefm](images/kubefm_logo.jpg){: style="width:7%"}](https://www.youtube.com/@kubefm) [![Olena Kutsenko](images/olena_kutsenko.jpg){: style="width:7%"}](https://www.youtube.com/@OlenaKutsenko) [![mouredev](images/mouredev.jpg){: style="width:7%"}](https://www.youtube.com/@mouredev)<br/>
[![CloudNativeMadrid](images/cloudnativemadrid_logo.jpg){: style="width:7%"}](https://www.youtube.com/@CloudNativeMadrid) [![kyndryl](images/kyndryl_logo.jpg){: style="width:7%"}](https://www.youtube.com/@kyndryl) [![itopstalk](images/itopstalk_logo.png){: style="width:7%"}](https://www.youtube.com/@ITOpsTalk) [![gcp videos](images/gcp_logo_v2.png){: style="width:7%"}](https://www.youtube.com/@googlecloudtech)
[![CloudNativeMadrid](images/cloudnativemadrid_logo.jpg){: style="width:7%"}](https://www.youtube.com/@CloudNativeMadrid) [![kyndryl](images/kyndryl_logo.jpg){: style="width:7%"}](https://www.youtube.com/@kyndryl) [![itopstalk](images/itopstalk_logo.png){: style="width:7%"}](https://www.youtube.com/@ITOpsTalk) [![gcp videos](images/gcp_logo_v2.png){: style="width:7%"}](https://www.youtube.com/@googlecloudtech) [![Google Gemini](images/google_gemini_logo.png){: style="width:7%"}](https://www.youtube.com/@GoogleGemini) [![Google DeepMind](images/google_deepmind_logo.png){: style="width:7%"}](https://www.youtube.com/@googledeepmind) [![Anthropic](images/anthropic_logo.png){: style="width:7%"}](https://www.youtube.com/@anthropic-ai) [![Microsoft Copilot](images/microsoft_copilot_logo.png){: style="width:7%"}](https://www.youtube.com/@Microsoft.Copilot) [![OpenAI](images/openai_logo.png){: style="width:7%"}](https://www.youtube.com/OpenAI) [![Meta AI](images/meta_ai_logo.png){: style="width:7%"}](https://www.youtube.com/@aiatmeta)
</center>
+2 -2
View File
@@ -11,7 +11,7 @@ edit_uri: ""
theme:
name: material
prev_next_buttons_location: both
favicon: images/favicon-modern.png
favicon: images/favicon-ultra.png
icon:
logo: logo
repo: fontawesome/brands/github
@@ -56,7 +56,7 @@ plugins:
background_color: "#263238"
font_family: "Inter"
custom_dir: "docs/images/"
logo: favicon-car-modern.png
logo: favicon-ultra.png
extra_css:
- static/extra.css
extra_javascript:
+1 -1
View File
@@ -747,7 +747,7 @@ class V2VisionEngine:
index_md = (
"# Nubenetes Elite Portal (V2) | Awesome Kubernetes & Cloud [![Awesome](https://cdn.jsdelivr.net/gh/sindresorhus/awesome@d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)\n\n"
"<center markdown=\"1\">\n"
"[![Kubernetes Logo](images/kubernetes_logo.png)](https://kubernetes.io) &nbsp; [![Nubenetes Introduction](images/favicon-car-modern.png)](./introduction.md)\n"
"[![Kubernetes Logo](images/kubernetes_logo.png)](https://kubernetes.io) &nbsp; [![Nubenetes Introduction](images/hero-car.png)](./introduction.md)\n"
"</center>\n\n"
"\"I do not believe you can do today's job with yesterday's methods and be in business tomorrow\" ([Horatio Nelson Jackson](https://en.wikipedia.org/wiki/Horatio_Nelson_Jackson))\n"
"<center markdown=\"1\">\n\n"
+2 -2
View File
@@ -1,7 +1,7 @@
# Nubenetes Elite Portal (V2) | Awesome Kubernetes & Cloud [![Awesome](https://cdn.jsdelivr.net/gh/sindresorhus/awesome@d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)
<center markdown="1">
[![Kubernetes Logo](images/kubernetes_logo.png)](https://kubernetes.io) &nbsp; [![Nubenetes Introduction](images/favicon-car-modern.png)](./introduction.md)
[![Kubernetes Logo](images/kubernetes_logo.png)](https://kubernetes.io) &nbsp; [![Nubenetes Introduction](images/hero-car.png)](./introduction.md)
</center>
"I do not believe you can do today's job with yesterday's methods and be in business tomorrow" ([Horatio Nelson Jackson](https://en.wikipedia.org/wiki/Horatio_Nelson_Jackson))
@@ -40,7 +40,7 @@
[![london IAC](images/londonIAC.jpg){: style="width:7%"}](https://www.youtube.com/c/LondonIAC) [![techworld nana](images/techworld_nana.jpg){: style="width:7%"}](https://www.youtube.com/c/TechWorldwithNana) [![honeypot](images/honeypot.jpg){: style="width:7%"}](https://www.youtube.com/c/Honeypotio) [![Ali Spittel](images/aspittel.jpg){: style="width:7%"}](https://www.youtube.com/c/AliSpittelDev) [![thomas maurer](images/thomas_maurer.jpg){: style="width:7%"}](https://www.youtube.com/c/ThomasMaurerCloud) [![freecodecamp](images/freecodecamp.jpg){: style="width:7%"}](https://www.youtube.com/c/Freecodecamp) [![thenewstack](images/thenewstack.jpg){: style="width:7%"}](https://www.youtube.com/c/TheNewStack) [![argocd project](images/argoproj.jpg){: style="width:7%"}](https://www.youtube.com/channel/UCOvYmppcbOPm1viN6ust3lA) [![fluxcd](images/fluxcd.jpg){: style="width:7%"}](https://www.youtube.com/channel/UCoZxt-YMhGHb20ZkvcCc5KA) [![container days](images/containerdays.jpg){: style="width:7%"}](https://www.youtube.com/c/ContainerDays) [![the cloud girl](images/thecloudgirl.jpg){: style="width:7%"}](https://www.youtube.com/c/priyankavergadia)<br/>
[![ContinuousDeliveryFoundation](images/ContinuousDeliveryFoundation.jpg){: style="width:7%"}](https://www.youtube.com/c/ContinuousDeliveryFoundation) [![tina huang](images/tinahuang.jpg){: style="width:7%"}](https://www.youtube.com/c/TinaHuang1) [![azure devops](images/azure_devops_youtube.jpg){: style="width:7%"}](https://www.youtube.com/c/AzureDevOps) [![azure cloud native](images/azure_cloud_native.jpg){: style="width:7%"}](https://www.youtube.com/channel/UC2Pk9GcHhlVV0R9CQIU6gLw) [![alibaba cloud](images/alibaba_cloud.jpg){: style="width:7%"}](https://www.youtube.com/c/AlibabaCloud) [![linode cloud](images/linode_cloud.jpg){: style="width:7%"}](https://www.youtube.com/c/linode) [![gaia-x](images/gaia_x.jpg){: style="width:7%"}](https://www.youtube.com/channel/UCB5WMc2FfrxKzfd7XIODoMw) [![gps](images/gps.jpg){: style="width:7%"}](https://www.youtube.com/c/MadeByGPS) [![keptn](images/keptn_logo.jpg){: style="width:7%"}](https://www.youtube.com/c/keptn) [![anais urlichs](images/anais_urlichs.jpg){: style="width:7%"}](https://www.youtube.com/c/AnaisUrlichs) [![the digital life](images/the_digital_life.jpg){: style="width:7%"}](https://www.youtube.com/c/TheDigitalLifeTech)<br/>
[![Azure Terraformer](images/azure-terraformer.jpg){: style="width:7%"}](https://www.youtube.com/@azure-terraformer) [![Ned in the Cloud](images/nedinthecloud.jpg){: style="width:7%"}](https://www.youtube.com/@NedintheCloud) [![netbox](images/netboxlabs_logo.jpg){: style="width:7%"}](https://www.youtube.com/@NetBoxLabs) [![Tech with Helen](images/techwithhelen.jpg){: style="width:7%"}](https://www.youtube.com/@techwithhelen) [![bytebytego](images/bytebytego.jpg){: style="width:7%"}](https://www.youtube.com/@ByteByteGo) [![dotcsv](images/dotcsv.jpg){: style="width:7%"}](https://www.youtube.com/@DotCSV) [![midulive](images/midulive.jpg){: style="width:7%"}](https://www.youtube.com/@midulive) [![returngis](images/returngis_logo.jpg){: style="width:7%"}](https://www.youtube.com/@returngis) [![kubefm](images/kubefm_logo.jpg){: style="width:7%"}](https://www.youtube.com/@kubefm) [![Olena Kutsenko](images/olena_kutsenko.jpg){: style="width:7%"}](https://www.youtube.com/@OlenaKutsenko) [![mouredev](images/mouredev.jpg){: style="width:7%"}](https://www.youtube.com/@mouredev)<br/>
[![CloudNativeMadrid](images/cloudnativemadrid_logo.jpg){: style="width:7%"}](https://www.youtube.com/@CloudNativeMadrid) [![kyndryl](images/kyndryl_logo.jpg){: style="width:7%"}](https://www.youtube.com/@kyndryl) [![itopstalk](images/itopstalk_logo.png){: style="width:7%"}](https://www.youtube.com/@ITOpsTalk) [![gcp videos](images/gcp_logo_v2.png){: style="width:7%"}](https://www.youtube.com/@googlecloudtech)
[![CloudNativeMadrid](images/cloudnativemadrid_logo.jpg){: style="width:7%"}](https://www.youtube.com/@CloudNativeMadrid) [![kyndryl](images/kyndryl_logo.jpg){: style="width:7%"}](https://www.youtube.com/@kyndryl) [![itopstalk](images/itopstalk_logo.png){: style="width:7%"}](https://www.youtube.com/@ITOpsTalk) [![gcp videos](images/gcp_logo_v2.png){: style="width:7%"}](https://www.youtube.com/@googlecloudtech) [![Google Gemini](images/google_gemini_logo.png){: style="width:7%"}](https://www.youtube.com/@GoogleGemini) [![Google DeepMind](images/google_deepmind_logo.png){: style="width:7%"}](https://www.youtube.com/@googledeepmind) [![Anthropic](images/anthropic_logo.png){: style="width:7%"}](https://www.youtube.com/@anthropic-ai) [![Microsoft Copilot](images/microsoft_copilot_logo.png){: style="width:7%"}](https://www.youtube.com/@Microsoft.Copilot) [![OpenAI](images/openai_logo.png){: style="width:7%"}](https://www.youtube.com/OpenAI) [![Meta AI](images/meta_ai_logo.png){: style="width:7%"}](https://www.youtube.com/@aiatmeta)
</center>
## The Agentic Pulse
+2 -2
View File
@@ -13,7 +13,7 @@ edit_uri: "edit/master/v2-docs/"
theme:
name: material
language: en
favicon: images/favicon-car-modern.png
favicon: images/favicon-ultra.png
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
@@ -56,7 +56,7 @@ theme:
background_color: "#263238"
font_family: "Inter"
custom_dir: "docs/images/"
logo: favicon-car-modern.png
logo: favicon-ultra.png
extra:
social: