From 1a69f53a1630776295cbc3c94c308d709705fab8 Mon Sep 17 00:00:00 2001 From: Nubenetes Bot Date: Wed, 27 May 2026 23:26:28 +0200 Subject: [PATCH] docs: modularize Video Hub, fix anchors/links, and automate cron schedule [skip ci] --- .github/workflows/03.3.agentic_v2_videos.yml | 2 + CHANGELOG.md | 7 + src/agentic_curator.py | 6 + src/enrich_videos.py | 3 +- src/v2_video_portal.py | 204 +++++---- v2-docs/index.md | 2 +- v2-docs/videos.md | 410 ------------------- v2-docs/videos/ai-agents.md | 97 +++++ v2-docs/videos/cloud-native.md | 234 +++++++++++ v2-docs/videos/devops-iac.md | 71 ++++ v2-docs/videos/fundamentals.md | 42 ++ v2-docs/videos/index.md | 9 + v2-mkdocs.yml | 7 +- 13 files changed, 599 insertions(+), 495 deletions(-) delete mode 100644 v2-docs/videos.md create mode 100644 v2-docs/videos/ai-agents.md create mode 100644 v2-docs/videos/cloud-native.md create mode 100644 v2-docs/videos/devops-iac.md create mode 100644 v2-docs/videos/fundamentals.md create mode 100644 v2-docs/videos/index.md diff --git a/.github/workflows/03.3.agentic_v2_videos.yml b/.github/workflows/03.3.agentic_v2_videos.yml index 1fe58ee1..2c3c3903 100644 --- a/.github/workflows/03.3.agentic_v2_videos.yml +++ b/.github/workflows/03.3.agentic_v2_videos.yml @@ -8,6 +8,8 @@ on: - 'src/v2_video_portal.py' - 'src/enrich_videos.py' - 'data/inventory.yaml' + schedule: + - cron: '0 6 1 * *' # Runs on the 1st of every month at 06:00 UTC (every ~30 days) workflow_dispatch: inputs: restore_cache: diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bf82676..d22d5eb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ 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.3.19]](https://github.com/nubenetes/awesome-kubernetes/releases/tag/v2.3.19) - 2026-05-27 + +### Added +- **Modularized Video Hub**: Replaced the legacy monolithic `v2-docs/videos.md` with a structured, multi-page directory (`v2-docs/videos/`) separating video resources into AI Agents, DevOps/IaC/SRE, Cloud Native Core, and Fundamentals learning paths. +- **Robust Slugification and Header Cleaning**: Upgraded the slugification and header normalization logic to ensure 100% compatibility with MkDocs anchor resolution, stripping commas, parentheses, slashes, and special symbols to prevent broken internal links. +- **Monthly Video Automation Schedule**: Configured a monthly cron trigger (`0 6 1 * *`) in the V2 Video Hub Builder GitHub action to automate video curation and portal updates. + ## [[2.3.18]](https://github.com/nubenetes/awesome-kubernetes/releases/tag/v2.3.18) - 2026-05-27 ### Added diff --git a/src/agentic_curator.py b/src/agentic_curator.py index 494c70fd..f727bf1c 100644 --- a/src/agentic_curator.py +++ b/src/agentic_curator.py @@ -167,6 +167,12 @@ async def evaluate_extracted_assets(raw_assets: List[Dict]) -> Dict[str, Dict]: "source_provenance": d["asset"].get("source_type", "Social"), "social_preview_url": d["rich_meta"].get("og_image", ""), "category": primary_cat, "status": "online", "last_checked": datetime.now().timestamp(), **d["gh_meta"] } + if "youtube.com" in url or "youtu.be" in url: + title_desc = f"{data['title']} {data['desc']}".lower() + keywords = ["agent", "mcp", "terraform", "devops", "kubernetes", "sre", "mlops", "copilot", "gemini", "claude", "openai", "autogen", "crewai"] + if any(k in title_desc for k in keywords): + eval_data["is_featured_video"] = True + eval_data["is_enriched"] = False curator.inventory[norm_url] = eval_data evaluations[url] = {"status": "INCLUDED", **eval_data} else: evaluations[url] = {"status": "FILTERED"} diff --git a/src/enrich_videos.py b/src/enrich_videos.py index 4f3d7fa0..1bb32655 100644 --- a/src/enrich_videos.py +++ b/src/enrich_videos.py @@ -39,7 +39,8 @@ async def enrich_video_entry(url: str, entry: dict): 2. Identify the ACTUAL technical content based on the verified video metadata. 3. Generate a high-density architectural summary (2-3 sentences) explaining its specific value for a 2026 Cloud Native context. 4. DO NOT describe generic YouTube platform infrastructure unless the video is specifically about it. - 5. Select the primary technology (e.g., Kubernetes, Vitess, Istio) and a category from: [Fundamentals and Documentaries, Architecture and Cloud Strategy, Networking and Service Mesh, Infrastructure as Code, Observability and Monitoring, AI and Future Operations, Security and Compliance]. + 5. Crossover AI Agents Detection: Pay special attention to AI Agents & MCP, and how they integrate with Cloud Native (e.g. SRE with AI Agents, Kubernetes with AI Agents, IaC with Terraform and AI, DevOps with AI, MLOps with AI). If the video covers these topics, reflect it in the technology field. + 6. Select the primary technology (e.g., Kubernetes + AI Agents, IaC + Terraform + AI Agents, DevOps + AI Agents, SRE + AI Agents, MLOps + AI Agents, or standard core tech like Kubernetes, Istio) and a category from: [Fundamentals and Documentaries, Architecture and Cloud Strategy, Networking and Service Mesh, Infrastructure as Code, Observability and Monitoring, AI and Future Operations, Security and Compliance]. Return ONLY a JSON object: {{ diff --git a/src/v2_video_portal.py b/src/v2_video_portal.py index a6d7fa87..aacc116c 100644 --- a/src/v2_video_portal.py +++ b/src/v2_video_portal.py @@ -3,7 +3,20 @@ import os import re INVENTORY_PATH = "data/inventory.yaml" -V2_VIDEOS_PATH = "v2-docs/videos.md" +VIDEOS_DIR = "v2-docs/videos" + +def get_target_file(category, technology): + cat_lower = category.lower() + tech_lower = technology.lower() + + if "agent" in tech_lower or "mcp" in tech_lower or "ai and future operations" in cat_lower: + return "ai-agents.md", "AI Agents and MCP" + elif "infrastructure as code" in cat_lower or "security" in cat_lower or "observability" in cat_lower or "monitoring" in cat_lower or "devops" in tech_lower or "iac" in tech_lower or "sre" in tech_lower: + return "devops-iac.md", "DevOps, IaC, and SRE" + elif "fundamentals" in cat_lower: + return "fundamentals.md", "Fundamentals" + else: + return "cloud-native.md", "Cloud Native Core" def generate_v2_videos(): if not os.path.exists(INVENTORY_PATH): @@ -29,37 +42,27 @@ def generate_v2_videos(): print("No featured videos found in inventory.") return - # Logical category order following the O'Reilly learning flow - CATEGORY_ORDER = [ - "Fundamentals and Documentaries", - "Architecture and Cloud Strategy", - "Infrastructure as Code", - "Developer Productivity", - "Observability and Monitoring", - "Security and Compliance", - "AI and Future Operations" - ] + # Delete old videos.md if it exists + old_videos_file = "v2-docs/videos.md" + if os.path.exists(old_videos_file): + os.remove(old_videos_file) + print(f"Removed legacy {old_videos_file}") - def category_key(cat): - try: - return CATEGORY_ORDER.index(cat) - except ValueError: - return len(CATEGORY_ORDER) - - featured_videos.sort(key=lambda x: (category_key(x["category"]), x.get("video_order", 999))) + os.makedirs(VIDEOS_DIR, exist_ok=True) + # Helper functions def clean_header(text): - # MANDATE 30: No ampersands, no special characters - # Also remove the numeric prefix for the final display t = re.sub(r'^\d+\.\s*', '', text) t = t.replace("&", "and") - t = t.replace("(", "").replace(")", "") - return t + t = re.sub(r'[^a-zA-Z0-9\s-]', ' ', t) + t = re.sub(r'\s+', ' ', t) + return t.strip() def get_slug(text): - # Slug should include the numeric prefix to be unique and match TOC - t = text.replace("&", "and").replace("(", "").replace(")", "") - return t.lower().strip().replace(" ", "-").replace("/", "-").replace(".", "") + t = clean_header(text).lower() + t = re.sub(r'[^a-z0-9\s-]', '', t) + t = re.sub(r'[\s-]+', '-', t) + return t.strip('-') def is_spanish(title, summary): if "[SPANISH CONTENT]" in summary or "[SPANISH CONTENT]" in title: @@ -68,70 +71,63 @@ def generate_v2_videos(): return True return False - content = [ - "# 🎥 Nubenetes Elite Video Hub", - "", - "Welcome to the **Agentic Video Hub**. This section presents a logical, architectural journey through the Cloud Native landscape, from foundational documentaries to advanced AI operations.", - "", - "## Table of Contents", - "" - ] + # Group videos by target file + themed_videos = {} + for v in featured_videos: + filename, title = get_target_file(v["category"], v["technology"]) + if filename not in themed_videos: + themed_videos[filename] = {"title": title, "videos": []} + themed_videos[filename]["videos"].append(v) - categories = sorted(list(set(v["category"] for v in featured_videos)), key=category_key) - for idx, cat in enumerate(categories, 1): - clean_cat = clean_header(cat) - slug = get_slug(cat) - content.append(f"{idx}. [{clean_cat}](#{slug})") + # Generate each themed MD file + for filename, theme_info in themed_videos.items(): + theme_title = theme_info["title"] + videos = theme_info["videos"] + videos.sort(key=lambda x: x.get("video_order", 999)) - # Get unique technologies in this category, keeping their relative order based on video_order - cat_videos = [v for v in featured_videos if v["category"] == cat] - cat_videos.sort(key=lambda x: x.get("video_order", 999)) - seen_techs = [] - for v in cat_videos: + content = [ + f"# 🎥 {theme_title}", + "", + f"Welcome to the **{theme_title}** section of the V2 Video Hub. Explore curated high-density videos with architectural summaries.", + "", + "## Table of Contents", + "" + ] + + # Group by Technology for TOC + techs = [] + for v in videos: tech = v.get("technology", "Cloud Native") - if tech not in seen_techs: - seen_techs.append(tech) - for tech in seen_techs: - clean_tech = clean_header(f"{tech} ({cat})") - tech_slug = get_slug(f"{tech} ({cat})") - content.append(f" - [{clean_tech}](#{tech_slug})") + if tech not in techs: + techs.append(tech) - content.append("") + for idx, tech in enumerate(techs, 1): + clean_tech = clean_header(tech) + slug = get_slug(tech) + content.append(f"{idx}. [{clean_tech}](#{slug})") - for cat in categories: - clean_cat = clean_header(cat) - slug = get_slug(cat) - # Use standard headers (MkDocs generates anchors automatically) - content.append(f"## {clean_cat}") - - cat_videos = [v for v in featured_videos if v["category"] == cat] - cat_videos.sort(key=lambda x: x.get("video_order", 999)) - - # Group videos by technology - tech_groups = {} - tech_order = [] - for v in cat_videos: + content.append("") + + # Render Grouped Videos + grouped_by_tech = {} + for v in videos: tech = v.get("technology", "Cloud Native") - if tech not in tech_groups: - tech_groups[tech] = [] - tech_order.append(tech) - tech_groups[tech].append(v) - - for tech in tech_order: - clean_tech = clean_header(f"{tech} ({cat})") - tech_slug = get_slug(f"{tech} ({cat})") - content.append(f"### {clean_tech}") - - for v in tech_groups[tech]: - # Ensure summary is correctly indented for multiline blocks + if tech not in grouped_by_tech: + grouped_by_tech[tech] = [] + grouped_by_tech[tech].append(v) + + for tech in techs: + clean_tech = clean_header(tech) + content.append(f"## {clean_tech}") + content.append("") + + for v in grouped_by_tech[tech]: summary = v.get("summary", "").strip() indented_summary = summary.replace("\n", "\n ") - is_sp = is_spanish(v['title'], summary) lang_suffix = " [SPANISH CONTENT]" if is_sp else "" - - # Collapsible block per video for better flow - content.append(f"??? note \"🎬 {v['title']} | `{tech}{lang_suffix}`\"") + + content.append(f"??? note \"🎬 {v['title']}{lang_suffix}\"") content.append(f" !!! info \"Architectural Summary\"") content.append(f" {indented_summary}") content.append("") @@ -142,10 +138,54 @@ def generate_v2_videos(): content.append(' ') content.append("") - with open(V2_VIDEOS_PATH, "w") as f: - f.write("\n".join(content)) + filepath = os.path.join(VIDEOS_DIR, filename) + with open(filepath, "w") as f: + f.write("\n".join(content)) + print(f"Generated {filepath} with {len(videos)} videos.") - print(f"✅ Generated {V2_VIDEOS_PATH} with {len(featured_videos)} videos.") + # Generate Overview page + overview_content = [ + "# 🎥 Agentic Video Hub", + "", + "Welcome to the **Nubenetes Elite Video Hub**. Discover highly-curated architectural video resources organized into logical learning paths:", + "", + "### Learning Dimensions", + "- 🤖 [**AI Agents and MCP**](./ai-agents.md) — Dive into agentic architectures, tool integration, and Model Context Protocol setups.", + "- 🛠️ [**DevOps, IaC, and SRE**](./devops-iac.md) — Platform engineering, infrastructure automation with Terraform, SRE, and compliance workflows utilizing AI assistants.", + "- ☁️ [**Cloud Native Core**](./cloud-native.md) — Architectural strategies, Kubernetes operations, networking, and MLOps platforms.", + "- 🏁 [**Fundamentals**](./fundamentals.md) — Documentaries, foundational cloud native concepts, and core Strategy tutorials.", + "" + ] + with open(os.path.join(VIDEOS_DIR, "index.md"), "w") as f: + f.write("\n".join(overview_content)) + print(f"Generated {VIDEOS_DIR}/index.md") + + # Update MkDocs Nav + update_mkdocs_nav() + +def update_mkdocs_nav(): + mkdocs_path = "v2-mkdocs.yml" + if not os.path.exists(mkdocs_path): + return + with open(mkdocs_path, "r") as f: + content = f.read() + + # Match exact entry and replace with nested list + old_entry = '- "Agentic Video Hub": videos.md' + new_entry = """- "Agentic Video Hub": + - "Overview": videos/index.md + - "AI Agents and MCP": videos/ai-agents.md + - "DevOps, IaC, and SRE": videos/devops-iac.md + - "Cloud Native Core": videos/cloud-native.md + - "Fundamentals": videos/fundamentals.md""" + + if old_entry in content: + content = content.replace(old_entry, new_entry) + with open(mkdocs_path, "w") as f: + f.write(content) + print("Updated v2-mkdocs.yml navigation.") + else: + print("v2-mkdocs.yml navigation is already updated or entry not found.") if __name__ == "__main__": generate_v2_videos() diff --git a/v2-docs/index.md b/v2-docs/index.md index 9d5e692a..33e90bff 100644 --- a/v2-docs/index.md +++ b/v2-docs/index.md @@ -80,7 +80,7 @@ - **(N/A)** [**==blog.awsfundamentals.com: AWS S3 Sync - An Extensive Guide==**](https://awsfundamentals.com/blog/aws-s3-sync) 🌟🌟🌟🌟 ## Strategic Dimensions -- **[🎥 Agentic Video Hub (Architectural Summary)](./videos.md)** +- **[🎥 Agentic Video Hub (Architectural Summary)](./videos/index.md)** ### AI - **[AI Agents MCP](./ai-agents-mcp.md)** diff --git a/v2-docs/videos.md b/v2-docs/videos.md deleted file mode 100644 index d88a9f67..00000000 --- a/v2-docs/videos.md +++ /dev/null @@ -1,410 +0,0 @@ -# 🎥 Nubenetes Elite Video Hub - -Welcome to the **Agentic Video Hub**. This section presents a logical, architectural journey through the Cloud Native landscape, from foundational documentaries to advanced AI operations. - -## Table of Contents - -1. [Fundamentals and Documentaries](#fundamentals-and-documentaries) - - [Kubernetes Fundamentals and Documentaries](#kubernetes-fundamentals-and-documentaries) - - [Jenkins Fundamentals and Documentaries](#jenkins-fundamentals-and-documentaries) -2. [Architecture and Cloud Strategy](#architecture-and-cloud-strategy) - - [Kubernetes Architecture and Cloud Strategy](#kubernetes-architecture-and-cloud-strategy) - - [Red Hat OpenShift Architecture and Cloud Strategy](#red-hat-openshift-architecture-and-cloud-strategy) - - [Platform Engineering Architecture and Cloud Strategy](#platform-engineering-architecture-and-cloud-strategy) - - [Ruby on Rails Architecture and Cloud Strategy](#ruby-on-rails-architecture-and-cloud-strategy) - - [Ruby on Rails / Hotwire Architecture and Cloud Strategy](#ruby-on-rails---hotwire-architecture-and-cloud-strategy) - - [Portworx Architecture and Cloud Strategy](#portworx-architecture-and-cloud-strategy) - - [HashiCorp Stack Terraform, Vault, Consul, Boundary Architecture and Cloud Strategy](#hashicorp-stack-terraform,-vault,-consul,-boundary-architecture-and-cloud-strategy) - - [Modular Monoliths Architecture and Cloud Strategy](#modular-monoliths-architecture-and-cloud-strategy) - - [Git Architecture and Cloud Strategy](#git-architecture-and-cloud-strategy) - - [Azure DevOps and GitHub Actions Architecture and Cloud Strategy](#azure-devops-and-github-actions-architecture-and-cloud-strategy) - - [Distributed Systems Strategy Architecture and Cloud Strategy](#distributed-systems-strategy-architecture-and-cloud-strategy) - - [FinOps Architecture and Cloud Strategy](#finops-architecture-and-cloud-strategy) - - [GitOps Architecture and Cloud Strategy](#gitops-architecture-and-cloud-strategy) - - [Hosted Control Planes Architecture and Cloud Strategy](#hosted-control-planes-architecture-and-cloud-strategy) - - [Azure Verified Modules AVM Architecture and Cloud Strategy](#azure-verified-modules-avm-architecture-and-cloud-strategy) - - [OpenShift Architecture and Cloud Strategy](#openshift-architecture-and-cloud-strategy) -3. [Infrastructure as Code](#infrastructure-as-code) - - [Terraform Enterprise Infrastructure as Code](#terraform-enterprise-infrastructure-as-code) - - [NetBox Infrastructure as Code](#netbox-infrastructure-as-code) -4. [Developer Productivity](#developer-productivity) - - [VS Code Developer Productivity](#vs-code-developer-productivity) -5. [Observability and Monitoring](#observability-and-monitoring) - - [Prometheus Observability and Monitoring](#prometheus-observability-and-monitoring) -6. [Security and Compliance](#security-and-compliance) - - [DevSecOps Security and Compliance](#devsecops-security-and-compliance) -7. [AI and Future Operations](#ai-and-future-operations) - - [Red Hat OpenShift AI and Future Operations](#red-hat-openshift-ai-and-future-operations) - - [Generative AI and Large Language Models AI and Future Operations](#generative-ai-and-large-language-models-ai-and-future-operations) - - [Red Hat OpenShift AI AI and Future Operations](#red-hat-openshift-ai-ai-and-future-operations) - - [Neural Networks AI and Future Operations](#neural-networks-ai-and-future-operations) - - [Claude Code AI and Future Operations](#claude-code-ai-and-future-operations) - - [LLM Architecture and Post-Training AI and Future Operations](#llm-architecture-and-post-training-ai-and-future-operations) - - [Agentic DevOps AI and Future Operations](#agentic-devops-ai-and-future-operations) - -## Fundamentals and Documentaries -### Kubernetes Fundamentals and Documentaries -??? note "🎬 Kubernetes: The Documentary [PART 1] | `Kubernetes`" - !!! info "Architectural Summary" - This documentary chronicles the origin of Kubernetes from Google's internal cluster managers Borg and Omega, highlighting the pivotal architectural transition from virtual machines to containerized orchestration. Understanding this evolution is critical for modern cloud-native architects, as it reveals the foundational design patterns—such as the reconciliation loop, declarative APIs, and decoupled control planes—that continue to govern state-of-the-art distributed systems and platform engineering. - -
- - - -
- -??? note "🎬 Kubernetes: The Documentary [PART 2] | `Kubernetes`" - !!! info "Architectural Summary" - This documentary details the pivotal technical evolution and open governance model that led Kubernetes to win the container orchestration wars over competitors like Docker Swarm and Mesos. For a 2026 Cloud Native context, it underscores the enduring value of design principles like declarative APIs, reconciliation control loops, and pluggable interfaces (CNI, CRI, CSI) that define modern platform engineering. Understanding these foundational decisions allows architects to better design scalable, vendor-neutral control planes for complex multi-cloud environments. - -
- - - -
- -### Jenkins Fundamentals and Documentaries -??? note "🎬 Jenkins Tutorials | `Jenkins`" - !!! info "Architectural Summary" - This comprehensive video series details core Jenkins CI/CD automation techniques, including Pipeline-as-Code implementations and system management best practices. In a 2026 cloud-native context, mastering Jenkins remains critical for orchestrating complex build pipelines, bridging the gap between legacy infrastructure and modern Kubernetes deployment targets. The tutorials provide foundational architectural patterns for establishing scalable, automated, and reproducible continuous integration workflows across distributed enterprise environments. - -
- - - -
- -## Architecture and Cloud Strategy -### Kubernetes Architecture and Cloud Strategy -??? note "🎬 Kubernetes for SysAdmins | Kelsey Hightower at PuppetConf | Talk & Demo | `Kubernetes`" - !!! info "Architectural Summary" - This seminal presentation outlines the paradigm shift from traditional imperative configuration management to declarative, container-orchestrated infrastructure by redefining the operating contract between applications and underlying systems. Viewed from a 2026 cloud-native perspective, Kelsey Hightower's early demonstrations of self-healing workloads, automated bin-packing, and custom controllers for automated TLS provisioning serve as the foundational blueprint for modern platform engineering. The architectural concepts covered—specifically decoupling stateful storage and leveraging native service discovery—remain highly relevant for engineers transitioning from static sysadmin practices to dynamic API-driven control loops. - -
- - - -
- -??? note "🎬 Keynote: 7 Years of Running Kubernetes for Mercedes-Benz | `Kubernetes`" - !!! info "Architectural Summary" - This architectural retrospective outlines Mercedes-Benz's transformation from legacy, manual infrastructure management to an on-premises, self-service cloud platform managing nearly 1,000 clusters via Cluster API (CAPI). In a 2026 cloud-native context, it demonstrates the vital patterns for scaling declarative cluster lifecycle management and shifting traditional enterprise operations toward platform engineering model. The session highlights how organizational resilience, open-source alignment, and robust automation topologies can successfully modernize highly regulated corporate data centers. - -
- - - -
- -### Red Hat OpenShift Architecture and Cloud Strategy -??? note "🎬 Thursday morning general session - May 9 - Red Hat Summit 2019 | `Red Hat OpenShift`" - !!! info "Architectural Summary" - This session outlines the architectural deployment of Red Hat OpenShift as a unified hybrid cloud platform, demonstrating how enterprise Kubernetes orchestrates complex workloads across multi-cloud and edge environments. It highlights critical integrations with GPU acceleration and AI/ML pipelines, establishing a robust blueprint for modern MLOps and scalable cloud-native operations. - -
- - - -
- -??? note "🎬 Red Hat OpenShift Platform Plus - Overview | `Red Hat OpenShift`" - !!! info "Architectural Summary" - Red Hat OpenShift Platform Plus provides an enterprise-grade, multi-cluster Kubernetes foundation integrating advanced cluster management, declarative DevSecOps security, and a global container registry. In a 2026 cloud-native landscape, it delivers a unified platform engineering control plane that simplifies multi-cloud operations while enforcing consistent governance and security policies from core to edge. This suite accelerates secure software delivery pipelines by embedding automated compliance and threat protection directly into the application lifecycle. - -
- - - -
- -### Platform Engineering Architecture and Cloud Strategy -??? note "🎬 What is Platform Engineering and how it fits into DevOps and Cloud world | `Platform Engineering`" - !!! info "Architectural Summary" - This video details the evolution of cloud operations into Platform Engineering, focusing on the architecture and implementation of Internal Developer Platforms (IDPs) to mitigate developer cognitive load. By establishing standardized 'golden paths' through Infrastructure as Code (IaC) and self-service APIs, organizations can balance developer autonomy with rigorous governance, security, and compliance. This paradigm shift optimizes resource provisioning and modernizes DevOps workflows for highly scalable, cloud-native environments. - -
- - - -
- -### Ruby on Rails Architecture and Cloud Strategy -??? note "🎬 David Heinemeier Hansson: Microservices vs. Monolith | `Ruby on Rails`" - !!! info "Architectural Summary" - In this discussion, David Heinemeier Hansson critiques the dogmatic adoption of microservices, highlighting how they introduce substantial operational complexity, network latency, and cognitive load compared to a well-structured monolith. He champions the 'Majestic Monolith' as a pattern that maximizes developer velocity and reduces organizational overhead by keeping the deployment domain unified. For modern cloud-native architectures, this perspective serves as a crucial counterweight to microservice fatigue, driving the industry toward highly-optimized modular monoliths that simplify infrastructure and cut cloud spend. - -
- - - -
- -### Ruby on Rails / Hotwire Architecture and Cloud Strategy -??? note "🎬 The creator of Rails on JavaScript FE vs. Classic Server-side Rendering | `Ruby on Rails / Hotwire`" - !!! info "Architectural Summary" - David Heinemeier Hansson critiques the complexity of modern Single Page Application (SPA) architectures, advocating instead for the 'Majestic Monolith' and HTML-over-the-wire (Hotwire) to keep application logic unified on the server. In a 2026 cloud-native context, this paradigm challenges the overhead of decoupled micro-frontends by proving that server-side rendering (SSR) combined with lightweight HTML streaming dramatically simplifies deployment pipelines, reduces client-side resource consumption, and lowers data egress costs. This architectural approach optimizes for operational efficiency, enabling smaller engineering teams to build highly responsive, production-grade applications without managing complex API contract synchronizations. - -
- - - -
- -### Portworx Architecture and Cloud Strategy -??? note "🎬 Murli Thirumale | KubeCon CloudNativeCon EU 2023 | `Portworx`" - !!! info "Architectural Summary" - This discussion outlines how enterprise platform engineering teams leverage Portworx to deliver automated, resilient Database-as-a-Service (DBaaS) capabilities directly on Kubernetes. By abstracting multi-cloud storage, disaster recovery, and data security, it highlights architectural strategies essential for scaling stateful cloud-native workloads. For a 2026 cloud-native landscape, these unified data management planes are critical for mitigating multi-cloud lock-in, controlling cloud spend, and accelerating application delivery. - -
- - - -
- -### HashiCorp Stack Terraform, Vault, Consul, Boundary Architecture and Cloud Strategy -??? note "🎬 Building a developer platform? Ask these questions. | `HashiCorp Stack (Terraform, Vault, Consul, Boundary)`" - !!! info "Architectural Summary" - This session details how to build secure, scalable developer platforms by defining 'golden paths' using HashiCorp's suite of automation tools, including Terraform, Vault, Consul, and Boundary. It provides a strategic framework for resolving key platform engineering challenges such as Day 2 operations, infrastructure dependency mapping, secure access control, and seamless local-to-remote environment transitions. By abstracting cloud complexity, the session demonstrates how to deliver high-velocity self-service capabilities to development teams while ensuring governance and security compliance. - -
- - - -
- -### Modular Monoliths Architecture and Cloud Strategy -??? note "🎬 ¿De verdad son necesarios los microservicios? | `Modular Monoliths [SPANISH CONTENT]`" - !!! info "Architectural Summary" - This video critically evaluates the over-engineering of distributed systems, examining whether the operational overhead, network latency, and complexity of microservices are justified for most projects. In a 2026 cloud-native landscape focusing heavily on cost optimization and developer velocity, it advocates for a pragmatic, domain-driven approach, highlighting modular monoliths as a powerful alternative before prematurely adopting microservices. - -
- - - -
- -### Git Architecture and Cloud Strategy -??? note "🎬 Branching Strategies Explained | `Git`" - !!! info "Architectural Summary" - This guide provides a comprehensive architectural evaluation of various Git branching strategies, including Trunk-Based Development, Feature Branches, Git Flow, and Environment Branches, weighing their impacts on delivery velocity. For a 2026 cloud-native landscape, it emphasizes how moving toward trunk-based development or short-lived feature branches is essential for optimizing continuous integration (CI) pipelines, minimizing integration debt, and enabling rapid, automated deployments to Kubernetes and cloud environments. - -
- - - -
- -### Azure DevOps and GitHub Actions Architecture and Cloud Strategy -??? note "🎬 Panel: Azure DevOps vs. GitHub Actions | `Azure DevOps & GitHub Actions`" - !!! info "Architectural Summary" - This panel discussion provides a comprehensive architectural comparison between Azure DevOps and GitHub Actions, focusing on enterprise governance, extensibility, and CI/CD workflow migration strategies. It outlines decision frameworks for hybrid platform setups, highlighting how organizations can leverage GitHub Actions for modern cloud-native developer velocity while maintaining Azure DevOps for mature project management, test plans, and strict regulatory compliance. Essential for cloud architects planning long-term toolchain evolution, this session clarifies integration pathways and future-proof migration strategies. - -
- - - -
- -### Distributed Systems Strategy Architecture and Cloud Strategy -??? note "🎬 Elon Musk talks Twitter, Tesla and how his brain works — live at TED2022 | `Distributed Systems Strategy`" - !!! info "Architectural Summary" - This systemic interview highlights architectural principles around open-sourcing core algorithms to enforce platform transparency and trust, directly paralleling modern GitOps, policy-as-code, and zero-trust verification frameworks in Cloud Native environments. Additionally, the insights on extreme manufacturing automation offer critical design lessons for 2026 edge computing, emphasizing the necessity of closed-loop automation, event-driven orchestration, and radical simplification of complex distributed infrastructures. - -
- - - -
- -### FinOps Architecture and Cloud Strategy -??? note "🎬 The Brutal Truth Behind Tech Layoffs | `FinOps`" - !!! info "Architectural Summary" - This analysis dissects the macroeconomic shift from hyper-growth talent hoarding to hyper-efficiency, highlighting the systemic collapse of bloated engineering teams in favor of lean, automated operations. For a 2026 cloud-native landscape, this underscores the critical role of platform engineering and robust FinOps architectures designed to maximize resource utilization while minimizing human-in-the-loop operational overhead. Architects must leverage these insights to build self-healing, highly automated platforms that successfully decouple organizational scale from headcount. - -
- - - -
- -### GitOps Architecture and Cloud Strategy -??? note "🎬 GitOps Guide to the Galaxy | `GitOps`" - !!! info "Architectural Summary" - Every other Thursday at 3pm ET hosts Hilliary Lipsig and Jonathan Rickard dive into everything in the GitOps universe, from solutions to common problems in end-to-end CICD pipelines, to creating Git workflows. This series explores how GitOps enhances modern application delivery and discusses the latest news around best practices and Cloud Native architecture. - -
- - - -
- -### Hosted Control Planes Architecture and Cloud Strategy -??? note "🎬 GitOps Guide to the Galaxy: Hosted Control Planes (HyperShift) | `Hosted Control Planes`" - !!! info "Architectural Summary" - This session from the GitOps Guide to the Galaxy deconstructs the architecture of Hosted Control Planes (HCP), also known as HyperShift. It explores how HCP decouples the Kubernetes control plane from worker nodes, hosting it as a scalable workload on a management cluster to drastically reduce operational overhead, improve provisioning speed, and optimize resource utilization. For 2026 platform engineering, mastering this pattern is essential for managing large-scale, multi-tenant Kubernetes fleets with high-density efficiency and strong isolation. - -
- - - -
- -### Azure Verified Modules AVM Architecture and Cloud Strategy -??? note "🎬 Building Secure, Well‑Architected Azure Workloads with Azure Verified Modules and GitHub Copilot | `Azure Verified Modules (AVM)`" - !!! info "Architectural Summary" - Azure Verified Modules (AVM) is the official Microsoft infrastructure-as-code module library for both Bicep and Terraform. This session explores how AVM standardizes deployments according to the Azure Well-Architected Framework by default, shipping with high-impact security defaults like zone redundancy and disabled public IPs. It introduces Spec-Driven Development with GitHub Copilot using the "Spec Kit" (an 8-step framework from constitution to implementation). By turning non-deterministic AI prompts into reliable, repeatable builds, architects can leverage AI as a trusted foundation for secure and compliant Azure workload orchestration. - -
- - - -
- -### OpenShift Architecture and Cloud Strategy -??? note "🎬 Fran Heeran, Red Hat | Red Hat Summit 2026 | `OpenShift`" - !!! info "Architectural Summary" - In this Red Hat Summit 2026 interview, Fran Heeran details how telecommunications providers are shifting from heavily siloed infrastructure to unified cloud-native architectures. By leveraging OpenShift Virtualization, telcos can centrally manage both legacy virtual machines and modern containers across core networks and the far edge, accelerating deployments up to 50%. This unified architecture additionally enables sovereign cloud offerings and closed-loop network automation by feeding AI outputs directly into Ansible-driven remediation workflows. - -
- - - -
- -## Infrastructure as Code -### Terraform Enterprise Infrastructure as Code -??? note "🎬 Standardizing infrastructure automation with Terraform Enterprise | `Terraform Enterprise`" - !!! info "Architectural Summary" - This presentation details AXA Group's cloud migration strategy (ATLAS) utilizing Terraform Enterprise as the cornerstone of their multi-cloud and private IaaS migration factory. It highlights how a highly regulated financial enterprise standardizes infrastructure-as-code (IaC) practices across multiple global subsidiaries to accelerate cloud adoption while maintaining governance. For a 2026 cloud-native landscape, this case study provides key insights into scaling self-service provisioning, implementing policy-as-code, and automating multi-tenant enterprise architectures at massive scale. - -
- - - -
- -### NetBox Infrastructure as Code -??? note "🎬 NetBox Zero To Hero | `NetBox`" - !!! info "Architectural Summary" - NetBox serves as the foundational source of truth for modern network automation by integrating IP Address Management (IPAM) and Data Center Infrastructure Management (DCIM) into a unified database. In a 2026 Cloud Native ecosystem, it empowers Infrastructure as Code (IaC) pipelines to dynamically query and enforce intended network state via robust APIs, effectively eliminating configuration drift. This architectural approach bridges the gap between physical hardware tracking and automated, declarative network orchestration across complex hybrid environments. - -
- - - -
- -## Developer Productivity -### VS Code Developer Productivity -??? note "🎬 Remote VS Code with Dev Tunnels: access the editor from your browser | `VS Code [SPANISH CONTENT]`" - !!! info "Architectural Summary" - In this tutorial, Gisela Torres explains the architecture and application of VS Code Dev Tunnels to enable secure remote access to local development environments. Dev Tunnels establish a secure, encrypted connection to VS Code without requiring complex VPNs or firewall modifications, allowing developers to connect from any web browser or secondary editor instance. For 2026 developer productivity, this simplifies remote workspace orchestration and collaborative debugging in cloud-native platforms. [SPANISH CONTENT] - -
- - - -
- -## Observability and Monitoring -### Prometheus Observability and Monitoring -??? note "🎬 Prometheus: The Documentary | `Prometheus`" - !!! info "Architectural Summary" - This documentary explores the architectural genesis of Prometheus at SoundCloud, detailing how the shift to microservices necessitated a fundamental pivot from host-based monitoring to a pull-based, multi-dimensional metric data model. In a 2026 cloud-native context, understanding these foundational design decisions—specifically the trade-offs of localized TSDB storage, HTTP pull mechanics, and PromQL—is vital for architecting self-healing, high-cardinality observability pipelines across distributed, edge, and hybrid-cloud environments. - -
- - - -
- -## Security and Compliance -### DevSecOps Security and Compliance -??? note "🎬 What is DevSecOps? DevSecOps explained in 8 Mins | `DevSecOps`" - !!! info "Architectural Summary" - This video details the transition from traditional, late-stage security audits to DevSecOps, explaining how shifting security left eliminates deployment bottlenecks in fast-paced delivery pipelines. It covers the automation of static analysis (SAST), software composition analysis (SCA), and container scanning directly within CI/CD workflows. In a 2026 cloud-native context, this paradigm is critical for securing ephemeral microservices and maintaining continuous compliance without sacrificing deployment velocity. - -
- - - -
- -## AI and Future Operations -### Red Hat OpenShift AI and Future Operations -??? note "🎬 Thursday morning general session - May 9 - Red Hat Summit 2019 | `Red Hat OpenShift`" - !!! info "Architectural Summary" - This session outlines the architectural enablement of cloud-native AI/ML workloads by integrating Red Hat OpenShift with NVIDIA GPU acceleration and automated MLOps platforms like H2O.ai and ProphetStor. It demonstrates how standardizing on a Kubernetes-based hybrid cloud substrate abstracts heterogeneous hardware environments, facilitating deterministic scaling, resource orchestration, and cognitive monitoring for high-performance AI pipelines. This unified operational model serves as a foundational blueprint for modern enterprise AI-platform engineering and edge computing architectures. - -
- - - -
- -### Generative AI and Large Language Models AI and Future Operations -??? note "🎬 Artificial Intelligence | 60 Minutes Full Episodes | `Generative AI and Large Language Models`" - !!! info "Architectural Summary" - This documentary anthology traces the rapid evolution of artificial intelligence from early deep learning implementations to advanced generative AI systems like Google's Bard and OpenAI's ChatGPT. For 2026 cloud-native architectures, these developments highlight the critical need for integrating scalable AI model orchestration, strict ethical guardrails, and secure data pipelines directly into enterprise platform engineering. Understanding these socio-technical shifts assists cloud architects in designing resilient, compliant AI-integrated infrastructures that balance massive computational demands with robust operational governance. - -
- - - -
- -### Red Hat OpenShift AI AI and Future Operations -??? note "🎬 Red Hat OpenShift AI overview | `Red Hat OpenShift AI`" - !!! info "Architectural Summary" - Red Hat OpenShift AI provides an enterprise-grade MLOps platform built on Kubernetes that standardizes the training, tuning, serving, and monitoring of foundation and predictive AI models across hybrid and multi-cloud environments. By integrating open-source frameworks like Jupyter, PyTorch, and KServe with certified hardware accelerators, it delivers a secure, consistent, and self-service environment for platform and data science teams. This architecture ensures robust AI governance, operational scalability, and accelerated time-to-market for intelligent cloud-native applications. - -
- - - -
- -### Neural Networks AI and Future Operations -??? note "🎬 ¿Qué es una Red Neuronal? Parte 1 : La Neurona | DotCSV | `Neural Networks [SPANISH CONTENT]`" - !!! info "Architectural Summary" - This video deconstructs the foundational mathematical and algorithmic mechanics of a single artificial neuron, illustrating its direct relationship with linear regression, weights, biases, and activation functions. In a 2026 cloud-native landscape, mastering these core neural principles is critical for platform architects optimizing distributed micro-models and real-time AI inference engines deployed on Kubernetes-driven edge and cloud infrastructure. This granular understanding enables more efficient hardware acceleration profiling (GPUs/vGPUs/TPUs) and smarter resource allocation for decentralized machine learning pipelines. - -
- - - -
- -### Claude Code AI and Future Operations -??? note "🎬 Mastering Claude Code in 30 minutes | `Claude Code`" - !!! info "Architectural Summary" - This technical session explores the architecture and implementation of Claude Code, Anthropic's agentic CLI designed for autonomous, multi-step engineering tasks. It details how the tool leverages the Model Context Protocol (MCP) to integrate with external data sources and documentation, enabling a self-healing development cycle where the agent autonomously reads code, executes shell commands, and iterates through test-driven development (TDD) loops. For 2026 platform engineers, mastering these agentic workflows is critical for scaling complex refactoring, managing cognitive load in large-scale repositories, and establishing robust human-in-the-loop (HITL) governance for AI-driven infrastructure operations. - -
- - - -
- -### LLM Architecture and Post-Training AI and Future Operations -??? note "🎬 Stanford CS229: Building Large Language Models (LLMs) | `LLM Architecture & Post-Training`" - !!! info "Architectural Summary" - This Stanford CS229 technical deep-dive deconstructs the transition from raw autoregressive language models to instruction-tuned assistants, focusing on the systems orchestration required for 2026 AI infrastructure. It explores critical patterns in tokenization (BPE/Sub-word), parameter-efficient fine-tuning (PEFT/LoRA), and the shift from RLHF to Direct Preference Optimization (DPO) to simplify model alignment pipelines. For cloud architects, the lecture provides a foundational framework for optimizing the "Compute-to-Token" ratio and managing memory constraints (KV Cache) in distributed distributed inference environments, while advocating for LLM-as-a-Judge automated evaluation loops for scalable model governance. - -
- - - -
- -### Agentic DevOps AI and Future Operations -??? note "🎬 Agentic DevOps Live | `Agentic DevOps`" - !!! info "Architectural Summary" - This official live series explores the paradigm shift from traditional CI/CD pipelines to autonomous, agent-driven operations (Agentic DevOps). It covers technical deep-dives into Azure SRE Agents for automated root cause analysis and proactive reliability, GitHub Copilot App Mod Agents for modernizing legacy systems at scale, and AI-powered workflows across GitHub and Azure DevOps. Essential for platform engineers designing self-healing environments and scalable human-in-the-loop AI governance in 2026. - -
- - - -
diff --git a/v2-docs/videos/ai-agents.md b/v2-docs/videos/ai-agents.md new file mode 100644 index 00000000..6608b907 --- /dev/null +++ b/v2-docs/videos/ai-agents.md @@ -0,0 +1,97 @@ +# 🎥 AI Agents and MCP + +Welcome to the **AI Agents and MCP** section of the V2 Video Hub. Explore curated high-density videos with architectural summaries. + +## Table of Contents + +1. [Red Hat OpenShift](#red-hat-openshift) +2. [Generative AI and Large Language Models](#generative-ai-and-large-language-models) +3. [Red Hat OpenShift AI](#red-hat-openshift-ai) +4. [Neural Networks](#neural-networks) +5. [Claude Code](#claude-code) +6. [LLM Architecture and Post-Training](#llm-architecture-and-post-training) +7. [Agentic DevOps](#agentic-devops) + +## Red Hat OpenShift + +??? note "🎬 Thursday morning general session - May 9 - Red Hat Summit 2019" + !!! info "Architectural Summary" + This session outlines the architectural enablement of cloud-native AI/ML workloads by integrating Red Hat OpenShift with NVIDIA GPU acceleration and automated MLOps platforms like H2O.ai and ProphetStor. It demonstrates how standardizing on a Kubernetes-based hybrid cloud substrate abstracts heterogeneous hardware environments, facilitating deterministic scaling, resource orchestration, and cognitive monitoring for high-performance AI pipelines. This unified operational model serves as a foundational blueprint for modern enterprise AI-platform engineering and edge computing architectures. + +
+ + + +
+ +## Generative AI and Large Language Models + +??? note "🎬 Artificial Intelligence | 60 Minutes Full Episodes" + !!! info "Architectural Summary" + This documentary anthology traces the rapid evolution of artificial intelligence from early deep learning implementations to advanced generative AI systems like Google's Bard and OpenAI's ChatGPT. For 2026 cloud-native architectures, these developments highlight the critical need for integrating scalable AI model orchestration, strict ethical guardrails, and secure data pipelines directly into enterprise platform engineering. Understanding these socio-technical shifts assists cloud architects in designing resilient, compliant AI-integrated infrastructures that balance massive computational demands with robust operational governance. + +
+ + + +
+ +## Red Hat OpenShift AI + +??? note "🎬 Red Hat OpenShift AI overview" + !!! info "Architectural Summary" + Red Hat OpenShift AI provides an enterprise-grade MLOps platform built on Kubernetes that standardizes the training, tuning, serving, and monitoring of foundation and predictive AI models across hybrid and multi-cloud environments. By integrating open-source frameworks like Jupyter, PyTorch, and KServe with certified hardware accelerators, it delivers a secure, consistent, and self-service environment for platform and data science teams. This architecture ensures robust AI governance, operational scalability, and accelerated time-to-market for intelligent cloud-native applications. + +
+ + + +
+ +## Neural Networks + +??? note "🎬 ¿Qué es una Red Neuronal? Parte 1 : La Neurona | DotCSV [SPANISH CONTENT]" + !!! info "Architectural Summary" + This video deconstructs the foundational mathematical and algorithmic mechanics of a single artificial neuron, illustrating its direct relationship with linear regression, weights, biases, and activation functions. In a 2026 cloud-native landscape, mastering these core neural principles is critical for platform architects optimizing distributed micro-models and real-time AI inference engines deployed on Kubernetes-driven edge and cloud infrastructure. This granular understanding enables more efficient hardware acceleration profiling (GPUs/vGPUs/TPUs) and smarter resource allocation for decentralized machine learning pipelines. + +
+ + + +
+ +## Claude Code + +??? note "🎬 Mastering Claude Code in 30 minutes" + !!! info "Architectural Summary" + This technical session explores the architecture and implementation of Claude Code, Anthropic's agentic CLI designed for autonomous, multi-step engineering tasks. It details how the tool leverages the Model Context Protocol (MCP) to integrate with external data sources and documentation, enabling a self-healing development cycle where the agent autonomously reads code, executes shell commands, and iterates through test-driven development (TDD) loops. For 2026 platform engineers, mastering these agentic workflows is critical for scaling complex refactoring, managing cognitive load in large-scale repositories, and establishing robust human-in-the-loop (HITL) governance for AI-driven infrastructure operations. + +
+ + + +
+ +## LLM Architecture and Post-Training + +??? note "🎬 Stanford CS229: Building Large Language Models (LLMs)" + !!! info "Architectural Summary" + This Stanford CS229 technical deep-dive deconstructs the transition from raw autoregressive language models to instruction-tuned assistants, focusing on the systems orchestration required for 2026 AI infrastructure. It explores critical patterns in tokenization (BPE/Sub-word), parameter-efficient fine-tuning (PEFT/LoRA), and the shift from RLHF to Direct Preference Optimization (DPO) to simplify model alignment pipelines. For cloud architects, the lecture provides a foundational framework for optimizing the "Compute-to-Token" ratio and managing memory constraints (KV Cache) in distributed distributed inference environments, while advocating for LLM-as-a-Judge automated evaluation loops for scalable model governance. + +
+ + + +
+ +## Agentic DevOps + +??? note "🎬 Agentic DevOps Live" + !!! info "Architectural Summary" + This official live series explores the paradigm shift from traditional CI/CD pipelines to autonomous, agent-driven operations (Agentic DevOps). It covers technical deep-dives into Azure SRE Agents for automated root cause analysis and proactive reliability, GitHub Copilot App Mod Agents for modernizing legacy systems at scale, and AI-powered workflows across GitHub and Azure DevOps. Essential for platform engineers designing self-healing environments and scalable human-in-the-loop AI governance in 2026. + +
+ + + +
diff --git a/v2-docs/videos/cloud-native.md b/v2-docs/videos/cloud-native.md new file mode 100644 index 00000000..69bed630 --- /dev/null +++ b/v2-docs/videos/cloud-native.md @@ -0,0 +1,234 @@ +# 🎥 Cloud Native Core + +Welcome to the **Cloud Native Core** section of the V2 Video Hub. Explore curated high-density videos with architectural summaries. + +## Table of Contents + +1. [Kubernetes](#kubernetes) +2. [Red Hat OpenShift](#red-hat-openshift) +3. [Platform Engineering](#platform-engineering) +4. [Ruby on Rails](#ruby-on-rails) +5. [Ruby on Rails Hotwire](#ruby-on-rails-hotwire) +6. [Portworx](#portworx) +7. [HashiCorp Stack Terraform Vault Consul Boundary](#hashicorp-stack-terraform-vault-consul-boundary) +8. [Modular Monoliths](#modular-monoliths) +9. [Git](#git) +10. [Distributed Systems Strategy](#distributed-systems-strategy) +11. [FinOps](#finops) +12. [GitOps](#gitops) +13. [Hosted Control Planes](#hosted-control-planes) +14. [Azure Verified Modules AVM](#azure-verified-modules-avm) +15. [OpenShift](#openshift) +16. [VS Code](#vs-code) + +## Kubernetes + +??? note "🎬 Kubernetes for SysAdmins | Kelsey Hightower at PuppetConf | Talk & Demo" + !!! info "Architectural Summary" + This seminal presentation outlines the paradigm shift from traditional imperative configuration management to declarative, container-orchestrated infrastructure by redefining the operating contract between applications and underlying systems. Viewed from a 2026 cloud-native perspective, Kelsey Hightower's early demonstrations of self-healing workloads, automated bin-packing, and custom controllers for automated TLS provisioning serve as the foundational blueprint for modern platform engineering. The architectural concepts covered—specifically decoupling stateful storage and leveraging native service discovery—remain highly relevant for engineers transitioning from static sysadmin practices to dynamic API-driven control loops. + +
+ + + +
+ +??? note "🎬 Keynote: 7 Years of Running Kubernetes for Mercedes-Benz" + !!! info "Architectural Summary" + This architectural retrospective outlines Mercedes-Benz's transformation from legacy, manual infrastructure management to an on-premises, self-service cloud platform managing nearly 1,000 clusters via Cluster API (CAPI). In a 2026 cloud-native context, it demonstrates the vital patterns for scaling declarative cluster lifecycle management and shifting traditional enterprise operations toward platform engineering model. The session highlights how organizational resilience, open-source alignment, and robust automation topologies can successfully modernize highly regulated corporate data centers. + +
+ + + +
+ +## Red Hat OpenShift + +??? note "🎬 Thursday morning general session - May 9 - Red Hat Summit 2019" + !!! info "Architectural Summary" + This session outlines the architectural deployment of Red Hat OpenShift as a unified hybrid cloud platform, demonstrating how enterprise Kubernetes orchestrates complex workloads across multi-cloud and edge environments. It highlights critical integrations with GPU acceleration and AI/ML pipelines, establishing a robust blueprint for modern MLOps and scalable cloud-native operations. + +
+ + + +
+ +??? note "🎬 Red Hat OpenShift Platform Plus - Overview" + !!! info "Architectural Summary" + Red Hat OpenShift Platform Plus provides an enterprise-grade, multi-cluster Kubernetes foundation integrating advanced cluster management, declarative DevSecOps security, and a global container registry. In a 2026 cloud-native landscape, it delivers a unified platform engineering control plane that simplifies multi-cloud operations while enforcing consistent governance and security policies from core to edge. This suite accelerates secure software delivery pipelines by embedding automated compliance and threat protection directly into the application lifecycle. + +
+ + + +
+ +## Platform Engineering + +??? note "🎬 What is Platform Engineering and how it fits into DevOps and Cloud world" + !!! info "Architectural Summary" + This video details the evolution of cloud operations into Platform Engineering, focusing on the architecture and implementation of Internal Developer Platforms (IDPs) to mitigate developer cognitive load. By establishing standardized 'golden paths' through Infrastructure as Code (IaC) and self-service APIs, organizations can balance developer autonomy with rigorous governance, security, and compliance. This paradigm shift optimizes resource provisioning and modernizes DevOps workflows for highly scalable, cloud-native environments. + +
+ + + +
+ +## Ruby on Rails + +??? note "🎬 David Heinemeier Hansson: Microservices vs. Monolith" + !!! info "Architectural Summary" + In this discussion, David Heinemeier Hansson critiques the dogmatic adoption of microservices, highlighting how they introduce substantial operational complexity, network latency, and cognitive load compared to a well-structured monolith. He champions the 'Majestic Monolith' as a pattern that maximizes developer velocity and reduces organizational overhead by keeping the deployment domain unified. For modern cloud-native architectures, this perspective serves as a crucial counterweight to microservice fatigue, driving the industry toward highly-optimized modular monoliths that simplify infrastructure and cut cloud spend. + +
+ + + +
+ +## Ruby on Rails Hotwire + +??? note "🎬 The creator of Rails on JavaScript FE vs. Classic Server-side Rendering" + !!! info "Architectural Summary" + David Heinemeier Hansson critiques the complexity of modern Single Page Application (SPA) architectures, advocating instead for the 'Majestic Monolith' and HTML-over-the-wire (Hotwire) to keep application logic unified on the server. In a 2026 cloud-native context, this paradigm challenges the overhead of decoupled micro-frontends by proving that server-side rendering (SSR) combined with lightweight HTML streaming dramatically simplifies deployment pipelines, reduces client-side resource consumption, and lowers data egress costs. This architectural approach optimizes for operational efficiency, enabling smaller engineering teams to build highly responsive, production-grade applications without managing complex API contract synchronizations. + +
+ + + +
+ +## Portworx + +??? note "🎬 Murli Thirumale | KubeCon CloudNativeCon EU 2023" + !!! info "Architectural Summary" + This discussion outlines how enterprise platform engineering teams leverage Portworx to deliver automated, resilient Database-as-a-Service (DBaaS) capabilities directly on Kubernetes. By abstracting multi-cloud storage, disaster recovery, and data security, it highlights architectural strategies essential for scaling stateful cloud-native workloads. For a 2026 cloud-native landscape, these unified data management planes are critical for mitigating multi-cloud lock-in, controlling cloud spend, and accelerating application delivery. + +
+ + + +
+ +## HashiCorp Stack Terraform Vault Consul Boundary + +??? note "🎬 Building a developer platform? Ask these questions." + !!! info "Architectural Summary" + This session details how to build secure, scalable developer platforms by defining 'golden paths' using HashiCorp's suite of automation tools, including Terraform, Vault, Consul, and Boundary. It provides a strategic framework for resolving key platform engineering challenges such as Day 2 operations, infrastructure dependency mapping, secure access control, and seamless local-to-remote environment transitions. By abstracting cloud complexity, the session demonstrates how to deliver high-velocity self-service capabilities to development teams while ensuring governance and security compliance. + +
+ + + +
+ +## Modular Monoliths + +??? note "🎬 ¿De verdad son necesarios los microservicios? [SPANISH CONTENT]" + !!! info "Architectural Summary" + This video critically evaluates the over-engineering of distributed systems, examining whether the operational overhead, network latency, and complexity of microservices are justified for most projects. In a 2026 cloud-native landscape focusing heavily on cost optimization and developer velocity, it advocates for a pragmatic, domain-driven approach, highlighting modular monoliths as a powerful alternative before prematurely adopting microservices. + +
+ + + +
+ +## Git + +??? note "🎬 Branching Strategies Explained" + !!! info "Architectural Summary" + This guide provides a comprehensive architectural evaluation of various Git branching strategies, including Trunk-Based Development, Feature Branches, Git Flow, and Environment Branches, weighing their impacts on delivery velocity. For a 2026 cloud-native landscape, it emphasizes how moving toward trunk-based development or short-lived feature branches is essential for optimizing continuous integration (CI) pipelines, minimizing integration debt, and enabling rapid, automated deployments to Kubernetes and cloud environments. + +
+ + + +
+ +## Distributed Systems Strategy + +??? note "🎬 Elon Musk talks Twitter, Tesla and how his brain works — live at TED2022" + !!! info "Architectural Summary" + This systemic interview highlights architectural principles around open-sourcing core algorithms to enforce platform transparency and trust, directly paralleling modern GitOps, policy-as-code, and zero-trust verification frameworks in Cloud Native environments. Additionally, the insights on extreme manufacturing automation offer critical design lessons for 2026 edge computing, emphasizing the necessity of closed-loop automation, event-driven orchestration, and radical simplification of complex distributed infrastructures. + +
+ + + +
+ +## FinOps + +??? note "🎬 The Brutal Truth Behind Tech Layoffs" + !!! info "Architectural Summary" + This analysis dissects the macroeconomic shift from hyper-growth talent hoarding to hyper-efficiency, highlighting the systemic collapse of bloated engineering teams in favor of lean, automated operations. For a 2026 cloud-native landscape, this underscores the critical role of platform engineering and robust FinOps architectures designed to maximize resource utilization while minimizing human-in-the-loop operational overhead. Architects must leverage these insights to build self-healing, highly automated platforms that successfully decouple organizational scale from headcount. + +
+ + + +
+ +## GitOps + +??? note "🎬 GitOps Guide to the Galaxy" + !!! info "Architectural Summary" + Every other Thursday at 3pm ET hosts Hilliary Lipsig and Jonathan Rickard dive into everything in the GitOps universe, from solutions to common problems in end-to-end CICD pipelines, to creating Git workflows. This series explores how GitOps enhances modern application delivery and discusses the latest news around best practices and Cloud Native architecture. + +
+ + + +
+ +## Hosted Control Planes + +??? note "🎬 GitOps Guide to the Galaxy: Hosted Control Planes (HyperShift)" + !!! info "Architectural Summary" + This session from the GitOps Guide to the Galaxy deconstructs the architecture of Hosted Control Planes (HCP), also known as HyperShift. It explores how HCP decouples the Kubernetes control plane from worker nodes, hosting it as a scalable workload on a management cluster to drastically reduce operational overhead, improve provisioning speed, and optimize resource utilization. For 2026 platform engineering, mastering this pattern is essential for managing large-scale, multi-tenant Kubernetes fleets with high-density efficiency and strong isolation. + +
+ + + +
+ +## Azure Verified Modules AVM + +??? note "🎬 Building Secure, Well‑Architected Azure Workloads with Azure Verified Modules and GitHub Copilot" + !!! info "Architectural Summary" + Azure Verified Modules (AVM) is the official Microsoft infrastructure-as-code module library for both Bicep and Terraform. This session explores how AVM standardizes deployments according to the Azure Well-Architected Framework by default, shipping with high-impact security defaults like zone redundancy and disabled public IPs. It introduces Spec-Driven Development with GitHub Copilot using the "Spec Kit" (an 8-step framework from constitution to implementation). By turning non-deterministic AI prompts into reliable, repeatable builds, architects can leverage AI as a trusted foundation for secure and compliant Azure workload orchestration. + +
+ + + +
+ +## OpenShift + +??? note "🎬 Fran Heeran, Red Hat | Red Hat Summit 2026" + !!! info "Architectural Summary" + In this Red Hat Summit 2026 interview, Fran Heeran details how telecommunications providers are shifting from heavily siloed infrastructure to unified cloud-native architectures. By leveraging OpenShift Virtualization, telcos can centrally manage both legacy virtual machines and modern containers across core networks and the far edge, accelerating deployments up to 50%. This unified architecture additionally enables sovereign cloud offerings and closed-loop network automation by feeding AI outputs directly into Ansible-driven remediation workflows. + +
+ + + +
+ +## VS Code + +??? note "🎬 Remote VS Code with Dev Tunnels: access the editor from your browser [SPANISH CONTENT]" + !!! info "Architectural Summary" + In this tutorial, Gisela Torres explains the architecture and application of VS Code Dev Tunnels to enable secure remote access to local development environments. Dev Tunnels establish a secure, encrypted connection to VS Code without requiring complex VPNs or firewall modifications, allowing developers to connect from any web browser or secondary editor instance. For 2026 developer productivity, this simplifies remote workspace orchestration and collaborative debugging in cloud-native platforms. [SPANISH CONTENT] + +
+ + + +
diff --git a/v2-docs/videos/devops-iac.md b/v2-docs/videos/devops-iac.md new file mode 100644 index 00000000..3590dcc1 --- /dev/null +++ b/v2-docs/videos/devops-iac.md @@ -0,0 +1,71 @@ +# 🎥 DevOps, IaC, and SRE + +Welcome to the **DevOps, IaC, and SRE** section of the V2 Video Hub. Explore curated high-density videos with architectural summaries. + +## Table of Contents + +1. [Prometheus](#prometheus) +2. [Terraform Enterprise](#terraform-enterprise) +3. [Azure DevOps and GitHub Actions](#azure-devops-and-github-actions) +4. [DevSecOps](#devsecops) +5. [NetBox](#netbox) + +## Prometheus + +??? note "🎬 Prometheus: The Documentary" + !!! info "Architectural Summary" + This documentary explores the architectural genesis of Prometheus at SoundCloud, detailing how the shift to microservices necessitated a fundamental pivot from host-based monitoring to a pull-based, multi-dimensional metric data model. In a 2026 cloud-native context, understanding these foundational design decisions—specifically the trade-offs of localized TSDB storage, HTTP pull mechanics, and PromQL—is vital for architecting self-healing, high-cardinality observability pipelines across distributed, edge, and hybrid-cloud environments. + +
+ + + +
+ +## Terraform Enterprise + +??? note "🎬 Standardizing infrastructure automation with Terraform Enterprise" + !!! info "Architectural Summary" + This presentation details AXA Group's cloud migration strategy (ATLAS) utilizing Terraform Enterprise as the cornerstone of their multi-cloud and private IaaS migration factory. It highlights how a highly regulated financial enterprise standardizes infrastructure-as-code (IaC) practices across multiple global subsidiaries to accelerate cloud adoption while maintaining governance. For a 2026 cloud-native landscape, this case study provides key insights into scaling self-service provisioning, implementing policy-as-code, and automating multi-tenant enterprise architectures at massive scale. + +
+ + + +
+ +## Azure DevOps and GitHub Actions + +??? note "🎬 Panel: Azure DevOps vs. GitHub Actions" + !!! info "Architectural Summary" + This panel discussion provides a comprehensive architectural comparison between Azure DevOps and GitHub Actions, focusing on enterprise governance, extensibility, and CI/CD workflow migration strategies. It outlines decision frameworks for hybrid platform setups, highlighting how organizations can leverage GitHub Actions for modern cloud-native developer velocity while maintaining Azure DevOps for mature project management, test plans, and strict regulatory compliance. Essential for cloud architects planning long-term toolchain evolution, this session clarifies integration pathways and future-proof migration strategies. + +
+ + + +
+ +## DevSecOps + +??? note "🎬 What is DevSecOps? DevSecOps explained in 8 Mins" + !!! info "Architectural Summary" + This video details the transition from traditional, late-stage security audits to DevSecOps, explaining how shifting security left eliminates deployment bottlenecks in fast-paced delivery pipelines. It covers the automation of static analysis (SAST), software composition analysis (SCA), and container scanning directly within CI/CD workflows. In a 2026 cloud-native context, this paradigm is critical for securing ephemeral microservices and maintaining continuous compliance without sacrificing deployment velocity. + +
+ + + +
+ +## NetBox + +??? note "🎬 NetBox Zero To Hero" + !!! info "Architectural Summary" + NetBox serves as the foundational source of truth for modern network automation by integrating IP Address Management (IPAM) and Data Center Infrastructure Management (DCIM) into a unified database. In a 2026 Cloud Native ecosystem, it empowers Infrastructure as Code (IaC) pipelines to dynamically query and enforce intended network state via robust APIs, effectively eliminating configuration drift. This architectural approach bridges the gap between physical hardware tracking and automated, declarative network orchestration across complex hybrid environments. + +
+ + + +
diff --git a/v2-docs/videos/fundamentals.md b/v2-docs/videos/fundamentals.md new file mode 100644 index 00000000..b6f6bbda --- /dev/null +++ b/v2-docs/videos/fundamentals.md @@ -0,0 +1,42 @@ +# 🎥 Fundamentals + +Welcome to the **Fundamentals** section of the V2 Video Hub. Explore curated high-density videos with architectural summaries. + +## Table of Contents + +1. [Kubernetes](#kubernetes) +2. [Jenkins](#jenkins) + +## Kubernetes + +??? note "🎬 Kubernetes: The Documentary [PART 1]" + !!! info "Architectural Summary" + This documentary chronicles the origin of Kubernetes from Google's internal cluster managers Borg and Omega, highlighting the pivotal architectural transition from virtual machines to containerized orchestration. Understanding this evolution is critical for modern cloud-native architects, as it reveals the foundational design patterns—such as the reconciliation loop, declarative APIs, and decoupled control planes—that continue to govern state-of-the-art distributed systems and platform engineering. + +
+ + + +
+ +??? note "🎬 Kubernetes: The Documentary [PART 2]" + !!! info "Architectural Summary" + This documentary details the pivotal technical evolution and open governance model that led Kubernetes to win the container orchestration wars over competitors like Docker Swarm and Mesos. For a 2026 Cloud Native context, it underscores the enduring value of design principles like declarative APIs, reconciliation control loops, and pluggable interfaces (CNI, CRI, CSI) that define modern platform engineering. Understanding these foundational decisions allows architects to better design scalable, vendor-neutral control planes for complex multi-cloud environments. + +
+ + + +
+ +## Jenkins + +??? note "🎬 Jenkins Tutorials" + !!! info "Architectural Summary" + This comprehensive video series details core Jenkins CI/CD automation techniques, including Pipeline-as-Code implementations and system management best practices. In a 2026 cloud-native context, mastering Jenkins remains critical for orchestrating complex build pipelines, bridging the gap between legacy infrastructure and modern Kubernetes deployment targets. The tutorials provide foundational architectural patterns for establishing scalable, automated, and reproducible continuous integration workflows across distributed enterprise environments. + +
+ + + +
diff --git a/v2-docs/videos/index.md b/v2-docs/videos/index.md new file mode 100644 index 00000000..c7e51428 --- /dev/null +++ b/v2-docs/videos/index.md @@ -0,0 +1,9 @@ +# 🎥 Agentic Video Hub + +Welcome to the **Nubenetes Elite Video Hub**. Discover highly-curated architectural video resources organized into logical learning paths: + +### Learning Dimensions +- 🤖 [**AI Agents and MCP**](./ai-agents.md) — Dive into agentic architectures, tool integration, and Model Context Protocol setups. +- 🛠️ [**DevOps, IaC, and SRE**](./devops-iac.md) — Platform engineering, infrastructure automation with Terraform, SRE, and compliance workflows utilizing AI assistants. +- ☁️ [**Cloud Native Core**](./cloud-native.md) — Architectural strategies, Kubernetes operations, networking, and MLOps platforms. +- 🏁 [**Fundamentals**](./fundamentals.md) — Documentaries, foundational cloud native concepts, and core Strategy tutorials. diff --git a/v2-mkdocs.yml b/v2-mkdocs.yml index 58cba85c..e1282df7 100644 --- a/v2-mkdocs.yml +++ b/v2-mkdocs.yml @@ -98,7 +98,12 @@ markdown_extensions: nav: - "🔙 Back to V1 (Exhaustive)": https://nubenetes.com/v1/ - "The 2026 Vision": index.md - - "Agentic Video Hub": videos.md + - "Agentic Video Hub": + - "Overview": videos/index.md + - "AI Agents and MCP": videos/ai-agents.md + - "DevOps, IaC, and SRE": videos/devops-iac.md + - "Cloud Native Core": videos/cloud-native.md + - "Fundamentals": videos/fundamentals.md - "AI": - "AI Agents MCP": ai-agents-mcp.md - "AI": ai.md