diff --git a/CHANGELOG.md b/CHANGELOG.md index 43e2d38d..6c7474ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [[2.9.12]](https://github.com/nubenetes/awesome-kubernetes/releases/tag/v2.9.12) - 2026-06-19 + +### Fixed +- **V2 In-Page Search/Tag Filter Disappeared**: The per-page resource search box with maturity tag-pills (`static/v2_filter.js`) stopped appearing on every page after `navigation.instant` was enabled in the `2026-06-19` MkDocs UX overhaul. The widget hooked only `DOMContentLoaded`, which under Material's instant (SPA) navigation fires solely on the first load — subsequent in-nav page swaps never re-injected it. Reworked the script to initialize through Material's `document$` observable (emits on every instant navigation, with a `DOMContentLoaded` fallback), guard against double-injection, bind the clickable-tag delegation once on `document`, and show a "no results" state. Cache-bust bumped to `?v=2.9.12`. + +### Changed +- **Removed Redundant In-Page Table of Contents**: Dropped the Markdown `## Table of Contents` block from all 156 V2 content pages and from the renderer (`v2_optimizer.py`). It duplicated the theme's heading index and, on large pages, forced hundreds of links of scroll before any content (e.g. `kubernetes-tools` 297 lines, `kubernetes` 295, `demos` 227). Replaced by the MkDocs Material native sticky **"On this page"** TOC: removed `toc.integrate` and added `toc.follow` in `v2-mkdocs.yml` so headings render in the right sidebar and track scroll position. The `tags.md` index page keeps its TOC (it *is* a navigation index). + ## [[2.9.10]](https://github.com/nubenetes/awesome-kubernetes/releases/tag/v2.9.10) - 2026-06-19 ### Fixed diff --git a/docs/static/v2_filter.js b/docs/static/v2_filter.js index 9eb7370c..a05fadd0 100644 --- a/docs/static/v2_filter.js +++ b/docs/static/v2_filter.js @@ -1,263 +1,269 @@ -document.addEventListener("DOMContentLoaded", function () { - // Initialize the filter only if we are on a page with resource lists - const contentArea = document.querySelector(".md-content__inner"); - if (!contentArea) return; +// Nubenetes V2 — in-page resource search & tag filter widget. +// +// IMPORTANT: The V2 theme enables `navigation.instant` (SPA-style page swaps), +// so `DOMContentLoaded` fires only on the very first load. We therefore drive +// initialization through Material's `document$` observable, which emits on every +// (instant) navigation. We fall back to `DOMContentLoaded` when the observable +// is unavailable (e.g. instant nav disabled or local preview without the bundle). - // Check if there are any resource items on the page (li or details) - const listItems = Array.from(contentArea.querySelectorAll("ul > li")); - const detailsItems = Array.from(contentArea.querySelectorAll("details.note")); - - // If there are no list items and no details items, do not inject the filter - if (listItems.length === 0 && detailsItems.length === 0) return; +(function () { + "use strict"; - // Do not show on the homepage, video hub index page, or technical tags index page (performance) - const h1 = contentArea.querySelector("h1"); - if (h1 && ( - h1.textContent.includes("Nubenetes Elite Portal (V2)") || - h1.textContent.includes("Agentic Video Hub") || - h1.textContent.includes("Technical Tags Index") || - h1.textContent.includes("Intelligence Digest") - )) { - return; - } + function initFilterWidget() { + const contentArea = document.querySelector(".md-content__inner"); + if (!contentArea) return; - // Build the filter container element - const filterContainer = document.createElement("div"); - filterContainer.className = "v2-filter-container"; - filterContainer.innerHTML = ` -
- - -
-
- - - - - - - - -
-
- Showing 0 of 0 resources - -
- `; + // Guard against double-injection (document$ can emit more than once). + if (contentArea.querySelector(".v2-filter-container")) return; - // Insert the filter container right after the main H1 - if (h1 && h1.nextSibling) { - h1.parentNode.insertBefore(filterContainer, h1.nextSibling); - } else { - contentArea.insertBefore(filterContainer, contentArea.firstChild); - } + // Only inject where there are resources to filter. + const listItems = Array.from(contentArea.querySelectorAll("ul > li")); + const detailsItems = Array.from(contentArea.querySelectorAll("details.note")); + if (listItems.length === 0 && detailsItems.length === 0) return; - const searchInput = filterContainer.querySelector(".v2-search-input"); - const searchClear = filterContainer.querySelector(".v2-search-clear"); - const pills = filterContainer.querySelectorAll(".v2-pill"); - const visibleCountSpan = filterContainer.querySelector(".v2-visible-count"); - const totalCountSpan = filterContainer.querySelector(".v2-total-count"); - - // All target elements we want to filter - const targets = []; - - // Prepare list items - listItems.forEach(item => { - // Make sure it's a resource list item (has a link and some content) - if (item.querySelector("a")) { - targets.push({ - element: item, - type: "li", - text: item.textContent.toLowerCase(), - tags: Array.from(item.querySelectorAll(".md-tag")).map(t => t.textContent.toUpperCase()) - }); + // Skip on curated landing/index pages where the widget adds no value. + const h1 = contentArea.querySelector("h1"); + if (h1 && ( + h1.textContent.includes("Nubenetes Elite Portal (V2)") || + h1.textContent.includes("Agentic Video Hub") || + h1.textContent.includes("Technical Tags Index") || + h1.textContent.includes("Intelligence Digest") + )) { + return; } - }); - // Prepare details.note items (if any, like in some V2 structures) - detailsItems.forEach(detail => { - const summary = detail.querySelector("summary"); - targets.push({ - element: detail, - type: "details", - text: detail.textContent.toLowerCase(), - tags: summary ? [summary.textContent.toUpperCase()] : [] - }); - }); + const filterContainer = document.createElement("div"); + filterContainer.className = "v2-filter-container"; + filterContainer.innerHTML = ` +
+ + +
+
+ + + + + + + + +
+
+ Showing 0 of 0 resources + + +
+ `; - totalCountSpan.textContent = targets.length; - visibleCountSpan.textContent = targets.length; + // Insert directly after the main H1. + if (h1 && h1.nextSibling) { + h1.parentNode.insertBefore(filterContainer, h1.nextSibling); + } else { + contentArea.insertBefore(filterContainer, contentArea.firstChild); + } - let activeFilter = "all"; - let searchText = ""; + const searchInput = filterContainer.querySelector(".v2-search-input"); + const searchClear = filterContainer.querySelector(".v2-search-clear"); + const pills = filterContainer.querySelectorAll(".v2-pill"); + const visibleCountSpan = filterContainer.querySelector(".v2-visible-count"); + const totalCountSpan = filterContainer.querySelector(".v2-total-count"); + const noResultsSpan = filterContainer.querySelector(".v2-no-results"); - function updateFilters() { - let visibleCount = 0; - - targets.forEach(item => { - let matchesSearch = true; - let matchesPill = true; - - // 1. Search text filter - if (searchText) { - matchesSearch = item.text.includes(searchText); + // Collect filter targets (resource
  • and details.note blocks). + const targets = []; + listItems.forEach(item => { + if (item.querySelector("a")) { + targets.push({ + element: item, + type: "li", + text: item.textContent.toLowerCase(), + tags: Array.from(item.querySelectorAll(".md-tag")).map(t => t.textContent.toUpperCase()) + }); } + }); + detailsItems.forEach(detail => { + const summary = detail.querySelector("summary"); + targets.push({ + element: detail, + type: "details", + text: detail.textContent.toLowerCase(), + tags: summary ? [summary.textContent.toUpperCase()] : [] + }); + }); - // 2. Pill/Category filter - if (activeFilter !== "all") { - if (activeFilter === "SPANISH") { - matchesPill = item.tags.some(tag => tag.includes("SPANISH")); - } else { - matchesPill = item.tags.some(tag => tag.includes(activeFilter)); + totalCountSpan.textContent = targets.length; + visibleCountSpan.textContent = targets.length; + + let activeFilter = "all"; + let searchText = ""; + + function updateFilters() { + let visibleCount = 0; + + targets.forEach(item => { + let matchesSearch = true; + let matchesPill = true; + + if (searchText) { + matchesSearch = item.text.includes(searchText); } - } - if (matchesSearch && matchesPill) { - item.element.classList.remove("v2-filtered-hidden"); - visibleCount++; - } else { - item.element.classList.add("v2-filtered-hidden"); - } - }); - - visibleCountSpan.textContent = visibleCount; - - // 3. Hide empty headers and subheadings - // If a section (e.g., under h2, h3, h4) has no visible items, hide the section header - const headings = Array.from(contentArea.querySelectorAll("h2, h3, h4")); - headings.forEach(heading => { - let next = heading.nextElementSibling; - let totalItemsInSection = 0; - let hiddenItemsInSection = 0; - - while (next && !["H1", "H2", "H3", "H4"].includes(next.tagName)) { - if (next.tagName === "UL") { - const lis = Array.from(next.querySelectorAll("li")); - lis.forEach(li => { - if (targets.some(t => t.element === li)) { - totalItemsInSection++; - if (li.classList.contains("v2-filtered-hidden")) { - hiddenItemsInSection++; - } - } - }); - } else if (next.tagName === "DETAILS" && next.classList.contains("note")) { - totalItemsInSection++; - if (next.classList.contains("v2-filtered-hidden")) { - hiddenItemsInSection++; + if (activeFilter !== "all") { + if (activeFilter === "SPANISH") { + matchesPill = item.tags.some(tag => tag.includes("SPANISH")); + } else { + matchesPill = item.tags.some(tag => tag.includes(activeFilter)); } } - next = next.nextElementSibling; - } - if (totalItemsInSection > 0 && totalItemsInSection === hiddenItemsInSection) { - heading.classList.add("v2-filtered-hidden"); - } else { - heading.classList.remove("v2-filtered-hidden"); - } - }); - } + if (matchesSearch && matchesPill) { + item.element.classList.remove("v2-filtered-hidden"); + visibleCount++; + } else { + item.element.classList.add("v2-filtered-hidden"); + } + }); - // Input event listener - searchInput.addEventListener("input", function (e) { - searchText = e.target.value.toLowerCase().trim(); - if (searchText) { - searchClear.style.display = "block"; - } else { - searchClear.style.display = "none"; + visibleCountSpan.textContent = visibleCount; + noResultsSpan.style.display = visibleCount === 0 ? "inline" : "none"; + + // Hide section headings whose every resource is filtered out. + const headings = Array.from(contentArea.querySelectorAll("h2, h3, h4")); + headings.forEach(heading => { + let next = heading.nextElementSibling; + let totalItemsInSection = 0; + let hiddenItemsInSection = 0; + + while (next && !["H1", "H2", "H3", "H4"].includes(next.tagName)) { + if (next.tagName === "UL") { + Array.from(next.querySelectorAll("li")).forEach(li => { + if (targets.some(t => t.element === li)) { + totalItemsInSection++; + if (li.classList.contains("v2-filtered-hidden")) hiddenItemsInSection++; + } + }); + } else if (next.tagName === "DETAILS" && next.classList.contains("note")) { + totalItemsInSection++; + if (next.classList.contains("v2-filtered-hidden")) hiddenItemsInSection++; + } + next = next.nextElementSibling; + } + + if (totalItemsInSection > 0 && totalItemsInSection === hiddenItemsInSection) { + heading.classList.add("v2-filtered-hidden"); + } else { + heading.classList.remove("v2-filtered-hidden"); + } + }); } - updateFilters(); - }); - // Clear search - searchClear.addEventListener("click", function () { - searchInput.value = ""; - searchText = ""; - searchClear.style.display = "none"; - updateFilters(); - searchInput.focus(); - }); - - // Pill click event listener - pills.forEach(pill => { - pill.addEventListener("click", function () { - pills.forEach(p => p.classList.remove("active")); - this.classList.add("active"); - activeFilter = this.getAttribute("data-filter"); + searchInput.addEventListener("input", function (e) { + searchText = e.target.value.toLowerCase().trim(); + searchClear.style.display = searchText ? "block" : "none"; updateFilters(); }); - }); - // Make tag badges clickable to trigger filtering - document.addEventListener("click", function (e) { - const tagSpan = e.target.closest(".md-tag"); - if (!tagSpan) return; - - // Skip if inside the filter container itself to avoid loop - if (e.target.closest(".v2-filter-container")) return; - - let tagText = tagSpan.textContent.trim().replace(/[\[\]]/g, "").toUpperCase(); - if (tagText.includes("CONTENT")) { - tagText = tagText.replace(" CONTENT", ""); - } - - // 1. Check if the tag matches a predefined filter pill - const matchingPill = Array.from(pills).find(p => p.getAttribute("data-filter") === tagText); - if (matchingPill) { - pills.forEach(p => p.classList.remove("active")); - matchingPill.classList.add("active"); - activeFilter = tagText; - // Reset search input + searchClear.addEventListener("click", function () { searchInput.value = ""; searchText = ""; searchClear.style.display = "none"; updateFilters(); - filterContainer.scrollIntoView({ behavior: "smooth", block: "nearest" }); - } else { - // 2. If it's a technical stack tag, use it as search input query - pills.forEach(p => p.classList.remove("active")); - const allPill = Array.from(pills).find(p => p.getAttribute("data-filter") === "all"); - if (allPill) allPill.classList.add("active"); - activeFilter = "all"; - - // Populate search input and fire input event - searchInput.value = tagSpan.textContent.trim().toLowerCase(); - searchText = searchInput.value; - searchClear.style.display = "block"; - updateFilters(); - filterContainer.scrollIntoView({ behavior: "smooth", block: "nearest" }); searchInput.focus(); - } - }); -}); - -// Lazy Loading Video Playback Integration -document.addEventListener("DOMContentLoaded", function() { - const lazyContainers = document.querySelectorAll(".video-lazy-container"); - lazyContainers.forEach(container => { - container.addEventListener("click", function() { - const videoUrl = this.getAttribute("data-video-url"); - const videoId = this.getAttribute("data-video-id"); - if (!videoUrl || !videoId) return; - - const iframe = document.createElement("iframe"); - iframe.setAttribute("width", "720"); - iframe.setAttribute("height", "405"); - const autoplayUrl = videoUrl.includes("?") ? `${videoUrl}&autoplay=1` : `${videoUrl}?autoplay=1`; - iframe.setAttribute("src", autoplayUrl); - iframe.setAttribute("title", "YouTube Video"); - iframe.setAttribute("frameborder", "0"); - iframe.setAttribute("allow", "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"); - iframe.setAttribute("allowfullscreen", "true"); - iframe.style.border = "none"; - iframe.style.width = "100%"; - iframe.style.height = "100%"; - iframe.style.borderRadius = "8px"; - - this.innerHTML = ""; - this.appendChild(iframe); - this.style.cursor = "default"; }); - }); -}); + pills.forEach(pill => { + pill.addEventListener("click", function () { + pills.forEach(p => p.classList.remove("active")); + this.classList.add("active"); + activeFilter = this.getAttribute("data-filter"); + updateFilters(); + }); + }); + } + + // Make tag badges anywhere in the content act as filter triggers. + // Bound once on `document` (which survives instant navigation) and resolves + // the current page's widget lazily, dispatching native events so the + // per-page listeners above stay the single source of truth. + function bindTagClicksOnce() { + if (window.__v2TagClickBound) return; + window.__v2TagClickBound = true; + + document.addEventListener("click", function (e) { + const tagSpan = e.target.closest(".md-tag"); + if (!tagSpan) return; + if (e.target.closest(".v2-filter-container")) return; + + const filterContainer = document.querySelector(".v2-filter-container"); + if (!filterContainer) return; + + const pills = filterContainer.querySelectorAll(".v2-pill"); + const searchInput = filterContainer.querySelector(".v2-search-input"); + + let tagText = tagSpan.textContent.trim().replace(/[\[\]]/g, "").toUpperCase(); + if (tagText.includes("CONTENT")) tagText = tagText.replace(" CONTENT", ""); + + const matchingPill = Array.from(pills).find(p => p.getAttribute("data-filter") === tagText); + if (matchingPill) { + // Reset search, then activate the matching maturity pill. + searchInput.value = ""; + searchInput.dispatchEvent(new Event("input", { bubbles: true })); + matchingPill.click(); + } else { + // Treat fine-grained technical tags as a search query. + const allPill = Array.from(pills).find(p => p.getAttribute("data-filter") === "all"); + if (allPill) allPill.click(); + searchInput.value = tagSpan.textContent.trim().toLowerCase(); + searchInput.dispatchEvent(new Event("input", { bubbles: true })); + } + filterContainer.scrollIntoView({ behavior: "smooth", block: "nearest" }); + }); + } + + // Lazy YouTube playback: click a poster to swap in the iframe. + function initLazyVideos() { + document.querySelectorAll(".video-lazy-container").forEach(container => { + if (container.dataset.lazyBound) return; + container.dataset.lazyBound = "1"; + container.addEventListener("click", function () { + const videoUrl = this.getAttribute("data-video-url"); + const videoId = this.getAttribute("data-video-id"); + if (!videoUrl || !videoId) return; + + const iframe = document.createElement("iframe"); + iframe.setAttribute("width", "720"); + iframe.setAttribute("height", "405"); + const autoplayUrl = videoUrl.includes("?") ? `${videoUrl}&autoplay=1` : `${videoUrl}?autoplay=1`; + iframe.setAttribute("src", autoplayUrl); + iframe.setAttribute("title", "YouTube Video"); + iframe.setAttribute("frameborder", "0"); + iframe.setAttribute("allow", "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"); + iframe.setAttribute("allowfullscreen", "true"); + iframe.style.border = "none"; + iframe.style.width = "100%"; + iframe.style.height = "100%"; + iframe.style.borderRadius = "8px"; + + this.innerHTML = ""; + this.appendChild(iframe); + this.style.cursor = "default"; + }); + }); + } + + function init() { + initFilterWidget(); + initLazyVideos(); + } + + bindTagClicksOnce(); + + // Material exposes `document$` (an RxJS observable) that emits on every + // instant navigation. Prefer it; fall back to DOMContentLoaded otherwise. + if (typeof window.document$ !== "undefined" && typeof window.document$.subscribe === "function") { + window.document$.subscribe(init); + } else { + document.addEventListener("DOMContentLoaded", init); + } +})(); diff --git a/src/v2_optimizer.py b/src/v2_optimizer.py index 8f1d8b19..6012b5c6 100644 --- a/src/v2_optimizer.py +++ b/src/v2_optimizer.py @@ -1243,39 +1243,12 @@ class V2VisionEngine: f" Detailed reference for {info['long_title']} in the context of {info['dim']}.\n\n" ) - # Generate Table of Contents (TOC) - exempt_files = self.link_rules.get("hierarchy_rules", {}).get("toc_exempt_files", []) - if f_name not in exempt_files: - toc_lines = [] - toc_used_headers = {info['long_title']} - def build_toc(node, depth=1): - for name, subnode in sorted(node.items()): - if name == "__links__": continue - clean_name = clean_toc_text(name) - - h_name = clean_name - counter = 1 - while h_name in toc_used_headers: - h_name = f"{clean_name} ({counter})" - counter += 1 - toc_used_headers.add(h_name) - - slug = h_name.lower().replace(' ', '-') - slug = re.sub(r'[^a-z0-9-]', '', slug) - slug = re.sub(r'-+', '-', slug).strip('-') - - indent = " " * (depth - 1) - if depth == 1: - toc_lines.append(f"1. [{clean_name}](#{slug})") - else: - toc_lines.append(f"{indent}- [{clean_name}](#{slug})") - build_toc(subnode, depth + 1) - build_toc(info["content"], 1) - if toc_lines: - md += "## Table of Contents\n\n" - md += "\n".join(toc_lines) + "\n\n" + # In-page Markdown Table of Contents intentionally omitted. + # The MkDocs Material theme renders a native, sticky "On this page" TOC + # (right sidebar) from the headings below, so a duplicated Markdown TOC + # only added redundant scroll — extreme on large pages (e.g. 250+ links). + # See v2-mkdocs.yml (toc.integrate removed) and static/v2_filter.js (?v=2.9.12). - if f_name == "introduction.md": md += "## Vision 2026\n\n!!! quote \"The Evolution of Autonomy\"\n From manual curation to agentic intelligence.\n\n### Ecosystem Map\n\n\n```mermaid\ngraph TD\n A[Foundations] --> B[AI & Intelligence]\n A --> C[Hardened Infra]\n B --> D[Agentic Curation]\n C --> E[Enterprise Stability]\n D --> F[Nubenetes Portal]\n E --> F\n```\n\n\n" diff --git a/v2-docs/ChromeDevTools.md b/v2-docs/ChromeDevTools.md index ee71b3a2..cff3e312 100644 --- a/v2-docs/ChromeDevTools.md +++ b/v2-docs/ChromeDevTools.md @@ -6,14 +6,6 @@ !!! info "Architectural Context" Detailed reference for Chrome and Firefox DevTools. HTTP Protocols and WebSockets in the context of Developer Ecosystem. -## Table of Contents - -1. [Developer Workspace](#developer-workspace) - - [Command-Line Tooling](#command-line-tooling) - - [JSON and YAML Manipulators](#json-and-yaml-manipulators) - - [Diagnostics and Debugging](#diagnostics-and-debugging) - - [Browser Developer Tools](#browser-developer-tools) - ## Developer Workspace ### Command-Line Tooling diff --git a/v2-docs/GoogleCloudPlatform.md b/v2-docs/GoogleCloudPlatform.md index e1e1f937..dfb3efd8 100644 --- a/v2-docs/GoogleCloudPlatform.md +++ b/v2-docs/GoogleCloudPlatform.md @@ -6,70 +6,6 @@ !!! info "Architectural Context" Detailed reference for Google Cloud Platform in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [AI and Orchestration](#ai-and-orchestration) - - [Agentic Workflows](#agentic-workflows) - - [Command-Line Tools](#command-line-tools) -1. [Application Development](#application-development) - - [API Management](#api-management) - - [Apigee Integration](#apigee-integration) - - [Workflows](#workflows) - - [Orchestration](#orchestration) -1. [Cloud Infrastructure](#cloud-infrastructure) - - [Compute](#compute) - - [Architectural Decision](#architectural-decision) - - [Containers](#containers) - - [Google Kubernetes Engine](#google-kubernetes-engine) - - [Databases](#databases) - - [Cloud Spanner](#cloud-spanner) - - [GCP Ecosystem](#gcp-ecosystem) - - [CICD Pipelines](#cicd-pipelines) - - [DevOps Frameworks](#devops-frameworks) - - [Developer Tools](#developer-tools) - - [IDE Integrations](#ide-integrations) - - [High Availability](#high-availability) - - [Architecture](#architecture) - - [Microservices](#microservices) - - [Google Cloud](#google-cloud) - - [Networking](#networking) - - [Private Service Connect](#private-service-connect) - - [Public Cloud](#public-cloud) - - [Google Cloud](#google-cloud-1) - - [Security](#security) - - [IAM](#iam) - - [PKI](#pki) - - [Secrets Management](#secrets-management) - - [Serverless](#serverless) - - [Cloud Run](#cloud-run) - - [VPC Networking](#vpc-networking) -1. [DevOps and Delivery](#devops-and-delivery) - - [CICD](#cicd) - - [Containerization](#containerization) - - [Lifecycle Management](#lifecycle-management) - - [Continuous Delivery](#continuous-delivery) - - [GKE](#gke) - - [GKE GA](#gke-ga) - - [Industry Assessment](#industry-assessment) -1. [DevSecOps](#devsecops) - - [CICD Pipelines](#cicd-pipelines-1) - - [Hybrid Cloud Architecture](#hybrid-cloud-architecture) -1. [DevSecOps and IDEs](#devsecops-and-ides) - - [Google Cloud Code](#google-cloud-code) - - [Developer Experience](#developer-experience) -1. [Hybrid and Multi-Cloud](#hybrid-and-multi-cloud) - - [Anthos](#anthos) - - [Ingress](#ingress) - - [Strategic Guide](#strategic-guide) - - [Windows Containers](#windows-containers) -1. [Networking and Security](#networking-and-security) - - [Service Discovery](#service-discovery) - - [Registry](#registry) - - [Service Mesh](#service-mesh) - - [Traffic Management](#traffic-management) - - [Traffic Management](#traffic-management-1) - - [Load Balancing](#load-balancing) - ## AI and Orchestration ### Agentic Workflows diff --git a/v2-docs/about.md b/v2-docs/about.md index 372a57f0..597ce108 100644 --- a/v2-docs/about.md +++ b/v2-docs/about.md @@ -6,17 +6,6 @@ !!! info "Architectural Context" Detailed reference for About Nubenetes in the context of Architectural Foundations. -## Table of Contents - -1. [Automation and Orchestration](#automation-and-orchestration) - - [API Orchestration](#api-orchestration) - - [Postman](#postman) - - [Configuration Management](#configuration-management) - - [Ansible AWX](#ansible-awx) - - [Ansible Kubernetes Module](#ansible-kubernetes-module) - - [Infrastructure as Code](#infrastructure-as-code) - - [Terraform Boilerplates](#terraform-boilerplates) - ## The Nubenetes Engineering Manifest !!! quote "The Positive Sum Game" diff --git a/v2-docs/ai-agents-mcp.md b/v2-docs/ai-agents-mcp.md index d2faa6f3..4f59ec21 100644 --- a/v2-docs/ai-agents-mcp.md +++ b/v2-docs/ai-agents-mcp.md @@ -6,18 +6,6 @@ !!! info "Architectural Context" Detailed reference for AI Agents and Model Context Protocol (MCP) for Kubernetes in the context of AI. -## Table of Contents - -1. [AI Infrastructure](#ai-infrastructure) - - [Distributed Computing](#distributed-computing) - - [Kube-Ray](#kube-ray) - - [LLM Serving](#llm-serving) - - [LocalAI](#localai) - - [vLLM](#vllm) -1. [Cloud Native Operations](#cloud-native-operations) - - [AI AIOps](#ai-aiops) - - [Kubernetes Troubleshooting](#kubernetes-troubleshooting) - ## AI Infrastructure ### Distributed Computing diff --git a/v2-docs/ai.md b/v2-docs/ai.md index 6641ed3b..cb74a48f 100644 --- a/v2-docs/ai.md +++ b/v2-docs/ai.md @@ -6,36 +6,6 @@ !!! info "Architectural Context" Detailed reference for Artificial Intelligence in the context of AI. -## Table of Contents - -1. [AI and Orchestration](#ai-and-orchestration) - - [Agentic Workflows](#agentic-workflows) - - [Command-Line Tools](#command-line-tools) -1. [Artificial Intelligence](#artificial-intelligence-1) - - [Generative AI Engineering](#generative-ai-engineering) - - [API Integration Patterns](#api-integration-patterns) - - [Architecture Patterns](#architecture-patterns) -1. [Cloud Native Operations](#cloud-native-operations) - - [AI AIOps](#ai-aiops) - - [Kubernetes Troubleshooting](#kubernetes-troubleshooting) - - [AI-Powered Operations AIOps](#ai-powered-operations-aiops) - - [Kubernetes Troubleshooting](#kubernetes-troubleshooting-1) - - [Infrastructure as Code](#infrastructure-as-code) - - [AI-Assisted IaC](#ai-assisted-iac) - - [Kubernetes Orchestration](#kubernetes-orchestration) - - [AI Workloads on K8s](#ai-workloads-on-k8s) -1. [Container Orchestration](#container-orchestration) - - [Azure Kubernetes Service](#azure-kubernetes-service) - - [AKS Fleet Manager](#aks-fleet-manager) -1. [Developer Tooling](#developer-tooling) - - [AI Code Assistants](#ai-code-assistants) - - [Prompt Templates](#prompt-templates) -1. [Software Engineering](#software-engineering) - - [AI-Assisted Development](#ai-assisted-development) - - [Multi-Repository Architecture](#multi-repository-architecture) - - [Professional Development](#professional-development) - - [Core Architectures](#core-architectures) - ## AI and Orchestration ### Agentic Workflows diff --git a/v2-docs/angular.md b/v2-docs/angular.md index 6aa93e83..bb467e3e 100644 --- a/v2-docs/angular.md +++ b/v2-docs/angular.md @@ -6,12 +6,6 @@ !!! info "Architectural Context" Detailed reference for Angular framework in the context of Developer Ecosystem. -## Table of Contents - -1. [App Development](#app-development) - - [Frontend](#frontend) - - [Continuous Delivery](#continuous-delivery) - ## App Development ### Frontend diff --git a/v2-docs/ansible.md b/v2-docs/ansible.md index 374b38fd..1dbb8e85 100644 --- a/v2-docs/ansible.md +++ b/v2-docs/ansible.md @@ -6,31 +6,6 @@ !!! info "Architectural Context" Detailed reference for Configuration Management. Ansible in the context of Hardened Infrastructure. -## Table of Contents - -1. [Automation](#automation) - - [API Integration](#api-integration) - - [Ansible HTTP](#ansible-http) -1. [Automation and Orchestration](#automation-and-orchestration) - - [Configuration Management](#configuration-management) - - [Ansible AWX](#ansible-awx) -1. [Container Orchestration](#container-orchestration) - - [Kubernetes](#kubernetes) - - [Ansible Integration](#ansible-integration) - - [Deployments](#deployments) - - [Helm](#helm) - - [Helm Integration](#helm-integration) - - [Object Management](#object-management) - - [Operators](#operators) -1. [Infrastructure as Code](#infrastructure-as-code) - - [Ansible](#ansible) - - [Application Servers](#application-servers) - - [Comparison](#comparison) - - [Containers](#containers) - - [NGINX Automation](#nginx-automation) - - [Deployment Tools](#deployment-tools) - - [Application Deployment](#application-deployment) - ## Automation ### API Integration diff --git a/v2-docs/api.md b/v2-docs/api.md index cae74369..d970be87 100644 --- a/v2-docs/api.md +++ b/v2-docs/api.md @@ -6,84 +6,6 @@ !!! info "Architectural Context" Detailed reference for APIs with SOAP, REST and gRPC in the context of Developer Ecosystem. -## Table of Contents - -1. [API Architectures](#api-architectures) - - [GraphQL](#graphql) - - [Adoption](#adoption) - - [Federation](#federation) - - [Hasura](#hasura) - - [Specification](#specification) - - [Patterns](#patterns) - - [Comparison](#comparison) - - [REST](#rest) - - [Design Principles](#design-principles) - - [Implementation](#implementation) - - [Introduction](#introduction) - - [RPC](#rpc) - - [Open-RPC](#open-rpc) - - [gRPC](#grpc) - - [gRPC-Web](#grpc-web) - - [Real-Time](#real-time) - - [Socket.IO](#socketio) - - [WebSockets](#websockets) -1. [API Management](#api-management) - - [Platform Engineering](#platform-engineering) - - [API Strategy](#api-strategy) -1. [API Security](#api-security) - - [Design](#design) - - [Best Practices](#best-practices) - - [Enterprise](#enterprise) - - [Implementation](#implementation-1) - - [Protection](#protection) - - [Tools](#tools) - - [Threat-Modeling](#threat-modeling) - - [Risks](#risks) -1. [API Testing](#api-testing) - - [Performance](#performance) - - [Continuous Integration](#continuous-integration) -1. [API Tooling](#api-tooling) - - [Codegen](#codegen) - - [OpenAPI](#openapi) -1. [Application Integration](#application-integration) - - [API Design](#api-design) - - [API Lifecycle](#api-lifecycle) - - [Architecture Comparisons](#architecture-comparisons) - - [Hands-on Deployment](#hands-on-deployment) - - [Protocols and Formats](#protocols-and-formats) - - [Strategic Governance](#strategic-governance) - - [API Gateways](#api-gateways) - - [Architecture Comparisons](#architecture-comparisons-1) - - [Best Practices](#best-practices-1) -1. [Architecture](#architecture) - - [API Management](#api-management-1) - - [SaaS Platforms](#saas-platforms) -1. [Cloud Providers](#cloud-providers) - - [AWS](#aws) - - [Serverless APIs](#serverless-apis) -1. [Enterprise Architecture](#enterprise-architecture) - - [Case Studies](#case-studies) - - [Financial Sector](#financial-sector) -1. [Event-Driven](#event-driven) - - [AsyncAPI](#asyncapi) - - [Simulation](#simulation) - - [Specification](#specification-1) - - [Trends](#trends) -1. [Microservices](#microservices) - - [Design Patterns](#design-patterns) - - [Process Automation](#process-automation) -1. [Observability](#observability) - - [Data Ingestion](#data-ingestion) - - [WebSockets IoT](#websockets-iot) -1. [Quality Assurance](#quality-assurance) - - [API Design](#api-design-1) - - [Network Debugging](#network-debugging) -1. [Software Engineering](#software-engineering) - - [API Design](#api-design-2) - - [Industry Surveys](#industry-surveys) - - [Protocol Selection](#protocol-selection) - - [SOAP vs REST](#soap-vs-rest) - ## API Architectures ### GraphQL diff --git a/v2-docs/appointment-scheduling.md b/v2-docs/appointment-scheduling.md index 0bd9cc9e..1fa7273a 100644 --- a/v2-docs/appointment-scheduling.md +++ b/v2-docs/appointment-scheduling.md @@ -6,12 +6,6 @@ !!! info "Architectural Context" Detailed reference for Appointment Scheduling Software in the context of Career & Industry. -## Table of Contents - -1. [Collaborative Operations](#collaborative-operations) - - [Workspace Scheduling](#workspace-scheduling) - - [Open Source Tools](#open-source-tools) - ## Collaborative Operations ### Workspace Scheduling diff --git a/v2-docs/argo.md b/v2-docs/argo.md index a7b8036e..0e821439 100644 --- a/v2-docs/argo.md +++ b/v2-docs/argo.md @@ -6,40 +6,6 @@ !!! info "Architectural Context" Detailed reference for Argo Declarative GitOps for Kubernetes in the context of Engineering Pipeline. -## Table of Contents - -1. [GitOps and CD](#gitops-and-cd) - - [Argo Rollouts](#argo-rollouts) - - [Blue-Green Deployment](#blue-green-deployment) - - [Canary Deployment](#canary-deployment) - - [Configuration Management](#configuration-management) - - [Progressive Delivery](#progressive-delivery) - - [ArgoCD](#argocd) - - [Patterns](#patterns) - - [App-of-Apps](#app-of-apps) - - [Workload Management](#workload-management) - - [Demos](#demos) - - [CICD Integration](#cicd-integration) -1. [Kubernetes GitOps and Packaging](#kubernetes-gitops-and-packaging) - - [Argo Project Ecosystem](#argo-project-ecosystem) - - [Event-Driven Automation](#event-driven-automation) -1. [Platform Engineering](#platform-engineering) - - [ArgoCD](#argocd-1) - - [Internal Developer Platforms](#internal-developer-platforms) - - [CICD Migration](#cicd-migration) - - [Argo Workflows](#argo-workflows) - - [Jenkins](#jenkins) - - [GitOps](#gitops) - - [AWS EKS](#aws-eks) - - [Tekton](#tekton) - - [GitHub Actions](#github-actions) - - [AWS EKS](#aws-eks-1) - - [Terraform Integration](#terraform-integration) - - [Data Infrastructure](#data-infrastructure) - - [Progressive Delivery](#progressive-delivery-1) - - [DNS Routing](#dns-routing) - - [Blue-Green Deployment](#blue-green-deployment-1) - ## GitOps and CD ### Argo Rollouts diff --git a/v2-docs/aws-architecture.md b/v2-docs/aws-architecture.md index 90390df8..118b802e 100644 --- a/v2-docs/aws-architecture.md +++ b/v2-docs/aws-architecture.md @@ -6,15 +6,6 @@ !!! info "Architectural Context" Detailed reference for AWS Architecture and Best Practices in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Cloud Architecture](#cloud-architecture) - - [Case Studies](#case-studies) - - [Enterprise Scale](#enterprise-scale) -1. [Kubernetes and Platform Engineering](#kubernetes-and-platform-engineering) - - [Modernization Tools](#modernization-tools) - - [Microservice Migration](#microservice-migration) - ## Cloud Architecture ### Case Studies diff --git a/v2-docs/aws-backup.md b/v2-docs/aws-backup.md index dc206682..0c28581d 100644 --- a/v2-docs/aws-backup.md +++ b/v2-docs/aws-backup.md @@ -6,45 +6,6 @@ !!! info "Architectural Context" Detailed reference for AWS Backup and Migrations. Design for failure. Disaster Recovery in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [Cloud Architecture](#cloud-architecture) - - [AWS Solutions](#aws-solutions) - - [Disaster Recovery](#disaster-recovery) -1. [Cloud Migration](#cloud-migration) - - [AWS Competency](#aws-competency) - - [Enterprise Migration](#enterprise-migration) - - [AWS MGN](#aws-mgn) - - [Multi-Region](#multi-region) - - [Multi-Account Strategy](#multi-account-strategy) - - [AWS Resources](#aws-resources) - - [VM ImportExport](#vm-importexport) - - [On-Premises](#on-premises) -1. [Data and Analytics](#data-and-analytics) - - [Data Protection](#data-protection) - - [AWS Backup](#aws-backup) -1. [Infrastructure](#infrastructure) - - [Disaster Recovery](#disaster-recovery-1) - - [AWS Architectures](#aws-architectures) - - [Single Region](#single-region) - - [AWS Compute](#aws-compute) - - [EC2](#ec2) - - [AWS Services](#aws-services) - - [AWS Backup](#aws-backup-1) - - [Multi-Region](#multi-region-1) - - [S3 Protection](#s3-protection) - - [AWS Storage](#aws-storage) - - [Automation](#automation) - - [EBS Snapshots](#ebs-snapshots) - - [Veeam Integration](#veeam-integration) - - [Chaos Engineering](#chaos-engineering) - - [Cloud Integrations](#cloud-integrations) - - [DNS Routing](#dns-routing) - - [Resilience Design](#resilience-design) - ## Architectural Foundations ### Kubernetes Tools diff --git a/v2-docs/aws-containers.md b/v2-docs/aws-containers.md index 756b5372..4f0b0ae8 100644 --- a/v2-docs/aws-containers.md +++ b/v2-docs/aws-containers.md @@ -6,15 +6,6 @@ !!! info "Architectural Context" Detailed reference for AWS Containers in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Cloud Infrastructure](#cloud-infrastructure) - - [AWS](#aws) - - [Container Compute](#container-compute) - - [Container Registries](#container-registries) - - [Continuous Deployment](#continuous-deployment) - - [Security Practices](#security-practices) - ## Cloud Infrastructure ### AWS diff --git a/v2-docs/aws-data.md b/v2-docs/aws-data.md index a30726ad..5575d25f 100644 --- a/v2-docs/aws-data.md +++ b/v2-docs/aws-data.md @@ -6,14 +6,6 @@ !!! info "Architectural Context" Detailed reference for AWS Big Data in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Cloud Infrastructure](#cloud-infrastructure) - - [AWS](#aws) - - [Event Streaming](#event-streaming) - - [Event Streaming](#event-streaming-1) - - [Comparison](#comparison) - ## Cloud Infrastructure ### AWS diff --git a/v2-docs/aws-databases.md b/v2-docs/aws-databases.md index 64150e55..086a9fc8 100644 --- a/v2-docs/aws-databases.md +++ b/v2-docs/aws-databases.md @@ -6,19 +6,6 @@ !!! info "Architectural Context" Detailed reference for AWS RDS Databases in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Cloud Infrastructure](#cloud-infrastructure) - - [AWS Databases](#aws-databases) - - [Amazon Aurora](#amazon-aurora) - - [Amazon RDS](#amazon-rds) - - [Databases](#databases) - - [NoSQL](#nosql) - - [Serverless Architecture](#serverless-architecture) -1. [Cloud Native](#cloud-native) - - [Kubernetes Operators](#kubernetes-operators) - - [Managed Databases](#managed-databases) - ## Cloud Infrastructure ### AWS Databases diff --git a/v2-docs/aws-devops.md b/v2-docs/aws-devops.md index ce57222b..5d84b5e8 100644 --- a/v2-docs/aws-devops.md +++ b/v2-docs/aws-devops.md @@ -6,17 +6,6 @@ !!! info "Architectural Context" Detailed reference for AWS DevOps. AWS CodePipeline in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Cloud-Native Provisioning](#cloud-native-provisioning) - - [CICD Integration](#cicd-integration) - - [AWS CodePipeline](#aws-codepipeline) - - [AWS DevOps](#aws-devops) -1. [Multi-Cluster and Edge](#multi-cluster-and-edge) - - [Cluster Federation](#cluster-federation) - - [Admiralty](#admiralty) - - [Serverless Integration](#serverless-integration) - ## Cloud-Native Provisioning ### CICD Integration diff --git a/v2-docs/aws-iac.md b/v2-docs/aws-iac.md index c089ce31..ffc635b7 100644 --- a/v2-docs/aws-iac.md +++ b/v2-docs/aws-iac.md @@ -6,31 +6,6 @@ !!! info "Architectural Context" Detailed reference for AWS IaC in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [Cloud Computing](#cloud-computing) - - [AWS](#aws) - - [Infrastructure as Code](#infrastructure-as-code) -1. [Infrastructure as Code](#infrastructure-as-code-1) - - [Automated Generation](#automated-generation) - - [AWS Resource Importers](#aws-resource-importers) - - [Compute Orchestration](#compute-orchestration) - - [Recording Tools](#recording-tools) - - [CloudFormation](#cloudformation) - - [Automated Generation](#automated-generation-1) - - [Compliance and Policy](#compliance-and-policy) - - [Criticism and Analysis](#criticism-and-analysis) - - [GitOps Integrations](#gitops-integrations) - - [Identity and Access Management](#identity-and-access-management) - - [Messaging Configuration](#messaging-configuration) - - [Pre-commit Hooks](#pre-commit-hooks) - - [Registries](#registries) - - [Starter Templates](#starter-templates) - - [Storage Configuration](#storage-configuration) - ## Architectural Foundations ### Kubernetes Tools diff --git a/v2-docs/aws-messaging.md b/v2-docs/aws-messaging.md index 86b77fde..10587a1b 100644 --- a/v2-docs/aws-messaging.md +++ b/v2-docs/aws-messaging.md @@ -6,13 +6,6 @@ !!! info "Architectural Context" Detailed reference for AWS Messaging Services in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Cloud Infrastructure](#cloud-infrastructure) - - [AWS](#aws) - - [Event-Driven Architecture](#event-driven-architecture) - - [Messaging Services](#messaging-services) - ## Cloud Infrastructure ### AWS diff --git a/v2-docs/aws-miscellaneous.md b/v2-docs/aws-miscellaneous.md index ae7bc029..a1acdca3 100644 --- a/v2-docs/aws-miscellaneous.md +++ b/v2-docs/aws-miscellaneous.md @@ -6,37 +6,6 @@ !!! info "Architectural Context" Detailed reference for AWS Miscellaneous in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Application Development](#application-development) - - [Container Orchestration](#container-orchestration) - - [App Runner](#app-runner) - - [Microservices](#microservices) - - [E-commerce Reference](#e-commerce-reference) -1. [Cloud Infrastructure](#cloud-infrastructure) - - [AWS](#aws) - - [Load Balancing](#load-balancing) - - [PaaS Platform](#paas-platform) - - [Web Servers](#web-servers) -1. [Cloud Native Infrastructure](#cloud-native-infrastructure) - - [Service Mesh](#service-mesh) - - [AWS](#aws-1) -1. [Edge and IoT](#edge-and-iot) - - [AWS](#aws-2) - - [IoT Platforms](#iot-platforms) -1. [Infrastructure as Code](#infrastructure-as-code) - - [AWS CDK](#aws-cdk) - - [Serverless Applications](#serverless-applications) -1. [Networking and Security](#networking-and-security) - - [Service Mesh](#service-mesh-1) - - [Multi-Account](#multi-account) -1. [Serverless](#serverless) - - [Voice User Interfaces](#voice-user-interfaces) - - [Alexa Skills](#alexa-skills) -1. [Testing and Chaos](#testing-and-chaos) - - [Debugging](#debugging) - - [AWS Troubleshooting](#aws-troubleshooting) - ## Application Development ### Container Orchestration diff --git a/v2-docs/aws-monitoring.md b/v2-docs/aws-monitoring.md index da5709d9..3f877c93 100644 --- a/v2-docs/aws-monitoring.md +++ b/v2-docs/aws-monitoring.md @@ -6,18 +6,6 @@ !!! info "Architectural Context" Detailed reference for AWS Monitoring and Logging in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Cloud Native Platforms](#cloud-native-platforms) - - [AWS](#aws) - - [Managed Observability](#managed-observability) -1. [Observability and Monitoring](#observability-and-monitoring) - - [CloudWatch](#cloudwatch) - - [Prometheus Integration](#prometheus-integration) -1. [Service Discovery](#service-discovery) - - [AWS Cloud Map](#aws-cloud-map) - - [Health Checks](#health-checks) - ## Cloud Native Platforms ### AWS diff --git a/v2-docs/aws-networking.md b/v2-docs/aws-networking.md index ea321542..6ed061bc 100644 --- a/v2-docs/aws-networking.md +++ b/v2-docs/aws-networking.md @@ -6,32 +6,6 @@ !!! info "Architectural Context" Detailed reference for AWS Networking in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Cloud Infrastructure](#cloud-infrastructure) - - [AWS](#aws) - - [API Gateway](#api-gateway) - - [Architecture](#architecture) - - [Cross-Account Patterns](#cross-account-patterns) - - [CDN](#cdn) - - [CloudFront](#cloudfront) - - [Edge Security](#edge-security) - - [Kubernetes Networking](#kubernetes-networking) - - [Controllers](#controllers) - - [Load Balancing](#load-balancing) - - [Announcements](#announcements) - - [Application Load Balancer](#application-load-balancer) - - [Configuration Updates](#configuration-updates) - - [Serverless Integration](#serverless-integration) - - [Reverse Proxy](#reverse-proxy) - - [NGINX Plus](#nginx-plus) - - [Security](#security) - - [WAF](#waf) -1. [Software Engineering](#software-engineering) - - [Deployment Patterns](#deployment-patterns) - - [Blue-Green](#blue-green) - - [ALB](#alb) - ## Cloud Infrastructure ### AWS diff --git a/v2-docs/aws-newfeatures.md b/v2-docs/aws-newfeatures.md index a34e4046..c7709c1a 100644 --- a/v2-docs/aws-newfeatures.md +++ b/v2-docs/aws-newfeatures.md @@ -6,49 +6,6 @@ !!! info "Architectural Context" Detailed reference for AWS New Features in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Application Integration](#application-integration) - - [Serverless Orchestration](#serverless-orchestration) - - [Step Functions](#step-functions) -1. [Cloud Infrastructure](#cloud-infrastructure) - - [AWS](#aws) - - [Container Orchestration](#container-orchestration) - - [Serverless](#serverless) - - [Container Orchestration](#container-orchestration-1) - - [ECS Deployments](#ecs-deployments) - - [EKS Windows](#eks-windows) - - [Storage Integration](#storage-integration) - - [Messaging](#messaging) - - [Event-Driven](#event-driven) - - [Networking](#networking) - - [Load Balancing](#load-balancing) - - [Security and Service Mesh](#security-and-service-mesh) - - [HashiCorp HCP](#hashicorp-hcp) - - [Serverless](#serverless-1) - - [Compute](#compute) - - [Developer Tooling](#developer-tooling) -1. [Containers](#containers) - - [Kubernetes](#kubernetes) - - [EKS Console](#eks-console) - - [EKS Networking](#eks-networking) - - [EKS Security](#eks-security) - - [Market Analysis](#market-analysis) - - [ReInvent Announcements](#reinvent-announcements) -1. [Data and Analytics](#data-and-analytics) - - [Data Streaming](#data-streaming) - - [Kinesis](#kinesis) -1. [Database](#database) - - [RDS Proxy](#rds-proxy) - - [Networking](#networking-1) -1. [Observability](#observability) - - [Grafana](#grafana) - - [Managed Visualization](#managed-visualization) - - [OpenTelemetry](#opentelemetry) - - [Distributed Tracing](#distributed-tracing) - - [Prometheus](#prometheus) - - [Managed Container Monitoring](#managed-container-monitoring) - ## Application Integration ### Serverless Orchestration diff --git a/v2-docs/aws-pricing.md b/v2-docs/aws-pricing.md index b11d99ac..3fae16a2 100644 --- a/v2-docs/aws-pricing.md +++ b/v2-docs/aws-pricing.md @@ -6,12 +6,6 @@ !!! info "Architectural Context" Detailed reference for AWS Pricing and Cost Optimization in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Cloud Infrastructure](#cloud-infrastructure) - - [AWS Cost Management](#aws-cost-management) - - [Kubernetes FinOps](#kubernetes-finops) - ## Cloud Infrastructure ### AWS Cost Management diff --git a/v2-docs/aws-security.md b/v2-docs/aws-security.md index 6f2c76f5..17713c4b 100644 --- a/v2-docs/aws-security.md +++ b/v2-docs/aws-security.md @@ -6,23 +6,6 @@ !!! info "Architectural Context" Detailed reference for AWS Security in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Cloud Architecture](#cloud-architecture) - - [AWS](#aws) - - [Cryptography](#cryptography) - - [Identity and Access Management](#identity-and-access-management) - - [SaaS Architecture](#saas-architecture) - - [Secrets Management](#secrets-management) - - [Security Auditing](#security-auditing) - - [Security and Compliance](#security-and-compliance) -1. [DevSecOps](#devsecops) - - [Policy as Code](#policy-as-code) - - [Open Policy Agent](#open-policy-agent) -1. [Security and Identity](#security-and-identity) - - [Secrets Management](#secrets-management-1) - - [Kubernetes Integration](#kubernetes-integration) - ## Cloud Architecture ### AWS diff --git a/v2-docs/aws-serverless.md b/v2-docs/aws-serverless.md index eaf8834a..df91974c 100644 --- a/v2-docs/aws-serverless.md +++ b/v2-docs/aws-serverless.md @@ -6,64 +6,6 @@ !!! info "Architectural Context" Detailed reference for AWS Serverless in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [API Management](#api-management) - - [GraphQL and AppSync](#graphql-and-appsync) - - [Security](#security) -1. [Cloud Platforms](#cloud-platforms) - - [Serverless Architecture](#serverless-architecture) - - [AWS Lambda](#aws-lambda) - - [Concepts](#concepts) - - [Resources](#resources) -1. [Container Orchestration](#container-orchestration) - - [AWS ECS and Fargate](#aws-ecs-and-fargate) - - [Machine Learning Ops](#machine-learning-ops) - - [Performance Optimization](#performance-optimization) - - [Storage Architecture](#storage-architecture) - - [Kubernetes and EKS](#kubernetes-and-eks) - - [Serverless Containers](#serverless-containers) -1. [DevOps and CICD](#devops-and-cicd) - - [Serverless Deployment](#serverless-deployment) - - [AWS SAM](#aws-sam) - - [AWS SAM Pipelines](#aws-sam-pipelines) -1. [Infrastructure as Code](#infrastructure-as-code) - - [AWS CDK](#aws-cdk) - - [Serverless IaC](#serverless-iac) - - [AWS SAM](#aws-sam-1) - - [Fundamentals](#fundamentals) - - [Terraform](#terraform) - - [Serverless Provisioning](#serverless-provisioning) -1. [Modernization](#modernization) - - [Monolith Migration](#monolith-migration) - - [.NET Core](#net-core) -1. [Observability and Monitoring](#observability-and-monitoring) - - [CloudWatch](#cloudwatch) - - [Alerting Systems](#alerting-systems) -1. [Security and Governance](#security-and-governance) - - [Secret Management](#secret-management) - - [Go Runtime](#go-runtime) -1. [Serverless Architecture](#serverless-architecture-1) - - [API Gateway](#api-gateway) - - [REST APIs](#rest-apis) - - [AWS Lambda](#aws-lambda-1) - - [Antipatterns](#antipatterns) - - [Cold Starts](#cold-starts) - - [Concurrency and Scaling](#concurrency-and-scaling) - - [Configuration Management](#configuration-management) - - [Fundamentals](#fundamentals-1) - - [Hardware Platforms](#hardware-platforms) - - [Java Runtimes](#java-runtimes) - - [Performance Optimization](#performance-optimization-1) - - [Caching](#caching) - - [Data Management](#data-management) - - [Event-Driven](#event-driven) - - [Design Patterns](#design-patterns) - - [Messaging and Integration](#messaging-and-integration) - - [Webhooks](#webhooks) - - [Orchestration](#orchestration) - - [AWS Step Functions](#aws-step-functions) - ## API Management ### GraphQL and AppSync diff --git a/v2-docs/aws-spain.md b/v2-docs/aws-spain.md index 201f4d2e..ea0061df 100644 --- a/v2-docs/aws-spain.md +++ b/v2-docs/aws-spain.md @@ -6,14 +6,6 @@ !!! info "Architectural Context" Detailed reference for Spain in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Cloud Platforms](#cloud-platforms) - - [AWS Education](#aws-education) - - [Resources](#resources) - - [AWS Regional Infrastructure](#aws-regional-infrastructure) - - [Spain](#spain-1) - ## Cloud Platforms ### AWS Education diff --git a/v2-docs/aws-storage.md b/v2-docs/aws-storage.md index 295c4be2..478b5103 100644 --- a/v2-docs/aws-storage.md +++ b/v2-docs/aws-storage.md @@ -6,45 +6,6 @@ !!! info "Architectural Context" Detailed reference for AWS Storage. S3 and EBS. AWS Storage Gateway in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [Cloud Infrastructure](#cloud-infrastructure) - - [Compute](#compute) - - [AWS EC2](#aws-ec2) - - [Storage Provisioning](#storage-provisioning) - - [Data Integration](#data-integration) - - [AWS Transfer Family](#aws-transfer-family) - - [Reliability Engineering](#reliability-engineering) - - [Multi-Region Architectures](#multi-region-architectures) - - [Storage](#storage) - - [AWS EFS](#aws-efs) - - [Performance Tuning](#performance-tuning) - - [AWS S3](#aws-s3) - - [Analytics](#analytics) -1. [Cloud Infrastructure and Orchestration](#cloud-infrastructure-and-orchestration) - - [Storage and Databases](#storage-and-databases) - - [Distributed Block Storage](#distributed-block-storage) -1. [Cloud Native Storage](#cloud-native-storage) - - [AWS EBS](#aws-ebs) - - [Snapshot Automation](#snapshot-automation) - - [Sparse Snapshots](#sparse-snapshots) - - [Storage Performance](#storage-performance) - - [AWS S3](#aws-s3-1) - - [FAQ Reference](#faq-reference) - - [Private Connectivity](#private-connectivity) - - [S3 Architecture](#s3-architecture) - - [S3 Namespace](#s3-namespace) - - [S3 Synchronization](#s3-synchronization) - - [Storage Lifecycle](#storage-lifecycle) - - [S3 API Compatibility](#s3-api-compatibility) - - [S3 Security](#s3-security) -1. [Cloud Platform](#cloud-platform) - - [AWS Infrastructure](#aws-infrastructure) - - [Storage Management](#storage-management) - ## Architectural Foundations ### Kubernetes Tools diff --git a/v2-docs/aws-tools-scripts.md b/v2-docs/aws-tools-scripts.md index dfb4f248..2c01ef1e 100644 --- a/v2-docs/aws-tools-scripts.md +++ b/v2-docs/aws-tools-scripts.md @@ -6,15 +6,6 @@ !!! info "Architectural Context" Detailed reference for AWS Tools and Scripts in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Containers](#containers) - - [Developer Tooling](#developer-tooling) - - [Cloud Emulation](#cloud-emulation) -1. [Infrastructure as Code](#infrastructure-as-code) - - [Boilerplates](#boilerplates) - - [AWS Templates](#aws-templates) - ## Containers ### Developer Tooling diff --git a/v2-docs/aws-training.md b/v2-docs/aws-training.md index 348906e6..e3a21c3a 100644 --- a/v2-docs/aws-training.md +++ b/v2-docs/aws-training.md @@ -6,12 +6,6 @@ !!! info "Architectural Context" Detailed reference for AWS Training and Certification in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Cloud Computing](#cloud-computing) - - [AWS](#aws) - - [Infrastructure as Code](#infrastructure-as-code) - ## Cloud Computing ### AWS diff --git a/v2-docs/aws.md b/v2-docs/aws.md index b60a5d08..bf5b6e5f 100644 --- a/v2-docs/aws.md +++ b/v2-docs/aws.md @@ -6,16 +6,6 @@ !!! info "Architectural Context" Detailed reference for Public Cloud Provider. Amazon Web Services in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Cloud Computing](#cloud-computing) - - [AWS](#aws) - - [Architecture and Guides](#architecture-and-guides) -1. [Cloud Infrastructure](#cloud-infrastructure) - - [Application Integration](#application-integration) - - [API Management](#api-management) - - [Serverless Services](#serverless-services) - ## Cloud Computing ### AWS diff --git a/v2-docs/azure.md b/v2-docs/azure.md index d15138a0..1a814bda 100644 --- a/v2-docs/azure.md +++ b/v2-docs/azure.md @@ -6,146 +6,6 @@ !!! info "Architectural Context" Detailed reference for Microsoft Azure in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [API Design](#api-design) - - [Standards](#standards) - - [REST API](#rest-api) -1. [Architecture](#architecture) - - [Container Orchestration](#container-orchestration) - - [AKS Mission Critical](#aks-mission-critical) - - [Well-Architected Framework](#well-architected-framework) - - [Mission-Critical Workloads](#mission-critical-workloads) -1. [Architecture and Microservices](#architecture-and-microservices) - - [Infrastructure as Code](#infrastructure-as-code) - - [API Management](#api-management) - - [Application Delivery](#application-delivery) - - [Migration Guides](#migration-guides) - - [Java Ecosystem](#java-ecosystem) - - [Observability](#observability) - - [Application Insights](#application-insights) - - [Spring Cloud](#spring-cloud) - - [Design Patterns](#design-patterns) -1. [CICD Pipelines](#cicd-pipelines) - - [DevOps Platforms](#devops-platforms) - - [DevTest Labs](#devtest-labs) -1. [Cloud Application Platforms](#cloud-application-platforms) - - [Azure App Service](#azure-app-service) - - [App Service Configuration](#app-service-configuration) - - [App Service Diagnostics](#app-service-diagnostics) - - [Custom Containers](#custom-containers) - - [Java Runtime Configurations](#java-runtime-configurations) - - [Serverless Computing](#serverless-computing) - - [Azure Functions Core](#azure-functions-core) -1. [Cloud Architecture](#cloud-architecture) - - [PaaS](#paas) - - [App Service](#app-service) -1. [Cloud DevOps](#cloud-devops) - - [CI-CD Pipelines](#ci-cd-pipelines) - - [YAML Templating and Reusability](#yaml-templating-and-reusability) - - [Container Orchestration](#container-orchestration-1) - - [GitOps](#gitops) - - [ArgoCD and Secrets](#argocd-and-secrets) - - [Kubernetes CD](#kubernetes-cd) - - [AKS Deployment](#aks-deployment) - - [Infrastructure as Code](#infrastructure-as-code-1) - - [End-to-End Lab Guides](#end-to-end-lab-guides) -1. [Cloud Infrastructure](#cloud-infrastructure) - - [Azure Networking](#azure-networking) - - [Private Access](#private-access) - - [Security](#security) - - [Container Orchestration](#container-orchestration-2) - - [AKS Fleet Manager](#aks-fleet-manager) - - [Container Storage](#container-storage) - - [Cloud Native Storage](#cloud-native-storage) - - [Monitoring and Observability](#monitoring-and-observability) - - [Multi-Tenant Observability](#multi-tenant-observability) - - [Networking and Edge Routing](#networking-and-edge-routing) - - [App Service Networking](#app-service-networking) - - [Application Gateway V2](#application-gateway-v2) - - [Load Balancing Options](#load-balancing-options) - - [Serverless Containers](#serverless-containers) - - [Azure Container Apps](#azure-container-apps) - - [Container Governance](#container-governance) -1. [Cloud Native and Kubernetes](#cloud-native-and-kubernetes) - - [GitOps and Continuous Delivery](#gitops-and-continuous-delivery) - - [ArgoCD integration](#argocd-integration) - - [DevOps Standardization](#devops-standardization) - - [Hybrid and Multicloud Solutions](#hybrid-and-multicloud-solutions) - - [App Services on Arc](#app-services-on-arc) - - [Azure Arc Architecture](#azure-arc-architecture) - - [Azure Arc Jumpstart](#azure-arc-jumpstart) - - [Monitoring and Observability](#monitoring-and-observability-1) - - [Managed Prometheus](#managed-prometheus) - - [Network Observability](#network-observability) - - [Networking and Edge Routing](#networking-and-edge-routing-1) - - [Gateway API](#gateway-api) -1. [Cloud Native Platforms](#cloud-native-platforms) - - [Azure](#azure) - - [High Availability Architectures](#high-availability-architectures) -1. [Cloud Platform](#cloud-platform) - - [Architecture Patterns](#architecture-patterns) - - [Cloud-Native](#cloud-native) - - [Microsoft Azure](#microsoft-azure-1) - - [Sample Architecture](#sample-architecture) -1. [Community](#community) - - [Blogs](#blogs) - - [.NET Development](#net-development) - - [Cloud-Native Architecture](#cloud-native-architecture) -1. [Compute and Containers](#compute-and-containers) - - [Kubernetes](#kubernetes) - - [AKS Engine](#aks-engine) -1. [Container Orchestration](#container-orchestration-3) - - [Operating Systems](#operating-systems) - - [Azure Linux](#azure-linux) -1. [DevOps](#devops) - - [CI-CD Pipelines](#ci-cd-pipelines-1) - - [Build Templates](#build-templates) -1. [Developer Experience](#developer-experience) - - [CI-CD Runners](#ci-cd-runners) - - [Ephemeral Containers](#ephemeral-containers) -1. [Governance and Management](#governance-and-management) - - [Enterprise Governance](#enterprise-governance) - - [Kubernetes Compliance](#kubernetes-compliance) -1. [Healthcare IT](#healthcare-it) - - [Medical Imaging](#medical-imaging) - - [Azure Healthcare APIs](#azure-healthcare-apis) -1. [Identity and Access](#identity-and-access) - - [Cloud Security](#cloud-security) - - [Workload Identity](#workload-identity) - - [Managed Identities](#managed-identities) -1. [Identity and Access](#identity-and-access-1) - - [Managed Identities](#managed-identities-1) - - [Secretless Architectures](#secretless-architectures) - - [Graph API](#graph-api) -1. [Infrastructure Automation](#infrastructure-automation) - - [Infrastructure as Code](#infrastructure-as-code-2) - - [Azure Bicep](#azure-bicep) - - [Declarative Deployments](#declarative-deployments) - - [Shell Customization](#shell-customization) - - [Oh-My-Posh](#oh-my-posh) - - [Kubernetes Integration](#kubernetes-integration) -1. [Microservices](#microservices) - - [.NET Microservices](#net-microservices) - - [Project Tye](#project-tye) -1. [Network and Delivery](#network-and-delivery) - - [API Management](#api-management-1) - - [Monetization Models](#monetization-models) - - [Workspace Migration](#workspace-migration) - - [Global Routing](#global-routing) - - [DNS Traffic Management](#dns-traffic-management) -1. [Operating Systems](#operating-systems-1) - - [Azure Linux](#azure-linux-1) - - [Kernel Curation](#kernel-curation) -1. [Quality Assurance](#quality-assurance) - - [Performance Testing](#performance-testing) - - [Azure Load Testing](#azure-load-testing) -1. [Security and Identity](#security-and-identity) - - [API Security](#api-security) - - [Runtime Threat Protection](#runtime-threat-protection) - - [Vulnerability Research](#vulnerability-research) - - [Container Escape](#container-escape) - ## API Design ### Standards diff --git a/v2-docs/caching.md b/v2-docs/caching.md index 104daffb..965c4146 100644 --- a/v2-docs/caching.md +++ b/v2-docs/caching.md @@ -6,18 +6,6 @@ !!! info "Architectural Context" Detailed reference for Caching Solutions in the context of Networking & Service Mesh. -## Table of Contents - -1. [Edge and Serverless](#edge-and-serverless) - - [WebAssembly Platforms](#webassembly-platforms) - - [Tau Edge](#tau-edge) -1. [Infrastructure and Caching](#infrastructure-and-caching) - - [Database and Storage](#database-and-storage) - - [Tarantool and Nginx](#tarantool-and-nginx) -1. [Performance](#performance) - - [Caching](#caching) - - [Varnish on RHEL](#varnish-on-rhel) - ## Edge and Serverless ### WebAssembly Platforms diff --git a/v2-docs/chaos-engineering.md b/v2-docs/chaos-engineering.md index fe8292d9..407aee6f 100644 --- a/v2-docs/chaos-engineering.md +++ b/v2-docs/chaos-engineering.md @@ -6,20 +6,6 @@ !!! info "Architectural Context" Detailed reference for Chaos Engineering in the context of Platform & Site Reliability. -## Table of Contents - -1. [Resilience](#resilience) - - [Chaos Engineering](#chaos-engineering-1) - - [Cloud Architecture](#cloud-architecture) - - [Continuous Integration](#continuous-integration) - - [Curated Resources](#curated-resources) - - [Enterprise Platforms](#enterprise-platforms) - - [Kubernetes Tools](#kubernetes-tools) - - [Operations Strategy](#operations-strategy) - - [Serverless Systems](#serverless-systems) - - [Stateful Systems](#stateful-systems) - - [Telemetry Systems](#telemetry-systems) - ## Resilience ### Chaos Engineering (1) diff --git a/v2-docs/chatgpt.md b/v2-docs/chatgpt.md index 48a8c0df..d4da9e95 100644 --- a/v2-docs/chatgpt.md +++ b/v2-docs/chatgpt.md @@ -6,15 +6,6 @@ !!! info "Architectural Context" Detailed reference for ChatGPT in the context of AI. -## Table of Contents - -1. [Cloud Native Infrastructure](#cloud-native-infrastructure) - - [Kubernetes Operations](#kubernetes-operations) - - [AIOps Diagnostics](#aiops-diagnostics) -1. [Data Architecture](#data-architecture) - - [Retrieval-Augmented Generation](#retrieval-augmented-generation) - - [Enterprise AI](#enterprise-ai) - ## Cloud Native Infrastructure ### Kubernetes Operations diff --git a/v2-docs/cheatsheets.md b/v2-docs/cheatsheets.md index 1920483b..40a2cd8d 100644 --- a/v2-docs/cheatsheets.md +++ b/v2-docs/cheatsheets.md @@ -6,39 +6,6 @@ !!! info "Architectural Context" Detailed reference for Cheat Sheets in the context of Architectural Foundations. -## Table of Contents - -1. [Architecture](#architecture) - - [Application Frameworks](#application-frameworks) - - [Quarkus](#quarkus) - - [Application Security](#application-security) - - [Token Security](#token-security) - - [Data Pipelines](#data-pipelines) - - [Apache Kafka](#apache-kafka) - - [Change Data Capture](#change-data-capture) -1. [Infrastructure](#infrastructure) - - [Cloud Computing](#cloud-computing) - - [AWS](#aws) - - [Messaging Systems](#messaging-systems) - - [Kubernetes Operators](#kubernetes-operators) -1. [Orchestration](#orchestration) - - [Kubernetes](#kubernetes) - - [Training and Concepts](#training-and-concepts) -1. [Research](#research) - - [Architecture Analysis](#architecture-analysis) - - [Infrastructure Design](#infrastructure-design) -1. [Software Engineering](#software-engineering) - - [APIs](#apis) - - [Automation and Scripting](#automation-and-scripting) - - [Testing and Lifecycle](#testing-and-lifecycle) - - [Microservices](#microservices) - - [REST Clients](#rest-clients) - - [Web Development](#web-development) - - [NodeJS](#nodejs) -1. [Virtualization and Containers](#virtualization-and-containers) - - [Docker](#docker) - - [CLI Reference](#cli-reference) - ## Architecture ### Application Frameworks diff --git a/v2-docs/chef.md b/v2-docs/chef.md index 338693d1..2ea6ad68 100644 --- a/v2-docs/chef.md +++ b/v2-docs/chef.md @@ -6,13 +6,6 @@ !!! info "Architectural Context" Detailed reference for Chef in the context of Hardened Infrastructure. -## Table of Contents - -1. [Infrastructure as Code](#infrastructure-as-code) - - [Configuration Management](#configuration-management) - - [Enterprise Tooling](#enterprise-tooling) - - [Training](#training) - ## Infrastructure as Code ### Configuration Management diff --git a/v2-docs/cicd-kubernetes-plugins.md b/v2-docs/cicd-kubernetes-plugins.md index a8bba800..36ff3e1a 100644 --- a/v2-docs/cicd-kubernetes-plugins.md +++ b/v2-docs/cicd-kubernetes-plugins.md @@ -6,12 +6,6 @@ !!! info "Architectural Context" Detailed reference for CI/CD Kubernetes Plugins in the context of Engineering Pipeline. -## Table of Contents - -1. [Software Engineering](#software-engineering) - - [Collaborative Platforms](#collaborative-platforms) - - [Kubernetes Integration](#kubernetes-integration) - ## Software Engineering ### Collaborative Platforms diff --git a/v2-docs/cicd.md b/v2-docs/cicd.md index dc29e409..58fade92 100644 --- a/v2-docs/cicd.md +++ b/v2-docs/cicd.md @@ -6,57 +6,6 @@ !!! info "Architectural Context" Detailed reference for Software Delivery Pipeline. CI/CD in the context of Engineering Pipeline. -## Table of Contents - -1. [Cloud Engineering](#cloud-engineering) - - [AWS](#aws) - - [Automated Deployment](#automated-deployment) - - [CI-CD Pipelines](#ci-cd-pipelines) - - [Architecture](#architecture) - - [Cloud Native](#cloud-native) - - [CI-CD Pipelines](#ci-cd-pipelines-1) - - [Hybrid Cloud](#hybrid-cloud) - - [Case Studies](#case-studies) - - [Kubernetes](#kubernetes) - - [Best Practices](#best-practices) - - [CI-CD Pipelines](#ci-cd-pipelines-2) - - [Cloud Native](#cloud-native-1) -1. [Continuous Delivery](#continuous-delivery) - - [CICD and Testing](#cicd-and-testing) - - [Pipeline as Code](#pipeline-as-code) - - [CICD Best Practices](#cicd-best-practices) - - [Overview](#overview) - - [Deployment Strategies](#deployment-strategies) - - [Blue-Green and Canary](#blue-green-and-canary) -1. [Deployment and Delivery](#deployment-and-delivery) - - [CICD and Delivery](#cicd-and-delivery) - - [AWS Architecture](#aws-architecture) - - [Kubernetes Native](#kubernetes-native) - - [Pipeline Architecture](#pipeline-architecture) - - [Resource Portals](#resource-portals) - - [Deployment Strategies](#deployment-strategies-1) - - [Blue-Green and Canary](#blue-green-and-canary-1) - - [Education](#education) - - [GitOps](#gitops) - - [Red Hat OpenShift](#red-hat-openshift) - - [Platform Engineering](#platform-engineering) - - [Kubernetes Management](#kubernetes-management) - - [Progressive Delivery](#progressive-delivery) - - [Feature Flags](#feature-flags) -1. [DevOps](#devops) - - [CI-CD Pipelines](#ci-cd-pipelines-3) - - [Best Practices](#best-practices-1) - - [Case Studies](#case-studies-1) - - [Continuous Delivery](#continuous-delivery-1) - - [Patterns](#patterns) - - [Financial Services](#financial-services) - - [Best Practices](#best-practices-2) -1. [Infrastructure as Code](#infrastructure-as-code) - - [CICD and Delivery](#cicd-and-delivery-1) - - [Security and Compliance](#security-and-compliance) - - [GitOps](#gitops-1) - - [Configuration Management](#configuration-management) - ## Cloud Engineering ### AWS diff --git a/v2-docs/cloud-arch-diagrams.md b/v2-docs/cloud-arch-diagrams.md index 20f46bfd..b797539b 100644 --- a/v2-docs/cloud-arch-diagrams.md +++ b/v2-docs/cloud-arch-diagrams.md @@ -6,12 +6,6 @@ !!! info "Architectural Context" Detailed reference for Cloud Architecture Diagram Tools in the context of Architectural Foundations. -## Table of Contents - -1. [Cloud Infrastructure](#cloud-infrastructure) - - [Azure Networking](#azure-networking) - - [Network Topology](#network-topology) - ## Cloud Infrastructure ### Azure Networking diff --git a/v2-docs/cloud-asset-inventory.md b/v2-docs/cloud-asset-inventory.md index 6dc853e5..042d74ff 100644 --- a/v2-docs/cloud-asset-inventory.md +++ b/v2-docs/cloud-asset-inventory.md @@ -6,22 +6,6 @@ !!! info "Architectural Context" Detailed reference for Cloud Asset Inventory in the context of Architectural Foundations. -## Table of Contents - -1. [Cloud Infrastructure and Orchestration](#cloud-infrastructure-and-orchestration) - - [Asset Management and Governance](#asset-management-and-governance) - - [Cloud Analytics](#cloud-analytics) - - [Public Cloud Administration](#public-cloud-administration) - - [AWS Fundamentals](#aws-fundamentals) - - [Azure Architecture](#azure-architecture) - - [Serverless Architecture](#serverless-architecture) - - [Case Studies](#case-studies) - - [Storage and Databases](#storage-and-databases) - - [Distributed Block Storage](#distributed-block-storage) -1. [Infrastructure as Code](#infrastructure-as-code) - - [Architecture](#architecture) - - [Diagrams](#diagrams) - ## Cloud Infrastructure and Orchestration ### Asset Management and Governance diff --git a/v2-docs/cloudflare.md b/v2-docs/cloudflare.md index cc2c70de..4a9c3263 100644 --- a/v2-docs/cloudflare.md +++ b/v2-docs/cloudflare.md @@ -6,16 +6,6 @@ !!! info "Architectural Context" Detailed reference for Cloudflare Public Cloud in the context of Networking & Service Mesh. -## Table of Contents - -1. [Cloud Infrastructure](#cloud-infrastructure) - - [Kubernetes Security](#kubernetes-security) - - [Zero Trust](#zero-trust) - - [Networking](#networking) - - [Zero Trust](#zero-trust-1) - - [Serverless](#serverless) - - [Edge Computing](#edge-computing) - ## Cloud Infrastructure ### Kubernetes Security diff --git a/v2-docs/container-managers.md b/v2-docs/container-managers.md index 51ee68e2..856324f8 100644 --- a/v2-docs/container-managers.md +++ b/v2-docs/container-managers.md @@ -6,43 +6,6 @@ !!! info "Architectural Context" Detailed reference for Container Runtimes/Managers, Base Images and Container Tools. Podman, Buildah and Skopeo in the context of The Container Stack. -## Table of Contents - -1. [Application Development](#application-development) - - [PHP](#php) - - [Kubernetes Integration](#kubernetes-integration) -1. [Container Infrastructure](#container-infrastructure) - - [Container Engines](#container-engines) - - [Secret Management](#secret-management) - - [Container Tooling](#container-tooling) - - [Compose Comparison](#compose-comparison) - - [Docker Compose Compatibility](#docker-compose-compatibility) - - [Podman Compose](#podman-compose) - - [Edge Orchestration](#edge-orchestration) - - [Auto-Updates and Rollbacks](#auto-updates-and-rollbacks) - - [Image Distribution](#image-distribution) - - [Ecosystem Registries](#ecosystem-registries) - - [Image Optimization](#image-optimization) - - [Base Images](#base-images) - - [Red Hat UBI](#red-hat-ubi) - - [Image Synthesis](#image-synthesis) - - [Builder Comparison](#builder-comparison) - - [Language-Specific Builders](#language-specific-builders) - - [Kubernetes Integration](#kubernetes-integration-1) - - [Declarative Pods](#declarative-pods) - - [Manifest Translation](#manifest-translation) - - [Service Orchestration](#service-orchestration) - - [Quadlet Integration](#quadlet-integration) -1. [Containerization](#containerization) - - [Container Engines](#container-engines-1) - - [Strategy and Standards](#strategy-and-standards) - - [Runtimes](#runtimes) - - [High-Level Engines](#high-level-engines) - - [Kubernetes Integration](#kubernetes-integration-2) -1. [Microservices](#microservices) - - [Mocking and Testing](#mocking-and-testing) - - [Podman Compose Integration](#podman-compose-integration) - ## Application Development ### PHP diff --git a/v2-docs/crossplane.md b/v2-docs/crossplane.md index 3a09abb9..a5f09527 100644 --- a/v2-docs/crossplane.md +++ b/v2-docs/crossplane.md @@ -6,30 +6,6 @@ !!! info "Architectural Context" Detailed reference for Crossplane. A Universal Control Plane API for Cloud Computing. Crossplane Workloads Definitions in the context of Hardened Infrastructure. -## Table of Contents - -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [GitOps and CICD](#gitops-and-cicd) - - [GitOps](#gitops) - - [FluxCD](#fluxcd) - - [Crossplane](#crossplane) - - [Methodologies](#methodologies) -1. [Platform Engineering](#platform-engineering) - - [Control Planes](#control-planes) - - [Crossplane](#crossplane-1) - - [Code Samples](#code-samples) - - [History](#history) - - [Infrastructure as Code](#infrastructure-as-code) - - [Introduction](#introduction) - - [Platform-as-a-Service](#platform-as-a-service) - - [Presentations](#presentations) - - [RedHat OpenShift](#redhat-openshift) - - [Reference Architectures](#reference-architectures) - - [Developer Experience](#developer-experience) - - [Kubernetes Usability](#kubernetes-usability) - ## Architectural Foundations ### Kubernetes Tools diff --git a/v2-docs/crunchydata.md b/v2-docs/crunchydata.md index 91f56704..2435b06b 100644 --- a/v2-docs/crunchydata.md +++ b/v2-docs/crunchydata.md @@ -6,22 +6,6 @@ !!! info "Architectural Context" Detailed reference for Crunchy Data PostgreSQL Operator in the context of Data & Advanced Analytics. -## Table of Contents - -1. [Data Infrastructure](#data-infrastructure) - - [Database Operators](#database-operators) - - [PostgreSQL](#postgresql) - - [Connection Pooling](#connection-pooling) - - [Developer Experience](#developer-experience) - - [GitOps Implementation](#gitops-implementation) - - [High Availability](#high-availability) - - [Multi-Cluster](#multi-cluster) - - [Packaging and CD](#packaging-and-cd) - - [Performance Tuning](#performance-tuning) - - [Platform Integration](#platform-integration) - - [Scheduling and Affinity](#scheduling-and-affinity) - - [Security](#security) - ## Data Infrastructure ### Database Operators diff --git a/v2-docs/customer.md b/v2-docs/customer.md index 1f36ae0d..247b383d 100644 --- a/v2-docs/customer.md +++ b/v2-docs/customer.md @@ -6,23 +6,6 @@ !!! info "Architectural Context" Detailed reference for Customer Success Stories. Cloud Native Projects in the context of Architectural Foundations. -## Table of Contents - -1. [Cloud Platform](#cloud-platform) - - [Bioinformatics](#bioinformatics) - - [High-Performance Computing](#high-performance-computing) - - [Healthcare Tech](#healthcare-tech) - - [Medical Imaging Platforms](#medical-imaging-platforms) -1. [Infrastructure Orchestration](#infrastructure-orchestration) - - [Cloud Security](#cloud-security) - - [Runtime Security](#runtime-security) -1. [Organizational Culture](#organizational-culture) - - [Migration Journeys](#migration-journeys) - - [BMW Group](#bmw-group) -1. [System Architecture](#system-architecture) - - [Messaging Systems](#messaging-systems) - - [Event-Driven Microservices](#event-driven-microservices) - ## Cloud Platform ### Bioinformatics diff --git a/v2-docs/databases.md b/v2-docs/databases.md index 22054b19..3e5a4213 100644 --- a/v2-docs/databases.md +++ b/v2-docs/databases.md @@ -6,88 +6,6 @@ !!! info "Architectural Context" Detailed reference for Databases on Kubernetes. Database DevOps in the context of Data & Advanced Analytics. -## Table of Contents - -1. [Cloud Infrastructure](#cloud-infrastructure) - - [FinOps](#finops) - - [Cost Optimization](#cost-optimization) -1. [Cloud-Native Design](#cloud-native-design) - - [Architecture Patterns](#architecture-patterns) -1. [Data Analytics](#data-analytics) - - [Real-time Analytics](#real-time-analytics) - - [Edge Computing](#edge-computing) -1. [Data Operations](#data-operations) - - [Database CICD](#database-cicd) -1. [Data on Kubernetes](#data-on-kubernetes) - - [DBaaS](#dbaas) - - [Enterprise RedHat](#enterprise-redhat) - - [Internal Mechanics](#internal-mechanics) - - [Disaster Recovery](#disaster-recovery) - - [Enterprise RedHat](#enterprise-redhat-1) - - [Distributed Systems](#distributed-systems) - - [ShardingSphere](#shardingsphere) - - [Performance Tuning](#performance-tuning) - - [Autoscaling](#autoscaling) - - [Relational Databases](#relational-databases) - - [Operations](#operations) - - [PostgreSQL](#postgresql) - - [Stateful Architecture](#stateful-architecture) - - [Operational Guide](#operational-guide) -1. [Database Architecture](#database-architecture) - - [DBaaS](#dbaas-1) - - [Market Trends](#market-trends) - - [Database Interfaces](#database-interfaces) - - [API Design](#api-design) - - [Microservices Patterns](#microservices-patterns) - - [Transactions](#transactions) - - [Multi-tenancy](#multi-tenancy) - - [Schema Design](#schema-design) - - [Traffic Management](#traffic-management) - - [Load Balancing](#load-balancing) -1. [Distributed SQL](#distributed-sql) - - [APIs](#apis) - - [CockroachDB](#cockroachdb) -1. [Infrastructure](#infrastructure) - - [Container Orchestration](#container-orchestration) - - [Data on Kubernetes](#data-on-kubernetes-1) - - [GitOps](#gitops) - - [Kubernetes Operators](#kubernetes-operators) - - [MySQL Operators](#mysql-operators) - - [PostgreSQL HA](#postgresql-ha) - - [PostgreSQL Operators](#postgresql-operators) - - [State Management](#state-management) - - [Enterprise Kubernetes](#enterprise-kubernetes) - - [OpenShift Databases](#openshift-databases) - - [Infrastructure as Code](#infrastructure-as-code) - - [Terraform Database Ops](#terraform-database-ops) - - [PostgreSQL HA](#postgresql-ha-1) - - [Kubernetes Operations](#kubernetes-operations) - - [Orchestration](#orchestration) - - [Zalando Stack](#zalando-stack) -1. [Kubernetes Workloads](#kubernetes-workloads) - - [CICD Pipelines](#cicd-pipelines) - - [Database Migrations](#database-migrations) -1. [Observability](#observability) - - [Distributed Storage](#distributed-storage) - - [VictoriaMetrics](#victoriametrics) -1. [PostgreSQL](#postgresql-1) - - [Alternative Paradigms](#alternative-paradigms) - - [Application Architecture](#application-architecture) - - [Application Performance](#application-performance) - - [Database Architecture](#database-architecture-1) -1. [Relational Databases](#relational-databases-1) - - [Database Drivers](#database-drivers) -1. [SQL](#sql) - - [ORM and Query Builders](#orm-and-query-builders) - - [Java Ecosystem](#java-ecosystem) -1. [SQL Server](#sql-server) - - [DevOps](#devops) -1. [Serverless Databases](#serverless-databases) - - [Resource Management](#resource-management) -1. [Storage and Data](#storage-and-data) - - [Database Operators](#database-operators) - - [Crunchy PostgreSQL](#crunchy-postgresql) - ## Cloud Infrastructure ### FinOps diff --git a/v2-docs/demos.md b/v2-docs/demos.md index 0a14b4d6..ef784b96 100644 --- a/v2-docs/demos.md +++ b/v2-docs/demos.md @@ -6,236 +6,6 @@ !!! info "Architectural Context" Detailed reference for DevOps Demos. Boilerplates/Samples, Tutorials and Screencasts in the context of Architectural Foundations. -## Table of Contents - -1. [Application Architecture](#application-architecture) - - [Event-Driven](#event-driven) - - [GraphQL](#graphql) -1. [Application Delivery](#application-delivery) - - [Asynchronous Messaging](#asynchronous-messaging) - - [Red Hat Fuse](#red-hat-fuse) - - [CICD Pipelines](#cicd-pipelines) - - [Tekton Pipelines](#tekton-pipelines) - - [Database Schema Management](#database-schema-management) - - [Liquibase Integration](#liquibase-integration) - - [Deployment Strategies](#deployment-strategies) - - [Canary Deployments](#canary-deployments) - - [Developer Platforms](#developer-platforms) - - [App Deployment](#app-deployment) - - [Local Development](#local-development) - - [Enterprise Modernization](#enterprise-modernization) - - [Multi-Cluster Strategy](#multi-cluster-strategy) - - [GitOps](#gitops) - - [Microservices Showcase](#microservices-showcase) - - [Java on Kubernetes](#java-on-kubernetes) - - [Eclipse JKube Tools](#eclipse-jkube-tools) - - [Load Balancing](#load-balancing) - - [High Availability](#high-availability) -1. [Application Development](#application-development) - - [Cloud-Native Java](#cloud-native-java) - - [Advanced Microservices](#advanced-microservices) - - [Spring Boot Microservices](#spring-boot-microservices) - - [Containerization](#containerization) - - [Java Spring Boot](#java-spring-boot) - - [Java](#java) - - [Build Automation](#build-automation) - - [Local Development](#local-development-1) - - [Microservices Demo](#microservices-demo) - - [Project Bootstrapping](#project-bootstrapping) - - [Microservices Showcase](#microservices-showcase-1) - - [Spring Boot](#spring-boot) - - [NodeJS](#nodejs) - - [Deployment Tooling](#deployment-tooling) - - [Process Automation](#process-automation) - - [RHPAM](#rhpam) - - [Reference Templates](#reference-templates) - - [OpenShift 4.8](#openshift-48) - - [Serverless Java](#serverless-java) - - [Quarkus Integration](#quarkus-integration) - - [gRPC Communication](#grpc-communication) - - [Tutorials](#tutorials) - - [Developer Demos](#developer-demos) -1. [Application Modernization](#application-modernization) - - [Integration Frameworks](#integration-frameworks) - - [OpenShift and Camel](#openshift-and-camel) - - [Spring to Quarkus](#spring-to-quarkus) - - [Framework Migration](#framework-migration) -1. [Architecture](#architecture) - - [Microservices](#microservices) - - [Demo Systems](#demo-systems) -1. [CI-CD](#ci-cd) - - [Azure AKS](#azure-aks) - - [GitHub Actions](#github-actions) - - [Java](#java-1) - - [Automated Workflows](#automated-workflows) -1. [CICD](#cicd) - - [GitOps](#gitops-1) - - [GitLab Agent](#gitlab-agent) -1. [CICD Infrastructure](#cicd-infrastructure) - - [Build and Packaging](#build-and-packaging) - - [Custom Packager](#custom-packager) -1. [CICD Pipelines](#cicd-pipelines-1) - - [Automated Cloud Deployments](#automated-cloud-deployments) - - [AWS ECS Deployments](#aws-ecs-deployments) -1. [Cloud Native Architecture](#cloud-native-architecture) - - [Microservices Migration](#microservices-migration) - - [Case Study](#case-study) -1. [Cloud Native Infrastructure](#cloud-native-infrastructure) - - [Enterprise Messaging](#enterprise-messaging) - - [Kafka on Kubernetes](#kafka-on-kubernetes) - - [APIs and Gateways](#apis-and-gateways) - - [Observability and Testing](#observability-and-testing) - - [Pod Mocking](#pod-mocking) -1. [Cloud Native Platforms](#cloud-native-platforms) - - [Red Hat OpenShift](#red-hat-openshift) - - [Local Development](#local-development-2) - - [CodeReady Containers](#codeready-containers) -1. [Cloud Platform](#cloud-platform) - - [Microsoft Azure](#microsoft-azure) - - [Sample Architecture](#sample-architecture) -1. [Cloud Providers](#cloud-providers) - - [Google GKE](#google-gke) - - [Application Dev](#application-dev) -1. [Cloud-Native Application Development](#cloud-native-application-development) - - [Go Development](#go-development) - - [Microservices](#microservices-1) - - [Open Source Software](#open-source-software) - - [Reference Implementations](#reference-implementations) -1. [Cloud-Native Applications](#cloud-native-applications) - - [Java Microservices](#java-microservices) - - [Azure Container Apps](#azure-container-apps) - - [Container Images](#container-images) - - [Kubernetes Deployment](#kubernetes-deployment) - - [Spring Cloud](#spring-cloud) -1. [Cloud-Native Infrastructure](#cloud-native-infrastructure) - - [Kubernetes Core](#kubernetes-core) - - [Declarative Templates](#declarative-templates) - - [Learning Resources](#learning-resources) - - [Kubernetes Courses](#kubernetes-courses) -1. [DevOps](#devops) - - [CICD Platforms](#cicd-platforms) - - [Jenkins](#jenkins) - - [Docker Containerization](#docker-containerization) - - [Modular Pipeline Library](#modular-pipeline-library) - - [Spring Petclinic Pipeline](#spring-petclinic-pipeline) - - [Cloud Native CICD](#cloud-native-cicd) - - [Jenkins X](#jenkins-x) - - [AWS EKS Integration](#aws-eks-integration) - - [Continuous Delivery](#continuous-delivery) - - [Infrastructure Provisioning](#infrastructure-provisioning) - - [Crossplane Spinnaker Integration](#crossplane-spinnaker-integration) - - [Spinnaker Setup](#spinnaker-setup) - - [Kubernetes Native Deployment](#kubernetes-native-deployment) - - [Kubernetes Integration](#kubernetes-integration) - - [AWS EKS](#aws-eks) - - [Jenkins Pipelines](#jenkins-pipelines) -1. [DevOps and Platform Engineering](#devops-and-platform-engineering) - - [Interview Preparation](#interview-preparation) - - [Reference Guides](#reference-guides) -1. [DevSecOps and Automation](#devsecops-and-automation) - - [End-to-End Pipelines](#end-to-end-pipelines) - - [Multi-Version Deployments](#multi-version-deployments) - - [Jenkins-based CI-CD](#jenkins-based-ci-cd) - - [AWS and Jenkins](#aws-and-jenkins) - - [Jenkins Architecture](#jenkins-architecture) -1. [DevSecOps and IDEs](#devsecops-and-ides) - - [Google Cloud Code](#google-cloud-code) - - [Developer Experience](#developer-experience) - - [Quality Assurance](#quality-assurance) - - [Azure Cloud Testing](#azure-cloud-testing) -1. [Developer Experience](#developer-experience-1) - - [Inner Loop Development](#inner-loop-development) - - [Local Tooling](#local-tooling) -1. [Enterprise Architecture](#enterprise-architecture) - - [Business Process Management](#business-process-management) - - [RHPAM](#rhpam-1) -1. [Event-Driven Architectures](#event-driven-architectures) - - [Cloud-Native Java](#cloud-native-java-1) - - [Kafka with Spring Boot](#kafka-with-spring-boot) - - [Go and CQRS](#go-and-cqrs) - - [gRPC Microservices](#grpc-microservices) - - [Observability and Diagnostics](#observability-and-diagnostics) - - [Kafka at Scale](#kafka-at-scale) - - [Realtime Streams](#realtime-streams) - - [FastAPI and Ably](#fastapi-and-ably) - - [Serverless Java](#serverless-java-1) - - [Quarkus with Kafka](#quarkus-with-kafka) -1. [GitOps](#gitops-2) - - [Continuous Deployment](#continuous-deployment) - - [Flux v2](#flux-v2) -1. [GitOps and Declarative Git](#gitops-and-declarative-git) - - [Developer Platforms](#developer-platforms-1) - - [GitHub Actions](#github-actions-1) - - [GitOps Tools](#gitops-tools) - - [Flux and Helm](#flux-and-helm) -1. [Infrastructure and Operations](#infrastructure-and-operations) - - [Observability and Service Mesh](#observability-and-service-mesh) - - [OpenShift ServiceMesh](#openshift-servicemesh) -1. [Infrastructure and Platform](#infrastructure-and-platform) - - [Autoscaling](#autoscaling) - - [Event-Driven Scaling](#event-driven-scaling) -1. [Infrastructure as Code](#infrastructure-as-code) - - [Serverless Deployment](#serverless-deployment) - - [Terraform and AWS Lambda](#terraform-and-aws-lambda) -1. [Infrastructure as Code and CI-CD](#infrastructure-as-code-and-ci-cd) - - [Developer Platforms](#developer-platforms-2) - - [CI-CD Pipelines](#ci-cd-pipelines) -1. [Java Cloud Native](#java-cloud-native) - - [Spring Cloud](#spring-cloud-1) - - [Kubernetes Integration](#kubernetes-integration-1) -1. [Local Development](#local-development-3) - - [Red Hat OpenShift Local](#red-hat-openshift-local) - - [Process Automation](#process-automation-1) -1. [Networking](#networking) - - [Security](#security) - - [Recipes](#recipes) -1. [Observability](#observability) - - [Microservices Telemetry](#microservices-telemetry) - - [Grafana Stack](#grafana-stack) - - [OpenTelemetry](#opentelemetry) - - [Reliability Engineering](#reliability-engineering) -1. [Orchestration](#orchestration) - - [AKS](#aks) - - [Masterclass](#masterclass) - - [Kubernetes](#kubernetes) - - [EKS Training](#eks-training) -1. [Platform Engineering](#platform-engineering) - - [GitOps and CI-CD](#gitops-and-ci-cd) - - [AWS and Argo CD](#aws-and-argo-cd) - - [Argo CD and OpenShift Pipelines](#argo-cd-and-openshift-pipelines) - - [Multi-Cluster GitOps](#multi-cluster-gitops) - - [Serverless Workflows](#serverless-workflows) - - [GitOps and Deployment](#gitops-and-deployment) - - [Flux Ecosystem](#flux-ecosystem) - - [Machine Learning Operations](#machine-learning-operations) - - [OpenShift AI](#openshift-ai) -1. [Quality Assurance](#quality-assurance-1) - - [API Testing Automation](#api-testing-automation) - - [Newman Integration](#newman-integration) - - [Jenkins Pipelines](#jenkins-pipelines-1) -1. [Reference Architectures](#reference-architectures) - - [Industry Verticals](#industry-verticals) - - [Healthcare](#healthcare) -1. [Security](#security-1) - - [Vulnerabilities](#vulnerabilities) - - [Hacking Labs](#hacking-labs) -1. [Serverless and Knative](#serverless-and-knative) - - [Serverless Frameworks](#serverless-frameworks) - - [Knative Serving](#knative-serving) - - [Knative Tutorial](#knative-tutorial) - - [Serverless Java](#serverless-java-2) - - [Knative Service](#knative-service) -1. [Service Mesh](#service-mesh) - - [Consul](#consul) - - [Local Development](#local-development-4) - - [GitOps](#gitops-3) - - [Progressive Delivery](#progressive-delivery) -1. [Software Development](#software-development) - - [Microservices](#microservices-2) - - [Reference Architecture](#reference-architecture) - - [Spring Petclinic](#spring-petclinic) - - [Spring Petclinic Red Hat](#spring-petclinic-red-hat) - ## Application Architecture ### Event-Driven diff --git a/v2-docs/devel-sites.md b/v2-docs/devel-sites.md index c371075d..7658752c 100644 --- a/v2-docs/devel-sites.md +++ b/v2-docs/devel-sites.md @@ -6,17 +6,6 @@ !!! info "Architectural Context" Detailed reference for Development and Frameworks. Websites for web developers in the context of Developer Ecosystem. -## Table of Contents - -1. [Backend-as-a-Service](#backend-as-a-service) - - [Google Cloud](#google-cloud) - - [BaaS Platform](#baas-platform) - - [PostgreSQL](#postgresql) - - [BaaS Platform](#baas-platform-1) -1. [Software Engineering](#software-engineering) - - [Languages](#languages) - - [Cloud-Native Programming](#cloud-native-programming) - ## Backend-as-a-Service ### Google Cloud diff --git a/v2-docs/developerportals.md b/v2-docs/developerportals.md index 042aab6a..2870126a 100644 --- a/v2-docs/developerportals.md +++ b/v2-docs/developerportals.md @@ -6,43 +6,6 @@ !!! info "Architectural Context" Detailed reference for API Marketplaces. API Management with API Gateways and Developer Portals in the context of Platform & Site Reliability. -## Table of Contents - -1. [Architecture](#architecture) - - [API Management](#api-management) - - [API Economy](#api-economy) - - [API Governance](#api-governance) - - [Case Studies](#case-studies) - - [Cloud Services](#cloud-services) - - [Gateway Engines](#gateway-engines) - - [Infrastructure Patterns](#infrastructure-patterns) - - [Kubernetes Orchestration](#kubernetes-orchestration) - - [Observability Platforms](#observability-platforms) - - [Operations and Deployment](#operations-and-deployment) - - [Persistent Connections](#persistent-connections) - - [Red Hat Ecosystem](#red-hat-ecosystem) - - [Security and Protocols](#security-and-protocols) - - [Video Walkthroughs](#video-walkthroughs) - - [Design Patterns](#design-patterns) - - [Microservices Patterns](#microservices-patterns) - - [Microservices](#microservices) - - [API Gateways](#api-gateways) -1. [Domain APIs](#domain-apis) - - [IoT](#iot) - - [Smart Cities](#smart-cities) -1. [Infrastructure](#infrastructure) - - [API Gateway](#api-gateway) - - [Cloud Native](#cloud-native) - - [Go Engines](#go-engines) - - [Industry News](#industry-news) - - [Java Spring Ecosystem](#java-spring-ecosystem) - - [Open Source Governance](#open-source-governance) -1. [Platform Engineering](#platform-engineering) - - [Developer Portal](#developer-portal) - - [Internal Developer Platforms](#internal-developer-platforms) - - [Kubernetes Deployment](#kubernetes-deployment) - - [Tutorials](#tutorials) - ## Architecture ### API Management diff --git a/v2-docs/devops-tools.md b/v2-docs/devops-tools.md index f2ee0aff..4060b55f 100644 --- a/v2-docs/devops-tools.md +++ b/v2-docs/devops-tools.md @@ -6,32 +6,6 @@ !!! info "Architectural Context" Detailed reference for DevOps Tools aka Toolchain in the context of Architectural Foundations. -## Table of Contents - -1. [Cloud Providers](#cloud-providers) - - [AWS](#aws) - - [CICD and Security](#cicd-and-security) -1. [Deployment and Delivery](#deployment-and-delivery) - - [Platform Engineering](#platform-engineering) - - [Kubernetes Management](#kubernetes-management) -1. [DevOps and Platform Engineering](#devops-and-platform-engineering) - - [Architecture and Orchestration](#architecture-and-orchestration) - - [Foundational Primer](#foundational-primer) -1. [Developer Tooling](#developer-tooling) - - [AI Code Assistants](#ai-code-assistants) - - [Prompt Templates](#prompt-templates) - - [Developer Knowledge](#developer-knowledge) - - [Curation Repositories](#curation-repositories) -1. [Kubernetes and Container Orchestration](#kubernetes-and-container-orchestration) - - [Platform Engineering](#platform-engineering-1) - - [AppOps and GitOps](#appops-and-gitops) -1. [Local Developer Environment](#local-developer-environment) - - [Container Runtime Setup](#container-runtime-setup) - - [Docker Compose](#docker-compose) -1. [Orchestration and Packaging](#orchestration-and-packaging) - - [Cloud-Native Delivery](#cloud-native-delivery) - - [Keptn](#keptn) - ## Cloud Providers ### AWS diff --git a/v2-docs/devops.md b/v2-docs/devops.md index 52d999ac..e4cb977e 100644 --- a/v2-docs/devops.md +++ b/v2-docs/devops.md @@ -6,99 +6,6 @@ !!! info "Architectural Context" Detailed reference for DevOps in the context of Platform & Site Reliability. -## Table of Contents - -1. [Architecture](#architecture) - - [Patterns](#patterns) - - [Twelve-Factor App](#twelve-factor-app) -1. [Automation](#automation) - - [Agentic Systems](#agentic-systems) - - [MCP Server](#mcp-server) - - [NoOps Evolution](#noops-evolution) -1. [Cloud Architecture](#cloud-architecture) - - [Multicloud Solutions](#multicloud-solutions) - - [Ops Dynamics](#ops-dynamics) - - [NoOps and Serverless](#noops-and-serverless) - - [Overview](#overview) - - [Serverless Systems](#serverless-systems) - - [DevOps Pipelines](#devops-pipelines) -1. [Cloud Native](#cloud-native) - - [Kubernetes Orchestration](#kubernetes-orchestration) - - [DevOps-as-a-Service](#devops-as-a-service) -1. [Containerization](#containerization) - - [DevOps](#devops-1) - - [Evolution](#evolution) - - [Docker](#docker) - - [Fundamentals](#fundamentals) - - [Kubernetes](#kubernetes) - - [Configuration Management](#configuration-management) - - [Culture](#culture) -1. [Continuous Delivery](#continuous-delivery) - - [CICD Pipeline Design](#cicd-pipeline-design) - - [Database Delivery](#database-delivery) - - [Release Strategies](#release-strategies) - - [Security Policy](#security-policy) -1. [DevOps and SRE](#devops-and-sre) - - [CICD Pipelines](#cicd-pipelines) - - [Architecture](#architecture-1) - - [Tool Integrations](#tool-integrations) - - [Culture and Organizations](#culture-and-organizations) - - [Netflix Engineering](#netflix-engineering) - - [Industry Evolution](#industry-evolution) - - [Trends](#trends) - - [Infrastructure](#infrastructure) - - [On-Premises Architecture](#on-premises-architecture) - - [Windows Ecosystems](#windows-ecosystems) - - [Roadmaps and Career](#roadmaps-and-career) - - [Skill Sets](#skill-sets) - - [Tooling Landscapes](#tooling-landscapes) - - [Visual Architecture](#visual-architecture) -1. [DevOps Culture](#devops-culture) - - [Platform Engineering](#platform-engineering) - - [PlatformOps](#platformops) -1. [DevOps Methodology](#devops-methodology) - - [Application Delivery](#application-delivery) - - [Performance Optimization](#performance-optimization) - - [Foundational Principles](#foundational-principles) - - [Culture and Process](#culture-and-process) - - [Software Lifecycle Models](#software-lifecycle-models) - - [Strategic Architecture](#strategic-architecture) - - [Tooling Ecosystem](#tooling-ecosystem) - - [Platform Evaluation](#platform-evaluation) -1. [DevSecOps and IDEs](#devsecops-and-ides) - - [Google Cloud Code](#google-cloud-code) - - [Developer Experience](#developer-experience) -1. [Education](#education) - - [Training Courses](#training-courses) -1. [Industry Metrics](#industry-metrics) - - [DORA Reports](#dora-reports) -1. [Microservices](#microservices) - - [API Management](#api-management) - - [DevOps Delivery](#devops-delivery) - - [DevOps Synergy](#devops-synergy) - - [Architecture Alignment](#architecture-alignment) - - [DevSecOps](#devsecops) - - [Cloud Native Security](#cloud-native-security) - - [Event-Driven](#event-driven) - - [Application Delivery](#application-delivery-1) -1. [Orchestration and Containers](#orchestration-and-containers) - - [Containerization](#containerization-1) - - [CICD Integration](#cicd-integration) - - [Kubernetes](#kubernetes-1) - - [DevOps Integration](#devops-integration) -1. [Platform Engineering](#platform-engineering-1) - - [AI Platform](#ai-platform) - - [GPU Orchestration](#gpu-orchestration) - - [Declarative Configuration](#declarative-configuration) - - [KusionStack](#kusionstack) - - [Developer Self-Service](#developer-self-service) - - [SRE Patterns](#sre-patterns) - - [IDP Tooling](#idp-tooling) - - [Developer Portals](#developer-portals) -1. [Software Engineering](#software-engineering) - - [Professional Development](#professional-development) - - [Core Architectures](#core-architectures) - ## Architecture ### Patterns diff --git a/v2-docs/devsecops.md b/v2-docs/devsecops.md index 7980c2d8..62928d95 100644 --- a/v2-docs/devsecops.md +++ b/v2-docs/devsecops.md @@ -6,174 +6,6 @@ !!! info "Architectural Context" Detailed reference for DevSecOps and Security. Container in the context of Hardened Infrastructure. -## Table of Contents - -1. [Application Development](#application-development) - - [Cloud-Native Java](#cloud-native-java) - - [Tanzu Framework](#tanzu-framework) -1. [Container Infrastructure](#container-infrastructure) - - [CI-CD Pipelines](#ci-cd-pipelines) - - [Pipeline Security](#pipeline-security) -1. [DevOps](#devops) - - [CICD Pipeline Security](#cicd-pipeline-security) - - [Harness CD Integration](#harness-cd-integration) - - [Jenkins Integrations](#jenkins-integrations) - - [Observability](#observability) - - [Dashboards](#dashboards) - - [Static Analysis](#static-analysis) - - [Kubernetes Linting](#kubernetes-linting) - - [Kubernetes Validation](#kubernetes-validation) -1. [Infrastructure](#infrastructure) - - [Network Security](#network-security) - - [Ingress Control](#ingress-control) - - [Service Mesh](#service-mesh) - - [Ingress Control](#ingress-control-1) -1. [Kubernetes Security](#kubernetes-security) - - [Cloud Native Security Frameworks](#cloud-native-security-frameworks) - - [Official Standards](#official-standards) - - [Compliance and Governance](#compliance-and-governance) - - [Security Frameworks](#security-frameworks) - - [Security Toolkits and Scanning](#security-toolkits-and-scanning) - - [Open Source Curation](#open-source-curation) -1. [Observability](#observability-1) - - [Logging](#logging) - - [Fluent Bit Engine](#fluent-bit-engine) -1. [Security](#security) - - [API Security](#api-security) - - [Microservices Architecture](#microservices-architecture) - - [Access Control](#access-control) - - [Zero Trust Network Access](#zero-trust-network-access) - - [Access Management](#access-management) - - [Passwordless Authentication](#passwordless-authentication) - - [Application Security](#application-security) - - [Pentesting](#pentesting) - - [Spring Boot Integrations](#spring-boot-integrations) - - [WAF and API Security](#waf-and-api-security) - - [Architecture Patterns](#architecture-patterns) - - [Microservice Security](#microservice-security) - - [CI-CD](#ci-cd) - - [Kubernetes Hardening](#kubernetes-hardening) - - [Cloud Security](#cloud-security) - - [CWPP Frameworks](#cwpp-frameworks) - - [Enterprise Security Platforms](#enterprise-security-platforms) - - [Telemetry and Observability](#telemetry-and-observability) - - [Cloud-Native](#cloud-native) - - [Architecture Fundamentals](#architecture-fundamentals) - - [Zero Trust Architectures](#zero-trust-architectures) - - [Container Security](#container-security) - - [Aqua Security Integration](#aqua-security-integration) - - [DevSecOps](#devsecops) - - [Cryptography](#cryptography) - - [PKI Automation](#pki-automation) - - [DevSecOps](#devsecops-1) - - [Enterprise Infrastructure](#enterprise-infrastructure) - - [Education and Training](#education-and-training) - - [Vulnerable Labs](#vulnerable-labs) - - [GitOps](#gitops) - - [Policy as Code](#policy-as-code) - - [Identity and Access Management](#identity-and-access-management) - - [Authentication Proxy](#authentication-proxy) - - [Core Fundamentals](#core-fundamentals) - - [High Availability](#high-availability) - - [Ingress Integration](#ingress-integration) - - [Microservices Authorization](#microservices-authorization) - - [OIDC Provider](#oidc-provider) - - [Proxy Gateways](#proxy-gateways) - - [SSO Solution](#sso-solution) - - [State Management](#state-management) - - [Tokens](#tokens) - - [Zero Trust Proxy](#zero-trust-proxy) - - [Image Signing](#image-signing) - - [Cryptographic Trust](#cryptographic-trust) - - [Incident Response](#incident-response) - - [Container Forensics](#container-forensics) - - [Kubernetes Security](#kubernetes-security-1) - - [Image Encryption](#image-encryption) - - [Policy as Code](#policy-as-code-1) - - [Self-Hosted Orchestration](#self-hosted-orchestration) - - [Signature Verification](#signature-verification) - - [Microservices Security](#microservices-security) - - [Architecture Patterns](#architecture-patterns-1) - - [Behavior Monitoring](#behavior-monitoring) - - [Mitigation Standards](#mitigation-standards) - - [API Security](#api-security-1) - - [Cloud Native Hardening](#cloud-native-hardening) - - [Kubernetes Hardening](#kubernetes-hardening-1) - - [OWASP Top 10](#owasp-top-10) - - [Network Security](#network-security-1) - - [CNI Data Plane](#cni-data-plane) - - [Web Application Firewall](#web-application-firewall) - - [Runtime Security](#runtime-security) - - [KubeArmor Orchestration](#kubearmor-orchestration) - - [LSM Enforcement](#lsm-enforcement) - - [Threat Detection](#threat-detection) - - [Secret Management](#secret-management) - - [Helm Automation](#helm-automation) - - [Helm Security](#helm-security) - - [Secrets Management](#secrets-management) - - [AWS Secrets Manager](#aws-secrets-manager) - - [CICD Pipelines](#cicd-pipelines) - - [CSI Driver](#csi-driver) - - [CSI Driver Providers](#csi-driver-providers) - - [Centralized Vaults](#centralized-vaults) - - [Cloud Managed Services](#cloud-managed-services) - - [CyberArk Conjur](#cyberark-conjur) - - [GCP Secret Manager](#gcp-secret-manager) - - [GCP Security](#gcp-security) - - [GitOps Encrypted Secrets](#gitops-encrypted-secrets) - - [Kafka Integration](#kafka-integration) - - [Kubernetes Admission Controllers](#kubernetes-admission-controllers) - - [Kubernetes Integration](#kubernetes-integration) - - [Kubernetes Security](#kubernetes-security-2) - - [Kubernetes Sidecar Injection](#kubernetes-sidecar-injection) - - [Risk Mitigation](#risk-mitigation) - - [Serverless Integration](#serverless-integration) - - [Serverless](#serverless) - - [FaaS Hardening](#faas-hardening) - - [Serverless Security](#serverless-security) - - [Knative Security Guard](#knative-security-guard) - - [Software Engineering](#software-engineering) - - [Secure Design Principles](#secure-design-principles) - - [Static Analysis](#static-analysis-1) - - [Infrastructure as Code](#infrastructure-as-code) - - [Supply Chain Security](#supply-chain-security) - - [AWS Integration](#aws-integration) - - [Container Signing](#container-signing) - - [Cryptographic Signatures](#cryptographic-signatures) - - [Keyless Signing](#keyless-signing) - - [Threat Detection](#threat-detection-1) - - [Audit Logs Parsing](#audit-logs-parsing) - - [Container Monitoring Tools](#container-monitoring-tools) - - [Malware Scanning](#malware-scanning) - - [Threat Intelligence](#threat-intelligence) - - [Container Runtime Security](#container-runtime-security) - - [Kubernetes Exploits](#kubernetes-exploits) - - [Kubernetes Exposures](#kubernetes-exposures) - - [Vulnerabilities](#vulnerabilities) - - [CRI-O and Podman Security](#cri-o-and-podman-security) - - [Log4Shell Mitigations](#log4shell-mitigations) - - [Log4j Detection Agent](#log4j-detection-agent) - - [Observability Mitigations](#observability-mitigations) - - [Vulnerability Management](#vulnerability-management) - - [Base Images](#base-images) - - [CICD Pipeline Security](#cicd-pipeline-security-1) - - [CNAPP Platform](#cnapp-platform) - - [Container Scanning](#container-scanning) - - [Kubernetes Hardening](#kubernetes-hardening-2) -1. [Security and Compliance](#security-and-compliance) - - [Container Security](#container-security-1) - - [Runtime Observability](#runtime-observability) - - [Secrets Management](#secrets-management-1) - - [HashiCorp Vault](#hashicorp-vault) - - [Vulnerability Scanning](#vulnerability-scanning) - - [Grype and GitLab](#grype-and-gitlab) -1. [Security and Governance](#security-and-governance) - - [DevSecOps](#devsecops-2) - - [AWS Implementations](#aws-implementations) - - [Automated Pipelines](#automated-pipelines) - - [Commercial CD](#commercial-cd) - - [Enterprise Compliance](#enterprise-compliance) - ## Application Development ### Cloud-Native Java diff --git a/v2-docs/digital-money.md b/v2-docs/digital-money.md index 2c37b83e..6e018110 100644 --- a/v2-docs/digital-money.md +++ b/v2-docs/digital-money.md @@ -6,15 +6,6 @@ !!! info "Architectural Context" Detailed reference for Digital Money in the context of Career & Industry. -## Table of Contents - -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [Fintech](#fintech) - - [Cryptocurrency](#cryptocurrency) - - [Stablecoins](#stablecoins) - ## Architectural Foundations ### Kubernetes Tools diff --git a/v2-docs/digitalocean.md b/v2-docs/digitalocean.md index 5bfce8f3..8d1dff23 100644 --- a/v2-docs/digitalocean.md +++ b/v2-docs/digitalocean.md @@ -6,17 +6,6 @@ !!! info "Architectural Context" Detailed reference for Digital Ocean in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Cloud Native](#cloud-native) - - [Managed Kubernetes](#managed-kubernetes) - - [Scaleway Kapsule](#scaleway-kapsule) -1. [Cloud Providers](#cloud-providers) - - [Alternative Clouds](#alternative-clouds) - - [Visual Deployment](#visual-deployment) - - [PaaS](#paas) - - [DigitalOcean App Platform](#digitalocean-app-platform) - ## Cloud Native ### Managed Kubernetes diff --git a/v2-docs/docker.md b/v2-docs/docker.md index c840d857..0e2dc061 100644 --- a/v2-docs/docker.md +++ b/v2-docs/docker.md @@ -6,64 +6,6 @@ !!! info "Architectural Context" Detailed reference for Docker in the context of The Container Stack. -## Table of Contents - -1. [App Development](#app-development) - - [CICD](#cicd) - - [GitHub Actions](#github-actions) -1. [Application Architecture](#application-architecture) - - [Microservices](#microservices) - - [Java Ecosystem](#java-ecosystem) -1. [Application Development](#application-development) - - [Java](#java) - - [Image Building](#image-building) - - [Node.js](#nodejs) - - [Image Building](#image-building-1) - - [Python](#python) - - [Local Environments](#local-environments) -1. [CI-CD](#ci-cd) - - [DevOps Pipelines](#devops-pipelines) - - [Container Delivery](#container-delivery) -1. [Cloud Orchestration](#cloud-orchestration) - - [Multi-Cloud Deployments](#multi-cloud-deployments) - - [Application Architecture](#application-architecture-1) -1. [Containers](#containers) - - [Architectural Patterns](#architectural-patterns) - - [Anti-patterns](#anti-patterns) - - [Build Optimization](#build-optimization) - - [Java](#java-1) - - [Kubernetes Deployment](#kubernetes-deployment) - - [Node.js](#nodejs-1) - - [Python](#python-1) - - [Reference Implementation](#reference-implementation) - - [Rust](#rust) - - [Security and Hardening](#security-and-hardening) - - [Developer Tooling](#developer-tooling) - - [Cloud Emulation](#cloud-emulation) - - [Diagnostics](#diagnostics) - - [Debugging Runtimes](#debugging-runtimes) - - [Docker Basics](#docker-basics) - - [Workshops](#workshops) - - [Production Operations](#production-operations) - - [Infrastructure](#infrastructure) - - [Security and Hardening](#security-and-hardening-1) - - [Node.js](#nodejs-2) - - [Vulnerability Management](#vulnerability-management) -1. [Infrastructure](#infrastructure-1) - - [Docker Compose](#docker-compose) - - [Reference Architectures](#reference-architectures) - - [Kubernetes](#kubernetes) - - [Container Management](#container-management) - - [Local Environments](#local-environments-1) - - [Docker Compose](#docker-compose-1) -1. [Local Developer Environment](#local-developer-environment) - - [Container Runtime Setup](#container-runtime-setup) - - [Docker Compose](#docker-compose-2) -1. [Security](#security) - - [Container Security](#container-security) - - [Dockerfile optimization](#dockerfile-optimization) - - [RunAsUser](#runasuser) - ## App Development ### CICD diff --git a/v2-docs/dom.md b/v2-docs/dom.md index 18e1be76..5d6fa183 100644 --- a/v2-docs/dom.md +++ b/v2-docs/dom.md @@ -6,15 +6,6 @@ !!! info "Architectural Context" Detailed reference for Document Object Model (DOM) in the context of Developer Ecosystem. -## Table of Contents - -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [Web Development](#web-development) - - [DOM](#dom) - - [JavaScript](#javascript) - ## Architectural Foundations ### Kubernetes Tools diff --git a/v2-docs/dotnet.md b/v2-docs/dotnet.md index 05d147f1..554f3f16 100644 --- a/v2-docs/dotnet.md +++ b/v2-docs/dotnet.md @@ -6,26 +6,6 @@ !!! info "Architectural Context" Detailed reference for Microsoft .NET in the context of Developer Ecosystem. -## Table of Contents - -1. [Application Development](#application-development) - - [.NET Framework](#net-framework) - - [Architectural Guides](#architectural-guides) - - [Event-Driven Microservices](#event-driven-microservices) - - [Microservices Design](#microservices-design) - - [gRPC Communication](#grpc-communication) -1. [Cloud Infrastructure and Orchestration](#cloud-infrastructure-and-orchestration) - - [Container Orchestration](#container-orchestration) - - [Kubernetes](#kubernetes) -1. [Software Architecture and .NET Development](#software-architecture-and-net-development) - - [Application Diagnostics](#application-diagnostics) - - [Environment Validation](#environment-validation) - - [IoC Containers](#ioc-containers) - - [Microservices](#microservices) - - [Resilience Patterns](#resilience-patterns) - - [Web Frameworks](#web-frameworks) - - [Microservices](#microservices-1) - ## Application Development ### .NET Framework diff --git a/v2-docs/edge-computing.md b/v2-docs/edge-computing.md index b7381c87..9bea386f 100644 --- a/v2-docs/edge-computing.md +++ b/v2-docs/edge-computing.md @@ -6,14 +6,6 @@ !!! info "Architectural Context" Detailed reference for Edge Computing in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Architecture](#architecture) - - [Edge Computing](#edge-computing-1) - - [Distributed Systems](#distributed-systems) -1. [Kubernetes Edge](#kubernetes-edge) - - [MicroShift](#microshift) - ## Architecture ### Edge Computing (1) diff --git a/v2-docs/elearning.md b/v2-docs/elearning.md index 39f27d17..4ddc3a60 100644 --- a/v2-docs/elearning.md +++ b/v2-docs/elearning.md @@ -6,18 +6,6 @@ !!! info "Architectural Context" Detailed reference for E-learning in the context of Career & Industry. -## Table of Contents - -1. [Orchestration](#orchestration) - - [Infrastructure as Code](#infrastructure-as-code) - - [Real-World Architecture](#real-world-architecture) -1. [Professional Development](#professional-development) - - [Higher Education](#higher-education) - - [Software Engineering](#software-engineering) -1. [Software Development](#software-development) - - [Software Architecture](#software-architecture) - - [DDD and Testing](#ddd-and-testing) - ## Orchestration ### Infrastructure as Code diff --git a/v2-docs/embedded-servlet-containers.md b/v2-docs/embedded-servlet-containers.md index 992d56ab..19cfa033 100644 --- a/v2-docs/embedded-servlet-containers.md +++ b/v2-docs/embedded-servlet-containers.md @@ -6,12 +6,6 @@ !!! info "Architectural Context" Detailed reference for Embedded Servlet Containers in SpringBoot: Jetty, Tomcat, Undertow and more in the context of Developer Ecosystem. -## Table of Contents - -1. [Platform Engineering](#platform-engineering) - - [Application Servers](#application-servers) - - [Web Servers](#web-servers) - ## Platform Engineering ### Application Servers diff --git a/v2-docs/faq.md b/v2-docs/faq.md index ebeefff4..08ff6255 100644 --- a/v2-docs/faq.md +++ b/v2-docs/faq.md @@ -6,28 +6,6 @@ !!! info "Architectural Context" Detailed reference for Microservices FAQ in the context of Architectural Foundations. -## Table of Contents - -1. [Architecture](#architecture) - - [Microservices](#microservices) - - [Caching](#caching) - - [Decision Frameworks](#decision-frameworks) - - [History](#history) - - [Resiliency Patterns](#resiliency-patterns) -1. [Microservices Architecture](#microservices-architecture) - - [Dependency Management](#dependency-management) - - [Patterns](#patterns) - - [Fundamentals](#fundamentals) - - [Best Practices](#best-practices) - - [Comparisons](#comparisons) - - [Roadmap](#roadmap) - - [UI and Frontend](#ui-and-frontend) - - [Patterns](#patterns-1) - - [Service Discovery](#service-discovery) -1. [Migration](#migration) - - [Containerization](#containerization) - - [Case Study](#case-study) - ## Architecture ### Microservices diff --git a/v2-docs/finops.md b/v2-docs/finops.md index 65e25092..28b53cd8 100644 --- a/v2-docs/finops.md +++ b/v2-docs/finops.md @@ -6,58 +6,6 @@ !!! info "Architectural Context" Detailed reference for Cloud FinOps. Collaborative, Real-Time Cloud Financial Management (CFM) in the context of Career & Industry. -## Table of Contents - -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [FinOps and Cloud Cost](#finops-and-cloud-cost) - - [AWS Optimization](#aws-optimization) - - [Data Transfer](#data-transfer) - - [EKS Cost Reduction](#eks-cost-reduction) - - [EKS Log Optimization](#eks-log-optimization) - - [Policy Engines](#policy-engines) - - [SMB Frameworks](#smb-frameworks) - - [Azure Optimization](#azure-optimization) - - [CLI Tools](#cli-tools) - - [Cost Estimation](#cost-estimation) - - [Dashboards](#dashboards) - - [Governance](#governance) - - [Pricing Frameworks](#pricing-frameworks) - - [Reference Guides](#reference-guides) - - [Savings Potential](#savings-potential) - - [IaC FinOps](#iac-finops) - - [AI Optimization](#ai-optimization) - - [AWS CDK Bots](#aws-cdk-bots) - - [Kubernetes FinOps](#kubernetes-finops) - - [AKS Cost Allocation](#aks-cost-allocation) - - [Actionable Frameworks](#actionable-frameworks) - - [Automated Optimization](#automated-optimization) - - [Cost Management](#cost-management) - - [Cost Platforms](#cost-platforms) - - [Foundational Concepts](#foundational-concepts) - - [Observability Integrations](#observability-integrations) - - [ROI Analysis](#roi-analysis) - - [Tooling](#tooling) - - [Market Trends](#market-trends) - - [Macroeconomics](#macroeconomics) - - [SaaS FinOps](#saas-finops) - - [License Management](#license-management) - - [Strategy and Governance](#strategy-and-governance) - - [FinOps Pitfalls](#finops-pitfalls) - - [FinOps vs Cost Management](#finops-vs-cost-management) -1. [Financial Operations](#financial-operations) - - [FinOps](#finops) - - [Best Practices](#best-practices) - - [Case Studies](#case-studies) - - [Frameworks](#frameworks) - - [Kubernetes Costs](#kubernetes-costs) - - [Market Landscapes](#market-landscapes) - - [Methodologies](#methodologies) - - [Metrics](#metrics) - - [Roles and Responsibilities](#roles-and-responsibilities) - - [Standards](#standards) - ## Architectural Foundations ### Kubernetes Tools diff --git a/v2-docs/flux.md b/v2-docs/flux.md index ae1ceb1c..a5e2c186 100644 --- a/v2-docs/flux.md +++ b/v2-docs/flux.md @@ -6,18 +6,6 @@ !!! info "Architectural Context" Detailed reference for Flux. The GitOps operator for Kubernetes in the context of Engineering Pipeline. -## Table of Contents - -1. [Networking and Security](#networking-and-security) - - [Service Mesh and Gateway](#service-mesh-and-gateway) - - [Envoy](#envoy) -1. [Platform Engineering](#platform-engineering) - - [GitOps and Deployment](#gitops-and-deployment) - - [Flux Ecosystem](#flux-ecosystem) -1. [Storage and Databases](#storage-and-databases) - - [Cloud-Native Storage](#cloud-native-storage) - - [Stateful GitOps](#stateful-gitops) - ## Networking and Security ### Service Mesh and Gateway diff --git a/v2-docs/freelancing.md b/v2-docs/freelancing.md index c45ee4b0..bc06671b 100644 --- a/v2-docs/freelancing.md +++ b/v2-docs/freelancing.md @@ -6,48 +6,6 @@ !!! info "Architectural Context" Detailed reference for Freelancing in the context of Career & Industry. -## Table of Contents - -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [Business and Careers](#business-and-careers) - - [Freelance Platforms](#freelance-platforms) - - [Sourcing](#sourcing) -1. [Careers](#careers) - - [Freelancing](#freelancing-1) - - [Career Paths](#career-paths) - - [Cooperatives](#cooperatives) - - [Europe Market](#europe-market) - - [Financial Calculators](#financial-calculators) - - [Financial Strategy](#financial-strategy) - - [Market Overview](#market-overview) - - [On-Demand Mentoring](#on-demand-mentoring) - - [Remote Contracting](#remote-contracting) - - [Spanish Market](#spanish-market) - - [Spanish Regulations](#spanish-regulations) - - [Talent Marketplaces](#talent-marketplaces) -1. [Remote Work and Career](#remote-work-and-career) - - [Contractor Operations](#contractor-operations) - - [SaaS Administration](#saas-administration) - - [Legal Compliance](#legal-compliance) - - [Spanish Contracting](#spanish-contracting) - - [Spanish Freelancing](#spanish-freelancing) - - [Spanish Taxation](#spanish-taxation) - - [UK Contracting](#uk-contracting) - - [Talent Platforms](#talent-platforms) - - [AI-Backed Sourcing](#ai-backed-sourcing) - - [Bespoke Engineering Teams](#bespoke-engineering-teams) - - [Contractor Compliance](#contractor-compliance) - - [E-commerce Freelancing](#e-commerce-freelancing) - - [Freelance Consulting](#freelance-consulting) - - [Global Sourcing](#global-sourcing) - - [Mentorship Networks](#mentorship-networks) - - [Nearshore Outsourcing](#nearshore-outsourcing) - - [On-Demand Delivery](#on-demand-delivery) - - [Staff Augmentation](#staff-augmentation) - - [Web Development Networks](#web-development-networks) - ## Architectural Foundations ### Kubernetes Tools diff --git a/v2-docs/git.md b/v2-docs/git.md index 6792104c..5d4126aa 100644 --- a/v2-docs/git.md +++ b/v2-docs/git.md @@ -6,37 +6,6 @@ !!! info "Architectural Context" Detailed reference for Git and Patterns for Managing Source Code Branches. Merge BOTs in the context of Architectural Foundations. -## Table of Contents - -1. [CICD Pipeline](#cicd-pipeline) - - [Kubernetes and Containers](#kubernetes-and-containers) - - [Continuous Deployment](#continuous-deployment) - - [Self-Hosted Infrastructure](#self-hosted-infrastructure) - - [Testing Infrastructure](#testing-infrastructure) - - [Cloud Native Automation](#cloud-native-automation) -1. [Cloud Native](#cloud-native) - - [GitOps](#gitops) - - [GitLab Kubernetes Agent](#gitlab-kubernetes-agent) - - [GitLab Operator](#gitlab-operator) -1. [DevOps](#devops) - - [Continuous Delivery](#continuous-delivery) - - [GitOps](#gitops-1) - - [Version Control](#version-control) - - [Kubernetes Deployments](#kubernetes-deployments) -1. [Security and Compliance](#security-and-compliance) - - [Supply Chain Security](#supply-chain-security) - - [Container Security](#container-security) -1. [Software Engineering](#software-engineering) - - [CICD Platforms](#cicd-platforms) - - [GitLab CI Optimization](#gitlab-ci-optimization) - - [Collaborative Platforms](#collaborative-platforms) - - [Kubernetes Integration](#kubernetes-integration) - - [Software Delivery](#software-delivery) - - [Code Review Protocols](#code-review-protocols) - - [Version Control](#version-control-1) - - [Automation Bots](#automation-bots) - - [GitLab Automation](#gitlab-automation) - ## CICD Pipeline ### Kubernetes and Containers diff --git a/v2-docs/gitops.md b/v2-docs/gitops.md index 7a15c9f7..1e64f706 100644 --- a/v2-docs/gitops.md +++ b/v2-docs/gitops.md @@ -6,52 +6,6 @@ !!! info "Architectural Context" Detailed reference for GitOps in the context of Engineering Pipeline. -## Table of Contents - -1. [API Management](#api-management) - - [GitOps](#gitops-1) - - [Declarative APIs](#declarative-apis) -1. [Application Delivery](#application-delivery) - - [Continuous Deployment](#continuous-deployment) - - [GitOps](#gitops-2) - - [Business Value](#business-value) - - [DevOps Culture](#devops-culture) - - [Ecosystem](#ecosystem) - - [Foundations](#foundations) - - [Implementation](#implementation) - - [Source Code](#source-code) - - [Standards](#standards) - - [Infrastructure as Code](#infrastructure-as-code) - - [Patterns](#patterns) -1. [CICD](#cicd) - - [GitOps](#gitops-3) - - [Deployment Strategies](#deployment-strategies) - - [FluxCD](#fluxcd) - - [Kustomize Manifests](#kustomize-manifests) -1. [Continuous Delivery](#continuous-delivery) - - [GitOps](#gitops-4) - - [Kubernetes Native](#kubernetes-native) - - [Telco and Edge](#telco-and-edge) - - [Testing Environments](#testing-environments) - - [Progressive Delivery](#progressive-delivery) - - [GitOps Integration](#gitops-integration) -1. [GitOps](#gitops-5) - - [Methodology](#methodology) - - [Developer Platforms](#developer-platforms) -1. [Networking](#networking) - - [Ingress and Gateway](#ingress-and-gateway) - - [Automation](#automation) - - [Service Mesh](#service-mesh) - - [eBPF vs Proxy](#ebpf-vs-proxy) -1. [Platform Architecture](#platform-architecture) - - [GitOps](#gitops-6) - - [Modern Pipelines](#modern-pipelines) -1. [Platform Engineering](#platform-engineering) - - [GitOps and Deployment](#gitops-and-deployment) - - [Flux Ecosystem](#flux-ecosystem) - - [Multi-Cluster Routing](#multi-cluster-routing) - - [Fleet Orchestration](#fleet-orchestration) - ## API Management ### GitOps (1) diff --git a/v2-docs/golang.md b/v2-docs/golang.md index dbe052b2..88f4f062 100644 --- a/v2-docs/golang.md +++ b/v2-docs/golang.md @@ -6,40 +6,6 @@ !!! info "Architectural Context" Detailed reference for Golang - Go in the context of Developer Ecosystem. -## Table of Contents - -1. [Architecture](#architecture) - - [Microservices](#microservices) - - [Design Patterns](#design-patterns) - - [Go Frameworks](#go-frameworks) -1. [Business Applications](#business-applications) - - [Go Web Apps](#go-web-apps) - - [Email Analytics](#email-analytics) -1. [Cloud Native](#cloud-native) - - [Containers](#containers) - - [Dockerizing Go](#dockerizing-go) - - [Microservice Runtimes](#microservice-runtimes) - - [Dapr](#dapr) - - [Web Frameworks](#web-frameworks) - - [Request Binding](#request-binding) -1. [Cloud Native Languages](#cloud-native-languages) - - [Go](#go) - - [API Design](#api-design) - - [Kubernetes Integration](#kubernetes-integration) - - [Microservices Frameworks](#microservices-frameworks) - - [Performance Tuning](#performance-tuning) - - [Storage Integration](#storage-integration) -1. [Programming Languages](#programming-languages) - - [Go](#go-1) - - [Project Scaffolding](#project-scaffolding) - - [Resources](#resources) -1. [Public Cloud](#public-cloud) - - [Google Cloud](#google-cloud) - - [Go Samples](#go-samples) -1. [Software Engineering](#software-engineering) - - [Web Development](#web-development) - - [NodeJS](#nodejs) - ## Architecture ### Microservices diff --git a/v2-docs/grafana.md b/v2-docs/grafana.md index 762054d3..19cacbcf 100644 --- a/v2-docs/grafana.md +++ b/v2-docs/grafana.md @@ -6,33 +6,6 @@ !!! info "Architectural Context" Detailed reference for Grafana in the context of Architectural Foundations. -## Table of Contents - -1. [Kubernetes and Cloud Native](#kubernetes-and-cloud-native) - - [CICD](#cicd) - - [Continuous Deployment](#continuous-deployment) -1. [Observability](#observability) - - [Log Management](#log-management) - - [Deployment Guides](#deployment-guides) - - [Grafana Loki](#grafana-loki) -1. [Observability and Delivery](#observability-and-delivery) - - [Kubernetes Observability](#kubernetes-observability) - - [Grafana Cloud](#grafana-cloud) - - [Synthetic Monitoring](#synthetic-monitoring) - - [Grafana Alerting](#grafana-alerting) -1. [Observability and Monitoring](#observability-and-monitoring) - - [Data Collection](#data-collection) - - [Telemetry Agents](#telemetry-agents) - - [Kubernetes Deployment](#kubernetes-deployment) - - [Core Infrastructure Dashboards](#core-infrastructure-dashboards) - - [Grafana Ecosystem](#grafana-ecosystem) - - [Virtualization Monitoring](#virtualization-monitoring) - - [Log Management](#log-management-1) - - [Kubernetes Logging](#kubernetes-logging) - - [Log Aggregation](#log-aggregation) - - [Metrics Storage](#metrics-storage) - - [Scalable TSDB](#scalable-tsdb) - ## Kubernetes and Cloud Native ### CICD diff --git a/v2-docs/helm.md b/v2-docs/helm.md index 0e207c29..f963af2e 100644 --- a/v2-docs/helm.md +++ b/v2-docs/helm.md @@ -6,51 +6,6 @@ !!! info "Architectural Context" Detailed reference for Helm Kubernetes Tool in the context of Architectural Foundations. -## Table of Contents - -1. [Cloud Native](#cloud-native) - - [Application Delivery](#application-delivery) - - [Design Patterns](#design-patterns) - - [Library Charts](#library-charts) - - [Umbrella Charts](#umbrella-charts) - - [Operators](#operators) - - [Helm Integration](#helm-integration) - - [Package Management](#package-management) - - [Helm Hooks](#helm-hooks) - - [Introductory](#introductory) - - [Cloud Platforms](#cloud-platforms) - - [Azure AKS](#azure-aks) - - [Helm Integration](#helm-integration-1) - - [Continuous Delivery](#continuous-delivery) - - [GitOps](#gitops) - - [HashiCorp Waypoint](#hashicorp-waypoint) - - [Helm Integration](#helm-integration-2) - - [Red Hat OpenShift](#red-hat-openshift) - - [Helm Integration](#helm-integration-3) - - [Continuous Integration](#continuous-integration) - - [CI-CD Pipelines](#ci-cd-pipelines) - - [Jenkins](#jenkins) - - [Enterprise Platforms](#enterprise-platforms) - - [Red Hat OpenShift](#red-hat-openshift-1) - - [Microservices](#microservices) - - [Infrastructure](#infrastructure) - - [Cost Optimization](#cost-optimization) - - [Temporary Environments](#temporary-environments) - - [Observability](#observability) - - [Prometheus Integration](#prometheus-integration) - - [Metrics](#metrics) - - [Reliability](#reliability) - - [Post-Mortems](#post-mortems) - - [Deployment Failures](#deployment-failures) - - [Security](#security) - - [Vulnerabilities](#vulnerabilities) - - [Argo CD Security](#argo-cd-security) -1. [Platform Engineering](#platform-engineering) - - [Kubernetes GitOps and Packaging](#kubernetes-gitops-and-packaging) - - [DevOps Pipelines](#devops-pipelines) - - [Java Microservices](#java-microservices) - - [Legacy Charts](#legacy-charts) - ## Cloud Native ### Application Delivery diff --git a/v2-docs/hr.md b/v2-docs/hr.md index adc908bb..0eded518 100644 --- a/v2-docs/hr.md +++ b/v2-docs/hr.md @@ -6,19 +6,6 @@ !!! info "Architectural Context" Detailed reference for Human Resources in the context of Career & Industry. -## Table of Contents - -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [Organizations](#organizations) - - [Financial Risk](#financial-risk) - - [Startups](#startups) - - [Remote Work](#remote-work) - - [Company Handbooks](#company-handbooks) - - [Work Culture](#work-culture) - - [Startups](#startups-1) - ## Architectural Foundations ### Kubernetes Tools diff --git a/v2-docs/iac.md b/v2-docs/iac.md index baf2a198..ad4b3354 100644 --- a/v2-docs/iac.md +++ b/v2-docs/iac.md @@ -6,71 +6,6 @@ !!! info "Architectural Context" Detailed reference for Infrastructure Provisioning. Infra Management Tools. IaC Infrastructure as Code in the context of Hardened Infrastructure. -## Table of Contents - -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [Cloud Infrastructure](#cloud-infrastructure) - - [Infrastructure as Code](#infrastructure-as-code) - - [Compliance Auditing](#compliance-auditing) - - [History and Insights](#history-and-insights) - - [Migration Strategies](#migration-strategies) - - [Schema Generation](#schema-generation) - - [Terraform Practices](#terraform-practices) - - [Kubernetes and Operators](#kubernetes-and-operators) - - [GCP Resources](#gcp-resources) -1. [Cloud Management](#cloud-management) - - [FinOps](#finops) - - [Optimization](#optimization) -1. [DevOps](#devops) - - [GitOps](#gitops) - - [Automation](#automation) - - [Infrastructure as Code](#infrastructure-as-code-1) - - [AI Assisted](#ai-assisted) - - [AI Integration](#ai-integration) - - [Terraform](#terraform) - - [Architecture](#architecture) - - [Best Practices](#best-practices) - - [CICD Platforms](#cicd-platforms) - - [Culture](#culture) - - [Fundamentals](#fundamentals) - - [Lifecycle Management](#lifecycle-management) - - [Local Environments](#local-environments) - - [Organizational](#organizational) - - [Provisioning Paradigms](#provisioning-paradigms) - - [Pulumi](#pulumi) - - [Security](#security) - - [Strategy](#strategy) - - [Terminology](#terminology) - - [Terraform](#terraform-1) - - [Secrets](#secrets) - - [Tool Comparison](#tool-comparison) - - [Tooling](#tooling) - - [Training](#training) - - [Workflows](#workflows) -1. [DevOps and CICD](#devops-and-cicd) - - [CICD Automation](#cicd-automation) - - [Terraform Release Management](#terraform-release-management) - - [Infrastructure as Code](#infrastructure-as-code-2) - - [AI Code Generation](#ai-code-generation) - - [Security Scanning](#security-scanning) - - [Roadmaps](#roadmaps) - - [Career Path](#career-path) -1. [DevOps Automation and Modern Systems Engineering](#devops-automation-and-modern-systems-engineering) - - [Infrastructure-as-Code](#infrastructure-as-code) - - [Platform Engineering](#platform-engineering) -1. [Infrastructure](#infrastructure) - - [Sysadmin](#sysadmin) - - [Resources](#resources) -1. [Infrastructure as Code](#infrastructure-as-code-3) - - [Architecture](#architecture-1) - - [Diagrams](#diagrams) - - [Terraform Providers](#terraform-providers) - - [Azure IPAM](#azure-ipam) - - [Verification and AI](#verification-and-ai) - - [Copilot Verification](#copilot-verification) - ## Architectural Foundations ### Kubernetes Tools diff --git a/v2-docs/ibm_cloud.md b/v2-docs/ibm_cloud.md index c9ee3494..66de3389 100644 --- a/v2-docs/ibm_cloud.md +++ b/v2-docs/ibm_cloud.md @@ -6,20 +6,6 @@ !!! info "Architectural Context" Detailed reference for IBM in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Cloud-Native Java](#cloud-native-java) - - [Runtimes](#runtimes) - - [Open Liberty](#open-liberty) - - [Source Code](#source-code) - - [WebSphere](#websphere) - - [Docker](#docker) -1. [Enterprise Integration](#enterprise-integration) - - [Microservices](#microservices) - - [GraphQL and Open Liberty](#graphql-and-open-liberty) - - [Multi-Cluster Management](#multi-cluster-management) - - [IBM Cloud Pak SDK](#ibm-cloud-pak-sdk) - ## Cloud-Native Java ### Runtimes diff --git a/v2-docs/interview-questions.md b/v2-docs/interview-questions.md index e70c5429..c05c208a 100644 --- a/v2-docs/interview-questions.md +++ b/v2-docs/interview-questions.md @@ -6,22 +6,6 @@ !!! info "Architectural Context" Detailed reference for Interview Questions in the context of Career & Industry. -## Table of Contents - -1. [Architecture](#architecture) - - [System Design](#system-design) - - [Scalability](#scalability) -1. [Career and Interview Preparation](#career-and-interview-preparation) - - [Interview Prep](#interview-prep) - - [API and Automation Testing](#api-and-automation-testing) - - [Microservices Design](#microservices-design) -1. [Data Engineering](#data-engineering) - - [Event Streaming](#event-streaming) - - [Apache Kafka](#apache-kafka) -1. [DevOps](#devops) - - [Container Orchestration](#container-orchestration) - - [Kubernetes](#kubernetes) - ## Architecture ### System Design diff --git a/v2-docs/introduction.md b/v2-docs/introduction.md index d989006e..aea19b13 100644 --- a/v2-docs/introduction.md +++ b/v2-docs/introduction.md @@ -6,145 +6,6 @@ !!! info "Architectural Context" Detailed reference for Introduction. Microservice Architecture. From Java EE To Cloud Native. Openshift VS Kubernetes in the context of Architectural Foundations. -## Table of Contents - -1. [Application Modernization](#application-modernization) - - [Monolith to Microservices](#monolith-to-microservices) - - [Automated Refactoring](#automated-refactoring) - - [Case Studies](#case-studies) - - [Guides](#guides) -1. [Architecture](#architecture) - - [APIs](#apis) - - [Protocols](#protocols) - - [Best Practices](#best-practices) - - [EDA](#eda) - - [Data Management](#data-management) - - [Patterns](#patterns) - - [Microservices](#microservices) - - [Fundamentals](#fundamentals) - - [Patterns](#patterns-1) - - [EDA](#eda-1) - - [Evolution](#evolution) - - [Twelve-Factor App](#twelve-factor-app) - - [SaaS](#saas) - - [Multi-Tenancy](#multi-tenancy) - - [Technical Debt](#technical-debt) - - [Microservices](#microservices-1) - - [Orchestration](#orchestration) - - [Web Applications](#web-applications) - - [Enterprise Patterns](#enterprise-patterns) -1. [Architecture Patterns](#architecture-patterns) - - [Microservices](#microservices-2) - - [Cloud-Native Infrastructure](#cloud-native-infrastructure) -1. [Cloud Architecture](#cloud-architecture) - - [Cloud-Native](#cloud-native) - - [Design Patterns](#design-patterns) - - [Modernization](#modernization) - - [Reactive Systems](#reactive-systems) -1. [Cloud Architecture and Infrastructure Strategy](#cloud-architecture-and-infrastructure-strategy) - - [Modern Architectural Paradigms](#modern-architectural-paradigms) - - [MACH Architecture](#mach-architecture) -1. [Cloud Infrastructure](#cloud-infrastructure) - - [Kubernetes](#kubernetes) - - [Container Patterns](#container-patterns) -1. [Cloud Native Architecture](#cloud-native-architecture) - - [Containerization](#containerization) - - [Kubernetes](#kubernetes-1) - - [Design Patterns](#design-patterns-1) - - [Operators and Sidecars](#operators-and-sidecars) - - [GitOps](#gitops) - - [Cloud Native Strategy](#cloud-native-strategy) - - [Microservices](#microservices-3) - - [Enterprise Solutions](#enterprise-solutions) -1. [DevOps and CICD](#devops-and-cicd) - - [Microservices](#microservices-4) - - [Tooling Ecosystem](#tooling-ecosystem) -1. [Frontend Architecture](#frontend-architecture) - - [Design Patterns](#design-patterns-2) - - [BFF](#bff) - - [Microfrontends](#microfrontends) - - [AWS Serverless](#aws-serverless) - - [Introduction](#introduction) -1. [Microservices](#microservices-5) - - [Anti-Patterns](#anti-patterns) - - [Failure Modes](#failure-modes) - - [Lessons Learned](#lessons-learned) - - [Data Management](#data-management-1) - - [Event-Driven Architecture](#event-driven-architecture) - - [Design Patterns](#design-patterns-3) - - [Best Practices](#best-practices-1) - - [Catalog](#catalog) - - [DotNet](#dotnet) - - [Event-Driven](#event-driven) - - [Reference Architecture](#reference-architecture) - - [Design Principles](#design-principles) - - [Core Principles](#core-principles) - - [Evaluation](#evaluation) - - [Frameworks](#frameworks) - - [Ecosystem](#ecosystem) - - [Implementation](#implementation) - - [CQRS](#cqrs) - - [Modernization](#modernization-1) - - [Automated Migration](#automated-migration) - - [CDC Patterns](#cdc-patterns) - - [Monolith Migration](#monolith-migration) - - [Observability](#observability) - - [Namespaces](#namespaces) - - [Orchestration](#orchestration-1) - - [Best Practices](#best-practices-2) -1. [Microservices and Distributed Systems](#microservices-and-distributed-systems) - - [Architecture Evolution](#architecture-evolution) - - [Abstractions and Frameworks](#abstractions-and-frameworks) - - [Curated Reference](#curated-reference) - - [Architecture Patterns](#architecture-patterns-1) - - [Anti-Patterns](#anti-patterns-1) - - [Best Practices](#best-practices-3) - - [Component Design](#component-design) - - [Decision Matrix](#decision-matrix) - - [Fundamentals](#fundamentals-1) - - [Deployment Models](#deployment-models) - - [Orchestration Options](#orchestration-options) - - [Software Engineering Principles](#software-engineering-principles) - - [Developer Workflow](#developer-workflow) - - [Testing and Reliability](#testing-and-reliability) - - [Fault Tolerance](#fault-tolerance) -1. [Orchestration](#orchestration-2) - - [Kubernetes](#kubernetes-2) - - [Dependency Isolation](#dependency-isolation) - - [Microservices](#microservices-6) - - [Paradigms](#paradigms) - - [Prerequisites](#prerequisites) - - [Processes](#processes) - - [Twelve-Factor App](#twelve-factor-app-1) - - [Workloads](#workloads) -1. [Platform Engineering](#platform-engineering) - - [Reference Architectures](#reference-architectures) - - [GCP](#gcp) - - [Service Catalogs](#service-catalogs) - - [Microservices Governance](#microservices-governance) -1. [Reliability Engineering](#reliability-engineering) - - [Resilience Patterns](#resilience-patterns) - - [Infrastructure Stability](#infrastructure-stability) -1. [Software Architecture](#software-architecture) - - [Application Modernization](#application-modernization-1) - - [Legacy Migration](#legacy-migration) - - [Event-Driven Systems](#event-driven-systems) - - [Asynchronous Messaging](#asynchronous-messaging) - - [Microservices](#microservices-7) - - [Decomposition Patterns](#decomposition-patterns) - - [Design Patterns](#design-patterns-4) - - [Distributed Transactions](#distributed-transactions) - - [Maturity Models](#maturity-models) - - [Technology Selection](#technology-selection) - - [Value Proposition](#value-proposition) - - [Modernization](#modernization-2) - - [Strangler Pattern](#strangler-pattern) -1. [Software Engineering](#software-engineering) - - [Architecture Patterns](#architecture-patterns-2) - - [Microservices](#microservices-8) - - [Web Development](#web-development) - - [NodeJS](#nodejs) - ## Vision 2026 !!! quote "The Evolution of Autonomy" diff --git a/v2-docs/istio.md b/v2-docs/istio.md index 15da447d..c9951c4c 100644 --- a/v2-docs/istio.md +++ b/v2-docs/istio.md @@ -6,73 +6,6 @@ !!! info "Architectural Context" Detailed reference for Istio - Service Mesh in the context of Networking & Service Mesh. -## Table of Contents - -1. [Cloud Native](#cloud-native) - - [Service Mesh](#service-mesh) - - [Istio Examples](#istio-examples) -1. [Cloud Native Infrastructure](#cloud-native-infrastructure) - - [Data Plane](#data-plane) - - [API Gateway](#api-gateway) - - [Installation](#installation) - - [Multi-Cluster](#multi-cluster) - - [Automation](#automation) - - [Service Mesh](#service-mesh-1) - - [Traffic Management](#traffic-management) - - [Service Mesh](#service-mesh-2) - - [API Gateway](#api-gateway-1) - - [AWS](#aws) - - [Architecture](#architecture) - - [EKS](#eks) - - [Fundamentals](#fundamentals) - - [Industry Analysis](#industry-analysis) - - [Internals](#internals) - - [OpenShift](#openshift) - - [Operations](#operations) - - [Performance](#performance) - - [Release Notes](#release-notes) - - [Resilience](#resilience) - - [Security](#security) - - [Traffic Management](#traffic-management-1) - - [Tutorials](#tutorials) - - [gRPC](#grpc) -1. [Continuous Delivery](#continuous-delivery) - - [GitOps](#gitops) - - [Progressive Delivery](#progressive-delivery) -1. [Observability](#observability) - - [Continuous Profiling](#continuous-profiling) - - [Diagnostics](#diagnostics) - - [Distributed Tracing](#distributed-tracing) - - [Deployment](#deployment) - - [Jaeger](#jaeger) - - [OpenTelemetry](#opentelemetry) - - [Service Mesh](#service-mesh-3) - - [Troubleshooting](#troubleshooting) - - [Visualization](#visualization) -1. [Service Mesh](#service-mesh-4) - - [Architecture](#architecture-1) - - [Case Study](#case-study) - - [Evolution](#evolution) - - [Microservices Design](#microservices-design) - - [Strategic Planning](#strategic-planning) - - [Microservices Design](#microservices-design-1) - - [Architecture](#architecture-2) - - [Networking](#networking) - - [API Gateway](#api-gateway-2) - - [Education](#education) - - [Hybrid Infrastructure](#hybrid-infrastructure) - - [Traffic Management](#traffic-management-2) - - [Troubleshooting](#troubleshooting-1) - - [Observability](#observability-1) - - [Monitoring](#monitoring) - - [Red Hat OpenShift](#red-hat-openshift) - - [Enterprise Platforms](#enterprise-platforms) - - [Observability](#observability-2) - - [Traffic Management](#traffic-management-3) - - [Rate Limiting](#rate-limiting) - - [Training](#training) - - [Education](#education-1) - ## Cloud Native ### Service Mesh diff --git a/v2-docs/java-and-java-performance-optimization.md b/v2-docs/java-and-java-performance-optimization.md index 9b86bbe4..c6022bd6 100644 --- a/v2-docs/java-and-java-performance-optimization.md +++ b/v2-docs/java-and-java-performance-optimization.md @@ -6,33 +6,6 @@ !!! info "Architectural Context" Detailed reference for Java and Memory Management in the context of Developer Ecosystem. -## Table of Contents - -1. [Cloud Native Infrastructure](#cloud-native-infrastructure) - - [Kubernetes](#kubernetes) - - [Containerized JVM Tuning](#containerized-jvm-tuning) - - [JVM Container Optimization](#jvm-container-optimization) -1. [Infrastructure](#infrastructure) - - [Container Orchestration](#container-orchestration) - - [Observability](#observability) - - [Networking](#networking) - - [Development Tools](#development-tools) -1. [JVM Architecture](#jvm-architecture) - - [Ahead-of-Time Compilation](#ahead-of-time-compilation) - - [Diagnostics](#diagnostics) -1. [Observability](#observability-1) - - [Application Monitoring](#application-monitoring) - - [Java Diagnostics](#java-diagnostics) - - [Application Performance Monitoring](#application-performance-monitoring) - - [Spring Boot](#spring-boot) -1. [Software Development](#software-development) - - [Caching Strategy](#caching-strategy) - - [Performance Optimization](#performance-optimization) -1. [Software Engineering](#software-engineering) - - [Java Virtual Machine](#java-virtual-machine) - - [Diagnostics and Troubleshooting](#diagnostics-and-troubleshooting) - - [Performance Optimization](#performance-optimization-1) - ## Cloud Native Infrastructure ### Kubernetes diff --git a/v2-docs/java_app_servers.md b/v2-docs/java_app_servers.md index 1508d8cf..729c0169 100644 --- a/v2-docs/java_app_servers.md +++ b/v2-docs/java_app_servers.md @@ -6,24 +6,6 @@ !!! info "Architectural Context" Detailed reference for Server Vendors Providing Java EE/Jakarta EE and MicroProfile Runtimes in the context of Developer Ecosystem. -## Table of Contents - -1. [Cloud-Native Java](#cloud-native-java) - - [Runtimes](#runtimes) - - [JBoss EAP](#jboss-eap) - - [MicroProfile](#microprofile) - - [Payara Micro](#payara-micro) - - [Docker](#docker) - - [Payara Server](#payara-server) - - [Docker](#docker-1) - - [WildFly](#wildfly) - - [Developer Workflow](#developer-workflow) -1. [Enterprise Java](#enterprise-java) - - [Runtimes](#runtimes-1) - - [Apache TomEE](#apache-tomee) - - [KumuluzEE](#kumuluzee) - - [Payara Server](#payara-server-1) - ## Cloud-Native Java ### Runtimes diff --git a/v2-docs/java_frameworks.md b/v2-docs/java_frameworks.md index e95663eb..746b94fb 100644 --- a/v2-docs/java_frameworks.md +++ b/v2-docs/java_frameworks.md @@ -6,120 +6,6 @@ !!! info "Architectural Context" Detailed reference for Java and Java Programming Models. Open Source Microservices Frameworks in the context of Developer Ecosystem. -## Table of Contents - -1. [Cloud Native](#cloud-native) - - [Containers](#containers) - - [Evolution](#evolution) -1. [Cloud Native Architecture](#cloud-native-architecture) - - [Microservices Migration](#microservices-migration) - - [Case Study](#case-study) -1. [Cloud-Native Platforms](#cloud-native-platforms) - - [Java Microservices](#java-microservices) - - [API Security](#api-security) - - [Frameworks](#frameworks) -1. [Enterprise Java](#enterprise-java) - - [Cloud Migration](#cloud-migration) - - [Modernization](#modernization) - - [Namespace Migration](#namespace-migration) - - [Framework Selection](#framework-selection) - - [Developer Education](#developer-education) - - [Market Analysis](#market-analysis) - - [JBoss EAP](#jboss-eap) - - [Development Environment](#development-environment) - - [MicroProfile](#microprofile) - - [Framework Standard](#framework-standard) - - [Industry Trends](#industry-trends) - - [Specification](#specification) - - [Quarkus](#quarkus) - - [Spring Compatibility](#spring-compatibility) - - [Runtimes](#runtimes) - - [WildFly Swarm](#wildfly-swarm) -1. [Event-Driven Architecture](#event-driven-architecture) - - [Distributed Transactions](#distributed-transactions) - - [Saga Pattern](#saga-pattern) - - [Kafka Integration](#kafka-integration) - - [Microservices](#microservices) - - [Spring Kafka](#spring-kafka) -1. [Java Cloud Native](#java-cloud-native) - - [Quarkus](#quarkus-1) - - [Core Runtime](#core-runtime) - - [Migration](#migration) - - [Spring Boot](#spring-boot) - - [Kubernetes Deployment](#kubernetes-deployment) - - [Microservices Architecture](#microservices-architecture) - - [Microservices Security](#microservices-security) - - [Spring Cloud](#spring-cloud) - - [API Gateway](#api-gateway) - - [Configuration Management](#configuration-management) - - [Core Framework](#core-framework) - - [Kubernetes Integration](#kubernetes-integration) - - [Secrets Management](#secrets-management) -1. [Java Platform](#java-platform) - - [Concurrency](#concurrency) - - [Project Loom](#project-loom) -1. [Kubernetes and Cloud Native](#kubernetes-and-cloud-native) - - [Microservices](#microservices-1) - - [Best Practices](#best-practices) - - [Observability](#observability) - - [Logging](#logging) - - [Scaling](#scaling) - - [Autoscaling](#autoscaling) - - [Service Mesh](#service-mesh) - - [Istio Integration](#istio-integration) -1. [Modern Java](#modern-java) - - [Automation](#automation) - - [Business Rules](#business-rules) - - [Frameworks](#frameworks-1) - - [Database Access](#database-access) - - [Kubernetes Integration](#kubernetes-integration-1) - - [Logging](#logging-1) - - [MicroProfile](#microprofile-1) - - [Migrations](#migrations) - - [Quarkus](#quarkus-2) - - [Quarkus vs Spring](#quarkus-vs-spring) - - [Reactive Programming](#reactive-programming) - - [Spring Cloud](#spring-cloud-1) - - [Performance](#performance) - - [Benchmarking](#benchmarking) - - [Concurrency](#concurrency-1) - - [Testing](#testing) -1. [Software Development](#software-development) - - [Business Automation](#business-automation) - - [Rule Engines](#rule-engines) - - [Cloud Native Java](#cloud-native-java) - - [Containerization](#containerization) - - [Kubernetes Deployment](#kubernetes-deployment-1) - - [Modernization](#modernization-1) - - [JVM Internals](#jvm-internals) - - [Garbage Collection](#garbage-collection) - - [Microservices Design](#microservices-design) - - [Interview Prep](#interview-prep) - - [Java Microservices](#java-microservices-1) - - [Spring Framework](#spring-framework) - - [Annotations](#annotations) -1. [Spring Ecosystem](#spring-ecosystem) - - [Application Framework](#application-framework) - - [Release Analysis](#release-analysis) - - [Core Platform](#core-platform) - - [Developer Education](#developer-education-1) - - [Modernization](#modernization-2) - - [Optimization](#optimization) - - [GraalVM](#graalvm) - - [Native Image](#native-image) - - [Interoperability](#interoperability) - - [MicroProfile](#microprofile-2) - - [Microservices](#microservices-2) - - [Application Framework](#application-framework-1) - - [Observability](#observability-1) - - [Administration UI](#administration-ui) - - [Packaging](#packaging) - - [Deployment Formats](#deployment-formats) - - [Platform](#platform) - - [Core Framework](#core-framework-1) - - [Web Layer](#web-layer) - - [MVC](#mvc) - ## Cloud Native ### Containers diff --git a/v2-docs/javascript.md b/v2-docs/javascript.md index a192e8ec..2fa81bf2 100644 --- a/v2-docs/javascript.md +++ b/v2-docs/javascript.md @@ -6,18 +6,6 @@ !!! info "Architectural Context" Detailed reference for JavaScript in the context of Developer Ecosystem. -## Table of Contents - -1. [Cloud Native Infrastructure](#cloud-native-infrastructure) - - [Containerization](#containerization) - - [Node.js Deployment](#nodejs-deployment) -1. [Frontend Development](#frontend-development) - - [Real-Time Communication](#real-time-communication) - - [Notifications](#notifications) -1. [Protocols and API Design](#protocols-and-api-design) - - [REST APIs](#rest-apis) - - [Rapid Prototyping](#rapid-prototyping) - ## Cloud Native Infrastructure ### Containerization diff --git a/v2-docs/jenkins-alternatives.md b/v2-docs/jenkins-alternatives.md index 4b9dba88..8b4d390e 100644 --- a/v2-docs/jenkins-alternatives.md +++ b/v2-docs/jenkins-alternatives.md @@ -6,57 +6,6 @@ !!! info "Architectural Context" Detailed reference for Jenkins Alternatives for Continuous Integration and Continuous Deployment in the context of Engineering Pipeline. -## Table of Contents - -1. [Cloud Infrastructure](#cloud-infrastructure) - - [AWS Ecosystem](#aws-ecosystem) - - [Cloud Services](#cloud-services) -1. [Deployment and Delivery](#deployment-and-delivery) - - [CICD Engines](#cicd-engines) - - [Local Execution](#local-execution) - - [CICD Orchestration](#cicd-orchestration) - - [Deployment Strategies](#deployment-strategies) - - [CICD Platforms](#cicd-platforms) - - [Cloud-Native CI](#cloud-native-ci) - - [Custom Platforms](#custom-platforms) - - [Kubernetes-Native CI](#kubernetes-native-ci) - - [Pipeline Observability](#pipeline-observability) - - [Pipeline Optimization](#pipeline-optimization) - - [Continuous Deployment](#continuous-deployment) - - [Declarative Pipelines](#declarative-pipelines) - - [Infrastructure as Code](#infrastructure-as-code) - - [Multi-Cloud Continuous Delivery](#multi-cloud-continuous-delivery) - - [Spinnaker Architectures](#spinnaker-architectures) -1. [DevSecOps](#devsecops) - - [CICD Pipelines](#cicd-pipelines) - - [Tekton Pipelines](#tekton-pipelines) -1. [Enterprise Platforms](#enterprise-platforms) - - [Red Hat OpenShift](#red-hat-openshift) - - [Container Images](#container-images) - - [Serverless CICD](#serverless-cicd) -1. [Infrastructure](#infrastructure) - - [CI-CD](#ci-cd) - - [Kubernetes-Native CI](#kubernetes-native-ci-1) -1. [Kubernetes and Container Orchestration](#kubernetes-and-container-orchestration) - - [Platform Engineering](#platform-engineering) - - [AppOps and GitOps](#appops-and-gitops) -1. [Software Delivery](#software-delivery) - - [Artifact Management](#artifact-management) - - [Enterprise DevOps](#enterprise-devops) - - [Automated Testing](#automated-testing) - - [Database Integration](#database-integration) - - [CI-CD Pipelines](#ci-cd-pipelines) - - [Advanced Configurations](#advanced-configurations) - - [Declarative Architectures](#declarative-architectures) - - [CI-CD Platforms](#ci-cd-platforms) - - [Container-Native CI](#container-native-ci) - - [Dynamic Execution](#dynamic-execution) - - [Enterprise Continuous Delivery](#enterprise-continuous-delivery) - - [Continuous Deployment](#continuous-deployment-1) - - [Concourse Integration](#concourse-integration) - - [GitOps](#gitops) - - [ArgoCD Enterprise](#argocd-enterprise) - ## Cloud Infrastructure ### AWS Ecosystem diff --git a/v2-docs/jenkins.md b/v2-docs/jenkins.md index a064d066..cbc499d2 100644 --- a/v2-docs/jenkins.md +++ b/v2-docs/jenkins.md @@ -6,56 +6,6 @@ !!! info "Architectural Context" Detailed reference for Jenkins and CloudBees in the context of Engineering Pipeline. -## Table of Contents - -1. [CICD Infrastructure](#cicd-infrastructure) - - [Build and Packaging](#build-and-packaging) - - [Custom Packager](#custom-packager) - - [Configuration as Code](#configuration-as-code) - - [Docker Deployment](#docker-deployment) - - [Enterprise Platforms](#enterprise-platforms) - - [Dynamic Agents](#dynamic-agents) - - [Docker Integration](#docker-integration) - - [Scalability and Resilience](#scalability-and-resilience) - - [Kubernetes Agents](#kubernetes-agents) - - [Troubleshooting](#troubleshooting) -1. [CICD Pipeline Architecture](#cicd-pipeline-architecture) - - [Serverless Jenkins](#serverless-jenkins) - - [Local Execution](#local-execution) -1. [Cloud Native](#cloud-native) - - [Continuous Integration](#continuous-integration) - - [CI-CD Pipelines](#ci-cd-pipelines) - - [Red Hat OpenShift](#red-hat-openshift) -1. [Deployment and Delivery](#deployment-and-delivery) - - [CICD Platforms](#cicd-platforms) - - [Kubernetes-Native CI](#kubernetes-native-ci) -1. [Infrastructure](#infrastructure) - - [Cloud Environments](#cloud-environments) - - [AWS Architectures](#aws-architectures) - - [Container Orchestration](#container-orchestration) - - [Helm Deployments](#helm-deployments) - - [Kubernetes Deployment](#kubernetes-deployment) - - [Scalable Jenkins](#scalable-jenkins) - - [Serverless Jenkins on AWS](#serverless-jenkins-on-aws) -1. [Infrastructure and DevOps](#infrastructure-and-devops) - - [Cloud Native Jenkins](#cloud-native-jenkins) - - [Docker Integration](#docker-integration-1) - - [Kubernetes Blueprints](#kubernetes-blueprints) - - [Kubernetes Installation](#kubernetes-installation) - - [Kubernetes Operators](#kubernetes-operators) - - [Security and Hardening](#security-and-hardening) - - [Special Interest Groups](#special-interest-groups) -1. [Kubernetes and Cloud Native](#kubernetes-and-cloud-native) - - [CICD](#cicd) - - [Dockerization](#dockerization) -1. [Microservices](#microservices) - - [Application Development](#application-development) - - [Kotlin](#kotlin) -1. [Site Reliability Engineering](#site-reliability-engineering) - - [Observability](#observability) - - [Data Management](#data-management) - - [Cost Optimization](#cost-optimization) - ## CICD Infrastructure ### Build and Packaging diff --git a/v2-docs/keptn.md b/v2-docs/keptn.md index 08614faa..f93c2880 100644 --- a/v2-docs/keptn.md +++ b/v2-docs/keptn.md @@ -6,26 +6,6 @@ !!! info "Architectural Context" Detailed reference for Keptn. Data Driven DevOps Automation with Ketpn. Automating Service Level Indicators/Service Level Objectives based build validation with Keptn and Jenkins in the context of Engineering Pipeline. -## Table of Contents - -1. [Cloud Native Lifecycle](#cloud-native-lifecycle) - - [CICD Pipelines](#cicd-pipelines) - - [Community Meetups](#community-meetups) - - [Jenkins Integration](#jenkins-integration) - - [Video Guides](#video-guides) - - [Continuous Delivery](#continuous-delivery) - - [Enterprise Observability](#enterprise-observability) - - [Guides](#guides) - - [Site Reliability Engineering](#site-reliability-engineering) - - [Local Environments](#local-environments) - - [K3s Sandboxing](#k3s-sandboxing) - - [Video Guides](#video-guides-1) - - [Site Reliability Engineering](#site-reliability-engineering-1) - - [Monitoring Automation](#monitoring-automation) -1. [Observability](#observability) - - [Application Performance Monitoring](#application-performance-monitoring) - - [Guides](#guides-1) - ## Cloud Native Lifecycle ### CICD Pipelines diff --git a/v2-docs/kubectl-commands.md b/v2-docs/kubectl-commands.md index 87103585..6742ff2a 100644 --- a/v2-docs/kubectl-commands.md +++ b/v2-docs/kubectl-commands.md @@ -6,15 +6,6 @@ !!! info "Architectural Context" Detailed reference for Kubectl commands in the context of The Container Stack. -## Table of Contents - -1. [DevSecOps and Registry](#devsecops-and-registry) - - [Java Tools](#java-tools) - - [Gradle Reference](#gradle-reference) -1. [Orchestration and Packaging](#orchestration-and-packaging) - - [Helm and GitOps](#helm-and-gitops) - - [Helm Overview](#helm-overview) - ## DevSecOps and Registry ### Java Tools diff --git a/v2-docs/kubernetes-alternatives.md b/v2-docs/kubernetes-alternatives.md index 05f4a907..4f79d523 100644 --- a/v2-docs/kubernetes-alternatives.md +++ b/v2-docs/kubernetes-alternatives.md @@ -6,36 +6,6 @@ !!! info "Architectural Context" Detailed reference for Kubernetes Alternatives in the context of The Container Stack. -## Table of Contents - -1. [Edge and Serverless](#edge-and-serverless) - - [WebAssembly Platforms](#webassembly-platforms) - - [Tau Edge](#tau-edge) -1. [Orchestration](#orchestration) - - [AWS](#aws) - - [ECS vs Kubernetes](#ecs-vs-kubernetes) - - [Hybrid Orchestration](#hybrid-orchestration) - - [Alternatives](#alternatives) - - [Cycle.io](#cycleio) - - [Docker Swarm](#docker-swarm) - - [Comparison](#comparison) - - [Core](#core) - - [Docker Enterprise](#docker-enterprise) - - [PaaS Solutions](#paas-solutions) - - [Ecosystem](#ecosystem) - - [Comparison](#comparison-1) - - [HashiCorp Nomad](#hashicorp-nomad) - - [Case Study](#case-study) - - [Comparison](#comparison-2) - - [Core](#core-1) - - [Kubernetes](#kubernetes) - - [Case Study](#case-study-1) -1. [Serverless Architecture](#serverless-architecture) - - [Edge Computing](#edge-computing) - - [AI Integration](#ai-integration) - - [Local Development](#local-development) - - [WebAssembly](#webassembly) - ## Edge and Serverless ### WebAssembly Platforms diff --git a/v2-docs/kubernetes-autoscaling.md b/v2-docs/kubernetes-autoscaling.md index b909383d..d88536c2 100644 --- a/v2-docs/kubernetes-autoscaling.md +++ b/v2-docs/kubernetes-autoscaling.md @@ -6,23 +6,6 @@ !!! info "Architectural Context" Detailed reference for Autoscaling in the context of The Container Stack. -## Table of Contents - -1. [Architecture](#architecture) - - [Design Patterns](#design-patterns) - - [Sidecar Pattern](#sidecar-pattern) -1. [Infrastructure and Platform](#infrastructure-and-platform) - - [Autoscaling](#autoscaling-1) - - [Event-Driven Scaling](#event-driven-scaling) - - [Request-Driven Scaling](#request-driven-scaling) - - [Performance Engineering](#performance-engineering) - - [Load Testing](#load-testing) -1. [Kubernetes and Scaling](#kubernetes-and-scaling) - - [Deployment Tutorials](#deployment-tutorials) - - [Enterprise Cloud App](#enterprise-cloud-app) - - [Microservices](#microservices) - - [Scaling Patterns](#scaling-patterns) - ## Architecture ### Design Patterns diff --git a/v2-docs/kubernetes-backup-migrations.md b/v2-docs/kubernetes-backup-migrations.md index b1f01a56..d6d51718 100644 --- a/v2-docs/kubernetes-backup-migrations.md +++ b/v2-docs/kubernetes-backup-migrations.md @@ -6,23 +6,6 @@ !!! info "Architectural Context" Detailed reference for Kubernetes Backup and Migrations in the context of The Container Stack. -## Table of Contents - -1. [Application Migration](#application-migration) - - [Modernization](#modernization) - - [Enterprise Migration](#enterprise-migration) -1. [Cloud-Native Migration](#cloud-native-migration) - - [Application Modernization](#application-modernization) - - [Source-to-Image](#source-to-image) -1. [Infrastructure](#infrastructure) - - [Control Plane](#control-plane) - - [ETCD Administration](#etcd-administration) - - [Data Protection](#data-protection) - - [GitOps Synchronizers](#gitops-synchronizers) - - [Kubernetes Backup Operators](#kubernetes-backup-operators) - - [Workload Mobility](#workload-mobility) - - [Migration Toolkits](#migration-toolkits) - ## Application Migration ### Modernization diff --git a/v2-docs/kubernetes-based-devel.md b/v2-docs/kubernetes-based-devel.md index 70596e6c..8d0700dd 100644 --- a/v2-docs/kubernetes-based-devel.md +++ b/v2-docs/kubernetes-based-devel.md @@ -6,27 +6,6 @@ !!! info "Architectural Context" Detailed reference for Kubernetes Based Development. Kubernetes Distributions for local environments. Kubernetes Development Tools and Dashboards in the context of The Container Stack. -## Table of Contents - -1. [API and Integration Testing](#api-and-integration-testing) - - [Mocking and Virtualization](#mocking-and-virtualization) - - [Microcks](#microcks) - - [Microcks Integration](#microcks-integration) -1. [Development Workflow](#development-workflow) - - [CICD Integration](#cicd-integration) - - [Okteto Actions](#okteto-actions) -1. [Kubernetes Developer Experience](#kubernetes-developer-experience) - - [Remote Debugging](#remote-debugging) - - [IDE Integration](#ide-integration) - - [Telepresence](#telepresence) -1. [Platform Engineering](#platform-engineering) - - [Application Delivery](#application-delivery) - - [Catalog UI](#catalog-ui) - - [Multi-Cloud](#multi-cloud) - - [PaaS Framework](#paas-framework) - - [UI and Dashboards](#ui-and-dashboards) - - [Enterprise Console](#enterprise-console) - ## API and Integration Testing ### Mocking and Virtualization diff --git a/v2-docs/kubernetes-bigdata.md b/v2-docs/kubernetes-bigdata.md index 3fad59e3..02ba69a2 100644 --- a/v2-docs/kubernetes-bigdata.md +++ b/v2-docs/kubernetes-bigdata.md @@ -6,29 +6,6 @@ !!! info "Architectural Context" Detailed reference for Big Data and Kubernetes Big Data in the context of The Container Stack. -## Table of Contents - -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [Data and AI](#data-and-ai) - - [Apache Spark](#apache-spark) - - [Cloud Migration](#cloud-migration) - - [Cost Optimization](#cost-optimization) - - [OpenShift](#openshift) - - [Performance and Tuning](#performance-and-tuning) - - [Streaming and Scheduling](#streaming-and-scheduling) - - [Batch Scheduling](#batch-scheduling) - - [Kueue](#kueue) - - [Cloud Platforms](#cloud-platforms) - - [Databricks](#databricks) - - [Data Pipelines](#data-pipelines) - - [Apache Spark](#apache-spark-1) - - [Databricks](#databricks-1) - - [Governance](#governance) - - [Market Analysis](#market-analysis) - - [Adoption Trends](#adoption-trends) - ## Architectural Foundations ### Kubernetes Tools diff --git a/v2-docs/kubernetes-client-libraries.md b/v2-docs/kubernetes-client-libraries.md index 5d4445c3..5c305fbb 100644 --- a/v2-docs/kubernetes-client-libraries.md +++ b/v2-docs/kubernetes-client-libraries.md @@ -6,26 +6,6 @@ !!! info "Architectural Context" Detailed reference for Client Libraries for Kubernetes in the context of The Container Stack. -## Table of Contents - -1. [App Development](#app-development) - - [Java](#java) - - [Kubernetes Clients](#kubernetes-clients) -1. [Cloud-Native Java](#cloud-native-java) - - [Build Tools](#build-tools) - - [Eclipse JKube](#eclipse-jkube) - - [Source Code](#source-code) -1. [Kubernetes Development](#kubernetes-development) - - [Code Generation](#code-generation) - - [Fabric8 CRD](#fabric8-crd) - - [Java SDKs](#java-sdks) - - [Fabric8 API](#fabric8-api) - - [Fabric8 Client](#fabric8-client) - - [Operators](#operators) - - [Quarkus Integration](#quarkus-integration) - - [Java Tooling](#java-tooling) - - [Eclipse JKube](#eclipse-jkube-1) - ## App Development ### Java diff --git a/v2-docs/kubernetes-monitoring.md b/v2-docs/kubernetes-monitoring.md index 18064876..6f306281 100644 --- a/v2-docs/kubernetes-monitoring.md +++ b/v2-docs/kubernetes-monitoring.md @@ -6,55 +6,6 @@ !!! info "Architectural Context" Detailed reference for Kubernetes Monitoring and Logging in the context of The Container Stack. -## Table of Contents - -1. [Advanced Telemetry and FinOps](#advanced-telemetry-and-finops) - - [Troubleshooting Stacks](#troubleshooting-stacks) - - [Loki and Komodor Integration](#loki-and-komodor-integration) - - [eBPF-Based Telemetry](#ebpf-based-telemetry) - - [Pixie Deep Dive](#pixie-deep-dive) -1. [Cloud Native Platforms](#cloud-native-platforms) - - [Kubernetes](#kubernetes) - - [Helm Deployments](#helm-deployments) - - [Telemetry Bundles](#telemetry-bundles) -1. [Container Orchestration](#container-orchestration) - - [Kubernetes](#kubernetes-1) - - [Observability](#observability) - - [Best Practices](#best-practices) -1. [Dynamic Component Monitoring](#dynamic-component-monitoring) - - [Workload Monitoring](#workload-monitoring) - - [Job and CronJob Execution](#job-and-cronjob-execution) -1. [Modern Observability and Service Mesh](#modern-observability-and-service-mesh) - - [Network Performance](#network-performance) - - [NetFlow Telemetry](#netflow-telemetry) - - [eBPF and NetObserv](#ebpf-and-netobserv) - - [Reliability Engineering](#reliability-engineering) - - [eBPF-Based Telemetry](#ebpf-based-telemetry-1) - - [Resource Management](#resource-management) - - [Sizing and Quotas](#sizing-and-quotas) - - [Telemetry Protocols](#telemetry-protocols) - - [OpenTelemetry Runtime](#opentelemetry-runtime) - - [SigNoz and OpenTelemetry](#signoz-and-opentelemetry) - - [eBPF-Based Telemetry](#ebpf-based-telemetry-2) - - [Commercial Integrations](#commercial-integrations) -1. [Observability](#observability-1) - - [ChatOps](#chatops) - - [Collaboration Platforms](#collaboration-platforms) - - [Logging](#logging) - - [Operators](#operators) - - [Sidecar Pattern](#sidecar-pattern) - - [Metrics](#metrics) - - [SLO Management](#slo-management) - - [Telegraf](#telegraf) -1. [Observability and Monitoring](#observability-and-monitoring) - - [Grafana](#grafana) - - [Application Metrics](#application-metrics) - - [FinOps and Resources](#finops-and-resources) - - [Kubernetes Monitoring](#kubernetes-monitoring) - - [Prometheus](#prometheus) - - [High Cardinality](#high-cardinality) - - [Prometheus Operator](#prometheus-operator) - ## Advanced Telemetry and FinOps ### Troubleshooting Stacks diff --git a/v2-docs/kubernetes-networking.md b/v2-docs/kubernetes-networking.md index b1dc2580..de27c6b9 100644 --- a/v2-docs/kubernetes-networking.md +++ b/v2-docs/kubernetes-networking.md @@ -6,78 +6,6 @@ !!! info "Architectural Context" Detailed reference for Kubernetes Networking in the context of Networking & Service Mesh. -## Table of Contents - -1. [Container Orchestration](#container-orchestration) - - [Kubernetes Networking](#kubernetes-networking-1) - - [Kube-Proxy](#kube-proxy) -1. [Infrastructure](#infrastructure) - - [Networking](#networking) - - [Comprehensive Guide](#comprehensive-guide) - - [DNS](#dns) - - [Performance Tuning](#performance-tuning) - - [Deep Dive](#deep-dive) - - [Advanced Routing](#advanced-routing) - - [Packet Flow](#packet-flow) - - [Evaluation](#evaluation) - - [CNI Selection](#cni-selection) - - [Fundamentals](#fundamentals) - - [Service Topology](#service-topology) - - [Ingress](#ingress) - - [Azure Application Gateway](#azure-application-gateway) - - [Ingress Controllers](#ingress-controllers) - - [Overview](#overview) - - [Performance at Scale](#performance-at-scale) - - [gRPC and HTTP2](#grpc-and-http2) - - [Load Balancing](#load-balancing) - - [Decentralized](#decentralized) - - [Global GSLB](#global-gslb) - - [Microservices](#microservices) - - [Inter-Service Communication](#inter-service-communication) - - [Routing and Topology](#routing-and-topology) - - [Topology Aware Routing](#topology-aware-routing) - - [Security](#security) - - [Egress Traffic](#egress-traffic) - - [Intent-Based Access Control](#intent-based-access-control) - - [Network Policies](#network-policies) - - [Packet Management](#packet-management) -1. [Kubernetes](#kubernetes) - - [Networking](#networking-1) - - [Architecture](#architecture) -1. [Networking](#networking-2) - - [CNI](#cni) - - [Cilium](#cilium) - - [Core Services](#core-services) - - [DNS](#dns-1) - - [Ingress and Gateway](#ingress-and-gateway) - - [Automation](#automation) - - [Contour](#contour) - - [Controllers](#controllers) - - [Fundamentals](#fundamentals-1) - - [Gateway API](#gateway-api) - - [NGINX](#nginx) - - [Operations](#operations) - - [Multi-Cluster](#multi-cluster) - - [Cluster Mesh](#cluster-mesh) - - [Service Interconnect](#service-interconnect) - - [WireGuard VPN](#wireguard-vpn) - - [Security](#security-1) - - [Implementation Under the Hood](#implementation-under-the-hood) - - [Namespace Isolation](#namespace-isolation) - - [Network Policy](#network-policy) - - [OpenShift](#openshift) - - [Recipes](#recipes) - - [Zero Trust](#zero-trust) - - [Service Mesh](#service-mesh) - - [Linkerd and Cilium](#linkerd-and-cilium) -1. [Networking and Security](#networking-and-security) - - [Kubernetes Networking](#kubernetes-networking-2) - - [Ingress and Traffic](#ingress-and-traffic) - - [Performance and Tuning](#performance-and-tuning) - - [Security and Hardening](#security-and-hardening) - - [Load Balancing](#load-balancing-1) - - [Performance and Tuning](#performance-and-tuning-1) - ## Container Orchestration ### Kubernetes Networking (1) diff --git a/v2-docs/kubernetes-on-premise.md b/v2-docs/kubernetes-on-premise.md index 2b5ef90a..e2967059 100644 --- a/v2-docs/kubernetes-on-premise.md +++ b/v2-docs/kubernetes-on-premise.md @@ -6,20 +6,6 @@ !!! info "Architectural Context" Detailed reference for On-Premise Production Kubernetes Cluster Installers in the context of The Container Stack. -## Table of Contents - -1. [Application Delivery](#application-delivery) - - [Developer Platforms](#developer-platforms) - - [VMware Tanzu](#vmware-tanzu) -1. [Infrastructure](#infrastructure) - - [Container Runtimes](#container-runtimes) - - [Sandboxing](#sandboxing) - - [Kubernetes Distributions](#kubernetes-distributions) - - [Edge and IoT](#edge-and-iot) -1. [Networking](#networking) - - [Service Mesh](#service-mesh) - - [VMware Tanzu](#vmware-tanzu-1) - ## Application Delivery ### Developer Platforms diff --git a/v2-docs/kubernetes-operators-controllers.md b/v2-docs/kubernetes-operators-controllers.md index d540581c..91320f8c 100644 --- a/v2-docs/kubernetes-operators-controllers.md +++ b/v2-docs/kubernetes-operators-controllers.md @@ -6,34 +6,6 @@ !!! info "Architectural Context" Detailed reference for Kubernetes Operators and Controllers in the context of The Container Stack. -## Table of Contents - -1. [CICD Pipeline](#cicd-pipeline) - - [Kubernetes and Containers](#kubernetes-and-containers) - - [Self-Hosted Infrastructure](#self-hosted-infrastructure) -1. [Cloud Native Infrastructure](#cloud-native-infrastructure) - - [Kubernetes Extension](#kubernetes-extension) - - [Operators Go](#operators-go) -1. [Data and Databases](#data-and-databases) - - [Lifecycle Management](#lifecycle-management) - - [Schema Migrations](#schema-migrations) -1. [Infrastructure](#infrastructure) - - [Container Orchestration](#container-orchestration) - - [Kubernetes Operators](#kubernetes-operators) -1. [Networking](#networking) - - [Ingress and Gateway](#ingress-and-gateway) - - [Controllers](#controllers) - - [Gateway API](#gateway-api) -1. [Observability](#observability) - - [Distributed Tracing](#distributed-tracing) - - [OpenTelemetry Operator](#opentelemetry-operator) -1. [Platform Engineering](#platform-engineering) - - [Job Scheduling](#job-scheduling) - - [Batch Workloads](#batch-workloads) -1. [Security and Identity](#security-and-identity) - - [Secrets Management](#secrets-management) - - [External Secrets Sync](#external-secrets-sync) - ## CICD Pipeline ### Kubernetes and Containers diff --git a/v2-docs/kubernetes-releases.md b/v2-docs/kubernetes-releases.md index 3b798331..b20a9956 100644 --- a/v2-docs/kubernetes-releases.md +++ b/v2-docs/kubernetes-releases.md @@ -6,17 +6,6 @@ !!! info "Architectural Context" Detailed reference for Kubernetes Releases in the context of The Container Stack. -## Table of Contents - -1. [Kubernetes Core](#kubernetes-core) - - [Releases](#releases) - - [v1.28 Features](#v128-features) - - [Resource Management](#resource-management) - - [Pod Resize](#pod-resize) -1. [Platform Engineering](#platform-engineering) - - [Job Scheduling](#job-scheduling) - - [Batch Workloads](#batch-workloads) - ## Kubernetes Core ### Releases diff --git a/v2-docs/kubernetes-security.md b/v2-docs/kubernetes-security.md index 511b41cf..df4134d1 100644 --- a/v2-docs/kubernetes-security.md +++ b/v2-docs/kubernetes-security.md @@ -6,106 +6,6 @@ !!! info "Architectural Context" Detailed reference for Kubernetes Security in the context of Hardened Infrastructure. -## Table of Contents - -1. [API Access Protection](#api-access-protection) - - [Teleport Access Control](#teleport-access-control) -1. [Architecture](#architecture) - - [Microservices](#microservices) - - [Application Lifecycle](#application-lifecycle) -1. [CKS Certification Study Guides](#cks-certification-study-guides) - - [Cluster Lifecycle Security](#cluster-lifecycle-security) -1. [CNI Network Vulnerabilities](#cni-network-vulnerabilities) - - [Network Penetration Testing](#network-penetration-testing) -1. [CVE Analysis](#cve-analysis) - - [Network Vulnerabilities](#network-vulnerabilities) -1. [Case Studies](#case-studies) - - [Historical Exploit Analysis](#historical-exploit-analysis) -1. [Cloud Native Networking](#cloud-native-networking) - - [Network Policies](#network-policies) - - [Calico and Tigera Security](#calico-and-tigera-security) - - [Secure CNI Implementation](#secure-cni-implementation) -1. [Cloud Native Security](#cloud-native-security) - - [The 4Cs of Cloud Native Security](#the-4cs-of-cloud-native-security) -1. [Cluster Hardening](#cluster-hardening) - - [Infrastructural Protection](#infrastructural-protection) - - [Network Policies](#network-policies-1) - - [Operational Security](#operational-security) - - [Runtime Secrets Scanning](#runtime-secrets-scanning) -1. [Cluster Lifecycle Security](#cluster-lifecycle-security-1) - - [Operating System Paradigm](#operating-system-paradigm) -1. [Cluster Misconfigurations](#cluster-misconfigurations) - - [Common Mistakes](#common-mistakes) -1. [Defense in Depth](#defense-in-depth) - - [Cluster Hardening](#cluster-hardening-1) -1. [Identity and Access Management](#identity-and-access-management) - - [SSO and OIDC Configuration](#sso-and-oidc-configuration) -1. [Industry Reports](#industry-reports) - - [Archived Market Trends](#archived-market-trends) - - [Enterprise Security Trends](#enterprise-security-trends) -1. [Kubernetes Platform Engine](#kubernetes-platform-engine) - - [Cluster Installation and Hardening](#cluster-installation-and-hardening) - - [Infrastructure Provisioning](#infrastructure-provisioning) - - [Container Runtimes](#container-runtimes) - - [Runtime Isolation](#runtime-isolation) -1. [Networking](#networking) - - [CNI](#cni) - - [Cilium](#cilium) -1. [Observability and Monitoring](#observability-and-monitoring) - - [Runtime Security](#runtime-security) - - [Falco and K3s Audit Logging](#falco-and-k3s-audit-logging) - - [Security Industry Analysis](#security-industry-analysis) - - [Sysdig and Falco Audit Integration](#sysdig-and-falco-audit-integration) - - [eBPF Runtime Enforcement](#ebpf-runtime-enforcement) - - [Tetragon Platform](#tetragon-platform) -1. [Penetration Testing](#penetration-testing) - - [Security Operations](#security-operations) -1. [Pod Privilege Escalation](#pod-privilege-escalation) - - [Vulnerability Exploitation](#vulnerability-exploitation) -1. [Policy-as-Code](#policy-as-code) - - [Kyverno Administration](#kyverno-administration) - - [Kyverno Rules and Policies](#kyverno-rules-and-policies) -1. [RBAC and Authorization](#rbac-and-authorization) - - [Privilege Escalation](#privilege-escalation) -1. [Risk Analysis and Auditing](#risk-analysis-and-auditing) - - [Threat Vector Modeling](#threat-vector-modeling) -1. [Secrets Management](#secrets-management) - - [HashiCorp Vault Integration](#hashicorp-vault-integration) -1. [Security](#security) - - [Application Security](#application-security) - - [Client Security](#client-security) - - [IAM](#iam) - - [SSO](#sso) - - [Identity and Access](#identity-and-access) - - [Authentication](#authentication) - - [Legacy Tools](#legacy-tools) - - [Microservice Identities](#microservice-identities) - - [OIDC](#oidc) - - [OAuth2 Proxy](#oauth2-proxy) - - [Workload Identity](#workload-identity) - - [Identity and Access Management](#identity-and-access-management-1) - - [Access Control](#access-control) - - [Kubernetes Security](#kubernetes-security-1) - - [Secrets Management](#secrets-management-1) - - [Policy and Admission Control](#policy-and-admission-control) - - [Validating Webhooks](#validating-webhooks) - - [Secrets Management](#secrets-management-2) - - [HashiCorp Vault](#hashicorp-vault) - - [OWASP](#owasp) -1. [Security Training and Playgrounds](#security-training-and-playgrounds) - - [Kubernetes Goat Lab](#kubernetes-goat-lab) -1. [Supply Chain Security](#supply-chain-security) - - [Signature Verification and Ratify](#signature-verification-and-ratify) -1. [Threat Modeling](#threat-modeling) - - [MITRE ATTandCK Adaptation](#mitre-attandck-adaptation) - - [MITRE ATTandCK Framework](#mitre-attandck-framework) -1. [Vulnerability Assessment Tools](#vulnerability-assessment-tools) - - [Kubestriker Scanner](#kubestriker-scanner) -1. [Workload Hardening](#workload-hardening) - - [Identity and Access Management](#identity-and-access-management-2) - - [Pod Security Context](#pod-security-context) - - [Pod Specifications](#pod-specifications) - ## API Access Protection ### Teleport Access Control diff --git a/v2-docs/kubernetes-storage.md b/v2-docs/kubernetes-storage.md index 1adcf3d1..97c6df32 100644 --- a/v2-docs/kubernetes-storage.md +++ b/v2-docs/kubernetes-storage.md @@ -6,27 +6,6 @@ !!! info "Architectural Context" Detailed reference for Kubernetes Storage. Cloud Native Storage in the context of The Container Stack. -## Table of Contents - -1. [Cloud Native Storage Architecture](#cloud-native-storage-architecture) - - [Storage Architecture and Engines](#storage-architecture-and-engines) - - [Container Attached Storage](#container-attached-storage) - - [Object Storage](#object-storage) - - [Storage Paradigms](#storage-paradigms) - - [Storage Fundamentals](#storage-fundamentals) - - [Stateful Applications](#stateful-applications) - - [Storage Paradigms](#storage-paradigms-1) -1. [Kubernetes Storage Implementation](#kubernetes-storage-implementation) - - [Stateful Operations](#stateful-operations) - - [Volume Resizing](#volume-resizing) -1. [Storage](#storage) - - [Kubernetes Storage](#kubernetes-storage) - - [Distributed Block Storage](#distributed-block-storage) - - [GlusterFS Orchestration](#glusterfs-orchestration) -1. [Storage and Data](#storage-and-data) - - [Container Attached Storage](#container-attached-storage-1) - - [OpenEBS](#openebs) - ## Cloud Native Storage Architecture ### Storage Architecture and Engines diff --git a/v2-docs/kubernetes-tools.md b/v2-docs/kubernetes-tools.md index 8a314800..76850a5b 100644 --- a/v2-docs/kubernetes-tools.md +++ b/v2-docs/kubernetes-tools.md @@ -6,306 +6,6 @@ !!! info "Architectural Context" Detailed reference for Kubernetes Plugins, Tools, Extensions and Projects in the context of Architectural Foundations. -## Table of Contents - -1. [AI Infrastructure](#ai-infrastructure) - - [Distributed Computing](#distributed-computing) - - [Kube-Ray](#kube-ray) -1. [Application Architecture](#application-architecture) - - [API Gateway](#api-gateway) - - [gRPC and REST](#grpc-and-rest) -1. [Application Delivery](#application-delivery) - - [Configuration Management](#configuration-management) - - [Automation](#automation) - - [Secret Distribution](#secret-distribution) - - [GitOps](#gitops) - - [Continuous Delivery](#continuous-delivery) - - [Release Management](#release-management) - - [State Reconciliation](#state-reconciliation) - - [Marketplaces and Portals](#marketplaces-and-portals) - - [Lifecycle Management](#lifecycle-management) - - [Packaging](#packaging) - - [Developer Platforms](#developer-platforms) - - [Platform-as-a-Service](#platform-as-a-service) - - [Developer Experience](#developer-experience) - - [Serverless and BaaS](#serverless-and-baas) - - [Development Framework](#development-framework) -1. [Application Lifecycle](#application-lifecycle) - - [Continuous Deployment](#continuous-deployment) - - [Git-based Builds](#git-based-builds) - - [Migration Tools](#migration-tools) - - [Resource Conversion](#resource-conversion) -1. [Application Migration](#application-migration) - - [Modernization](#modernization) - - [Enterprise Migration](#enterprise-migration) -1. [Application Platforms](#application-platforms) - - [PaaS Frameworks](#paas-frameworks) - - [Developer Experience](#developer-experience-1) -1. [Cloud Native Networking](#cloud-native-networking) - - [Service Proxy](#service-proxy) - - [Integration Tools](#integration-tools) -1. [Cloud Native Operations](#cloud-native-operations) - - [Kubernetes](#kubernetes) - - [Configuration Management](#configuration-management-1) - - [Policy Enforcement](#policy-enforcement) -1. [Cloud Native Platforms](#cloud-native-platforms) - - [Kubernetes](#kubernetes-1) - - [Multi-Arch Telemetry](#multi-arch-telemetry) -1. [Cluster Management](#cluster-management) - - [Autoscaling](#autoscaling) - - [Dynamic Scaling](#dynamic-scaling) - - [Configuration Management](#configuration-management-2) - - [Dynamic Metadata](#dynamic-metadata) - - [Cost Optimization](#cost-optimization) - - [Metrics Analysis](#metrics-analysis) - - [Resource Control](#resource-control) - - [Hardware Discovery](#hardware-discovery) - - [Node Labeling](#node-labeling) - - [Operator Frameworks](#operator-frameworks) - - [Automation Scripts](#automation-scripts) - - [Performance Tuning](#performance-tuning) - - [Image Caching](#image-caching) - - [Scheduling and Node Assignment](#scheduling-and-node-assignment) - - [Admission Controllers](#admission-controllers) - - [Dynamic Balancing](#dynamic-balancing) -1. [Containers](#containers) - - [Developer Tooling](#developer-tooling) - - [Cloud Emulation](#cloud-emulation) -1. [Continuous Integration and Delivery](#continuous-integration-and-delivery) - - [Cloud Native CI-CD](#cloud-native-ci-cd) - - [Tekton UI Extensions](#tekton-ui-extensions) -1. [Data Engineering](#data-engineering) - - [MLOps Platforms](#mlops-platforms) - - [Orchestration](#orchestration) - - [Workload Scheduling](#workload-scheduling) - - [Orchestration](#orchestration-1) -1. [Data Operations](#data-operations) - - [Data Pipeline](#data-pipeline) - - [Real-time Streaming](#real-time-streaming) -1. [DevOps](#devops) - - [Static Analysis](#static-analysis) - - [Kubernetes Validation](#kubernetes-validation) -1. [Developer Experience](#developer-experience-2) - - [Local Development](#local-development) - - [Application Deployment](#application-deployment) -1. [Extensibility](#extensibility) - - [Operator Framework](#operator-framework) - - [Controller](#controller) -1. [GitOps and Delivery](#gitops-and-delivery) - - [Configuration Management](#configuration-management-3) - - [Sidecar Utilities](#sidecar-utilities) -1. [Infrastructure](#infrastructure) - - [Access Control](#access-control) - - [SSH Integrations](#ssh-integrations) - - [Auto-scaling](#auto-scaling) - - [Cost Optimization](#cost-optimization-1) - - [Autoscaling](#autoscaling-1) - - [Node Provisioning](#node-provisioning) - - [Configuration](#configuration) - - [Reflector](#reflector) - - [Cost Optimization](#cost-optimization-2) - - [Scheduling](#scheduling) - - [Image Registry](#image-registry) - - [OCI Specification](#oci-specification) - - [Multi-Cluster Management](#multi-cluster-management) - - [Federation](#federation) - - [Virtual Peering](#virtual-peering) - - [Networking](#networking) - - [Fundamentals](#fundamentals) - - [Service Discovery](#service-discovery) - - [Node Management](#node-management) - - [Auditing and Compliance](#auditing-and-compliance) - - [Platform Engineering](#platform-engineering) - - [GitOps Platforms](#gitops-platforms) - - [Reliability](#reliability) - - [Graceful Shutdown](#graceful-shutdown) - - [Scaling](#scaling) - - [Autoscaling](#autoscaling-2) - - [Scheduling](#scheduling-1) - - [Simulator](#simulator) - - [Timezones](#timezones) - - [Serverless Containers](#serverless-containers) - - [Virtual Nodes](#virtual-nodes) - - [Storage](#storage) - - [Dynamic Scaling](#dynamic-scaling-1) - - [Virtual Desktop Infrastructure](#virtual-desktop-infrastructure) - - [Edge Networking](#edge-networking) -1. [Kubernetes](#kubernetes-2) - - [Observability](#observability) - - [Visualization](#visualization) -1. [Kubernetes and Container Orchestration](#kubernetes-and-container-orchestration) - - [Platform Engineering](#platform-engineering-1) - - [AppOps and GitOps](#appops-and-gitops) -1. [Local Developer Environment](#local-developer-environment) - - [Container Runtime Setup](#container-runtime-setup) - - [Docker Compose](#docker-compose) -1. [Machine Learning](#machine-learning) - - [Model Serving](#model-serving) - - [Serverless ML](#serverless-ml) -1. [Multi-Cluster](#multi-cluster) - - [Control Plane](#control-plane) - - [UI Dashboards](#ui-dashboards) -1. [Network](#network) - - [Proxy and Service Mesh](#proxy-and-service-mesh) - - [Data Plane](#data-plane) -1. [Networking](#networking-1) - - [Ingress and Edge](#ingress-and-edge) - - [Integration](#integration) - - [Ingress and Routing](#ingress-and-routing) - - [Serverless](#serverless) - - [Microservices Routing](#microservices-routing) - - [Debugging](#debugging) -1. [Networking and Security](#networking-and-security) - - [Access Control](#access-control-1) - - [Identity Gateways](#identity-gateways) - - [Global Load Balancing](#global-load-balancing) - - [GSLB Operator](#gslb-operator) -1. [Observability](#observability-1) - - [APM and Metrics](#apm-and-metrics) - - [Observability Platform](#observability-platform) - - [Alerting and Notifications](#alerting-and-notifications) - - [Crash Tracking](#crash-tracking) - - [Job Monitoring](#job-monitoring) - - [ChatOps](#chatops) - - [Collaboration Platforms](#collaboration-platforms) - - [Cluster Monitoring](#cluster-monitoring) - - [Connectivity Checkers](#connectivity-checkers) - - [Event Management](#event-management) - - [Exporters](#exporters) - - [Notifications](#notifications) - - [Incident Response](#incident-response) - - [Operations](#operations) - - [Logging and Events](#logging-and-events) - - [Event Routing](#event-routing) - - [UI Dashboards](#ui-dashboards-1) - - [Validation and Analysis](#validation-and-analysis) - - [eBPF Diagnostics](#ebpf-diagnostics) - - [Distributed Tracing](#distributed-tracing) -1. [Observability and Diagnostics](#observability-and-diagnostics) - - [Cluster Management Platforms](#cluster-management-platforms) - - [UI Tools](#ui-tools) - - [Log Aggregation](#log-aggregation) - - [UI Tools](#ui-tools-1) - - [eBPF Observability](#ebpf-observability) - - [Application Monitoring](#application-monitoring) -1. [Observability and Monitoring](#observability-and-monitoring) - - [Runtime Security](#runtime-security) - - [Falco and K3s Audit Logging](#falco-and-k3s-audit-logging) -1. [Observability and Performance](#observability-and-performance) - - [Network Monitoring](#network-monitoring) - - [Mesh Connectivity](#mesh-connectivity) - - [Real-Time Monitoring](#real-time-monitoring) - - [Error Alerting](#error-alerting) -1. [Operations](#operations-1) - - [Automation](#automation-1) - - [Media and Downloaders](#media-and-downloaders) - - [Workflow](#workflow) - - [CLI Tooling](#cli-tooling) - - [Web Terminal](#web-terminal) - - [GitOps and Delivery](#gitops-and-delivery-1) - - [Application Delivery](#application-delivery-1) - - [Monitoring](#monitoring) - - [Automation](#automation-2) - - [Observability](#observability-2) - - [Distributed Tracing](#distributed-tracing-1) - - [History Visualization](#history-visualization) - - [Prometheus UI](#prometheus-ui) - - [Visualization](#visualization-1) - - [Visualizer](#visualizer) - - [Platform Engineering](#platform-engineering-2) - - [Control Planes](#control-planes) - - [Service Catalog](#service-catalog) - - [Visualization](#visualization-2) - - [Dashboard](#dashboard) - - [Web Dashboards](#web-dashboards) - - [UI Portal](#ui-portal) -1. [Performance and Testing](#performance-and-testing) - - [Load Testing](#load-testing) - - [Observability](#observability-3) -1. [Performance Engineering](#performance-engineering) - - [Kubernetes Optimization](#kubernetes-optimization) - - [Autonomous Tuning](#autonomous-tuning) -1. [Platform](#platform) - - [PaaS](#paas) - - [Cloud Foundry](#cloud-foundry) -1. [Platform Engineering](#platform-engineering-3) - - [Application Delivery](#application-delivery-2) - - [OAM Engines](#oam-engines) - - [Cluster Distributions](#cluster-distributions) - - [NoOps Platforms](#noops-platforms) - - [Control Plane Design](#control-plane-design) - - [API Federation](#api-federation) - - [Job Scheduling](#job-scheduling) - - [Batch Workloads](#batch-workloads) - - [Multi-Cluster Routing](#multi-cluster-routing) - - [Fleet Orchestration](#fleet-orchestration) - - [Service Mesh Management](#service-mesh-management) - - [Observability Platforms](#observability-platforms) -1. [Resource Management](#resource-management) - - [FinOps](#finops) - - [Cluster Scale Down](#cluster-scale-down) -1. [Scheduling](#scheduling-2) - - [Multi-Cluster](#multi-cluster-1) - - [Batch Workloads](#batch-workloads-1) -1. [Security](#security) - - [Access Control](#access-control-2) - - [RBAC Management](#rbac-management) - - [SSH Proxy](#ssh-proxy) - - [Admission Control](#admission-control) - - [Image Signature](#image-signature) - - [Authentication](#authentication) - - [Proxy](#proxy) - - [Certificate Management](#certificate-management) - - [Trust and Identity](#trust-and-identity) - - [Identity and Access](#identity-and-access) - - [Authentication](#authentication-1) - - [Integration](#integration-1) - - [LDAP Authentication](#ldap-authentication) - - [Policy Enforcement](#policy-enforcement-1) - - [Admission Control](#admission-control-1) - - [Secret Management](#secret-management) - - [Image Registry](#image-registry-1) - - [Integrations](#integrations) - - [Secrets Management](#secrets-management) - - [GCP Secret Manager](#gcp-secret-manager) - - [Integration](#integration-2) - - [Service Mesh Security](#service-mesh-security) - - [Audit Tools](#audit-tools) - - [Vulnerabilities](#vulnerabilities) - - [Hacking Labs](#hacking-labs) - - [Vulnerability Scanning](#vulnerability-scanning) - - [Automation Operators](#automation-operators) - - [Runtime Security](#runtime-security-1) -1. [Security and Compliance](#security-and-compliance) - - [Identity and Access](#identity-and-access-1) - - [LDAP Directory](#ldap-directory) - - [Supply Chain Security](#supply-chain-security) - - [Admission Control](#admission-control-2) - - [SBOM and Vulnerabilities](#sbom-and-vulnerabilities) -1. [Security and Hardening](#security-and-hardening) - - [Vulnerability Assessment](#vulnerability-assessment) - - [Offensive Tools](#offensive-tools) -1. [Security and Identity](#security-and-identity) - - [Authentication and Authorization](#authentication-and-authorization) - - [Single Sign-On](#single-sign-on) - - [Compliance and Auditing](#compliance-and-auditing) - - [Dependency Tracking](#dependency-tracking) - - [Configuration Management](#configuration-management-4) - - [Backup Tools](#backup-tools) - - [Sync Controllers](#sync-controllers) - - [Secrets Management](#secrets-management-1) - - [External Secrets Sync](#external-secrets-sync) -1. [Serverless](#serverless-1) - - [Workflow Orchestration](#workflow-orchestration) - - [Event-Driven](#event-driven) -1. [Storage](#storage-1) - - [Kubernetes Storage](#kubernetes-storage) - - [GlusterFS Orchestration](#glusterfs-orchestration) - - [NFS](#nfs) - - [Provisioner](#provisioner) - - [Volume Management](#volume-management) - - [Capacity Management](#capacity-management) - ## AI Infrastructure ### Distributed Computing diff --git a/v2-docs/kubernetes-troubleshooting.md b/v2-docs/kubernetes-troubleshooting.md index 3481370c..6518fa98 100644 --- a/v2-docs/kubernetes-troubleshooting.md +++ b/v2-docs/kubernetes-troubleshooting.md @@ -6,15 +6,6 @@ !!! info "Architectural Context" Detailed reference for Kubernetes Troubleshooting in the context of The Container Stack. -## Table of Contents - -1. [Development Workflow](#development-workflow) - - [Local Development](#local-development) - - [Bridge to Kubernetes](#bridge-to-kubernetes) -1. [Observability](#observability) - - [Networking](#networking) - - [API Traffic Analyzer](#api-traffic-analyzer) - ## Development Workflow ### Local Development diff --git a/v2-docs/kubernetes-tutorials.md b/v2-docs/kubernetes-tutorials.md index d6e82d72..37995c54 100644 --- a/v2-docs/kubernetes-tutorials.md +++ b/v2-docs/kubernetes-tutorials.md @@ -6,42 +6,6 @@ !!! info "Architectural Context" Detailed reference for Kubernetes Tutorials in the context of Architectural Foundations. -## Table of Contents - -1. [Cloud Native](#cloud-native) - - [Education](#education) - - [Academic Programs](#academic-programs) - - [Spanish Tutorials](#spanish-tutorials) -1. [Cloud Native Infrastructure](#cloud-native-infrastructure) - - [Service Mesh](#service-mesh) - - [Tutorials](#tutorials) -1. [Cloud-Native Infrastructure](#cloud-native-infrastructure) - - [Learning Resources](#learning-resources) - - [Kubernetes Courses](#kubernetes-courses) -1. [Container Orchestration](#container-orchestration) - - [AKS Labs](#aks-labs) - - [Hands-on Learning](#hands-on-learning) -1. [Orchestration](#orchestration) - - [Containers and Kubernetes](#containers-and-kubernetes) - - [Video Series](#video-series) - - [Foundations](#foundations) - - [Kubernetes](#kubernetes) - - [Comprehensive Reference](#comprehensive-reference) - - [Continuous Learning](#continuous-learning) - - [Platform Engineering](#platform-engineering) - - [Fundamentals](#fundamentals) - - [Interactive Platform](#interactive-platform) - - [Learning Pathways](#learning-pathways) - - [GitHub Repository](#github-repository) - - [Official Documentation](#official-documentation) - - [Opinion and Strategy](#opinion-and-strategy) - - [Learning Pathways](#learning-pathways-1) - - [Video Series](#video-series-1) - - [Enterprise Fundamentals](#enterprise-fundamentals) - - [Production Mechanics](#production-mechanics) - - [Kubernetes Fundamentals](#kubernetes-fundamentals) - - [Visual Learning](#visual-learning) - ## Cloud Native ### Education diff --git a/v2-docs/kubernetes.md b/v2-docs/kubernetes.md index 6ecb51ee..f8f76e6b 100644 --- a/v2-docs/kubernetes.md +++ b/v2-docs/kubernetes.md @@ -6,304 +6,6 @@ !!! info "Architectural Context" Detailed reference for Kubernetes in the context of Architectural Foundations. -## Table of Contents - -1. [AI and Orchestration](#ai-and-orchestration) - - [Agentic Workflows](#agentic-workflows) - - [Command-Line Tools](#command-line-tools) -1. [Application Delivery](#application-delivery) - - [Core Mechanics](#core-mechanics) - - [Metadata Strategy](#metadata-strategy) - - [Objects and Namespaces](#objects-and-namespaces) - - [Runtime Lifecycle](#runtime-lifecycle) - - [Deployments](#deployments) - - [Core Mechanics](#core-mechanics-1) - - [Declarative Manifests](#declarative-manifests) - - [Release Engineering](#release-engineering) -1. [Application Deployment](#application-deployment) - - [Frameworks](#frameworks) - - [Ruby on Rails](#ruby-on-rails) -1. [Application Management](#application-management) - - [Custom Controllers](#custom-controllers) - - [OpenKruise](#openkruise) -1. [Architecture](#architecture) - - [Design Patterns](#design-patterns) - - [Microservices](#microservices) - - [Sidecar Pattern](#sidecar-pattern) - - [Distributed Systems](#distributed-systems) - - [Patterns](#patterns) - - [Fundamentals](#fundamentals) - - [Container Orchestration](#container-orchestration) - - [Microservices](#microservices-1) - - [Platform Engineering](#platform-engineering) - - [Migration](#migration) - - [Serverless](#serverless) - - [Multi-Cloud](#multi-cloud) - - [Federation](#federation) - - [Security](#security) - - [API Access](#api-access) - - [Container Drift](#container-drift) - - [Webhooks](#webhooks) - - [Strategy](#strategy) - - [Application Lifecycle](#application-lifecycle) - - [Workloads](#workloads) - - [Enterprise Use-Cases](#enterprise-use-cases) -1. [CICD Pipelines](#cicd-pipelines) - - [Security and Supply Chain](#security-and-supply-chain) - - [Dependabot](#dependabot) -1. [Career Development](#career-development) - - [Skill Alignment](#skill-alignment) - - [Container Orchestration](#container-orchestration-1) -1. [Case Studies](#case-studies) - - [Large-Scale Migration](#large-scale-migration) - - [Traffic Scaling](#traffic-scaling) -1. [Cloud Architecture](#cloud-architecture) - - [NoOps and Serverless](#noops-and-serverless) - - [Overview](#overview) -1. [Cloud Infrastructure](#cloud-infrastructure) - - [Azure Networking](#azure-networking) - - [Latency Optimization](#latency-optimization) - - [Kubernetes](#kubernetes-1) - - [Workload Management](#workload-management) -1. [Cloud Infrastructure and Orchestration](#cloud-infrastructure-and-orchestration) - - [Container Orchestration](#container-orchestration-2) - - [Helm and Packaging](#helm-and-packaging) -1. [Cloud Native Platforms](#cloud-native-platforms) - - [Kubernetes](#kubernetes-2) - - [Telemetry Bundles](#telemetry-bundles) -1. [Cluster Management](#cluster-management) - - [Deployments](#deployments-1) - - [Zero Downtime](#zero-downtime) -1. [Compute](#compute) - - [Pod Scheduling](#pod-scheduling) - - [Priority and Eviction](#priority-and-eviction) - - [Resource Allocation](#resource-allocation) - - [Pods](#pods) - - [Core Concepts](#core-concepts) -1. [Configuration](#configuration) - - [ConfigMaps](#configmaps) - - [Application State](#application-state) - - [Storage Engines](#storage-engines) - - [Synchronization](#synchronization) - - [Runtime Configuration](#runtime-configuration) - - [Environment Variables](#environment-variables) - - [Hot Reloading](#hot-reloading) - - [Secrets Management](#secrets-management) - - [Environment Variables](#environment-variables-1) - - [State Management](#state-management) - - [Config and Secrets](#config-and-secrets) -1. [Container Orchestration](#container-orchestration-3) - - [Azure Kubernetes Service](#azure-kubernetes-service) - - [Well-Architected Framework](#well-architected-framework) -1. [Containers and Orchestration](#containers-and-orchestration) - - [Kubernetes Development](#kubernetes-development) - - [API Client Libraries](#api-client-libraries) - - [Kubernetes Operations](#kubernetes-operations) - - [Pod Restarts](#pod-restarts) - - [Kubernetes Storage](#kubernetes-storage) - - [Volumes Overview](#volumes-overview) -1. [Core Concepts](#core-concepts-1) - - [Introduction](#introduction) - - [Orchestration Concepts](#orchestration-concepts) - - [Workload Resources](#workload-resources) - - [Controller Comparison](#controller-comparison) - - [Pod and Controllers](#pod-and-controllers) -1. [Core Kubernetes](#core-kubernetes) - - [Architecture](#architecture-1) - - [Control Plane](#control-plane) - - [Edge Computing](#edge-computing) - - [Basics](#basics) - - [Introduction](#introduction-1) -1. [Cost Optimization](#cost-optimization) - - [Infrastructure](#infrastructure) - - [FinOps](#finops) -1. [Data Management](#data-management) - - [Databases](#databases) - - [Microservices Datastores](#microservices-datastores) -1. [Deployment and Delivery](#deployment-and-delivery) - - [Deployment Strategies](#deployment-strategies) - - [Blue-Green and Canary](#blue-green-and-canary) -1. [DevOps](#devops) - - [CICD](#cicd) - - [Reference Architecture](#reference-architecture) -1. [Developer Experience](#developer-experience) - - [Local Development](#local-development) - - [Telepresence](#telepresence) -1. [Development](#development) - - [Deployment](#deployment) - - [Container Lifecycle](#container-lifecycle) - - [Infrastructure-as-Code](#infrastructure-as-code) - - [Pulumi Integration](#pulumi-integration) - - [Preview Environments](#preview-environments) - - [CICD Integration](#cicd-integration) - - [Validation Protocols](#validation-protocols) - - [CICD Integration](#cicd-integration-1) -1. [FinOps](#finops-1) - - [Resource Optimization](#resource-optimization) - - [API Usage](#api-usage) -1. [Fundamentals](#fundamentals-1) - - [Advocacy](#advocacy) - - [Developer Workflows](#developer-workflows) - - [Community Resources](#community-resources) - - [Reference Manuals](#reference-manuals) - - [Developer Workflows](#developer-workflows-1) - - [API Objects](#api-objects) - - [Architecture](#architecture-2) - - [Operations](#operations) - - [Introduction](#introduction-2) - - [Best Practices](#best-practices) - - [Container Runtimes](#container-runtimes) - - [Tutorials](#tutorials) - - [Deployment Workflow](#deployment-workflow) -1. [Industry Analysis](#industry-analysis) - - [Enterprise Panel](#enterprise-panel) - - [Production Challenges](#production-challenges) -1. [Infrastructure](#infrastructure-1) - - [Migration](#migration-1) - - [Container Orchestration](#container-orchestration-4) - - [Dev Environments](#dev-environments) -1. [Infrastructure Optimization](#infrastructure-optimization) - - [Cost Management](#cost-management) - - [Tooling](#tooling) -1. [Kubernetes Platform Engine](#kubernetes-platform-engine) - - [Cluster Operations](#cluster-operations) - - [Memory Management](#memory-management) -1. [Networking](#networking) - - [Multi-Cluster](#multi-cluster) - - [MCS-API](#mcs-api) - - [Multicluster Routing](#multicluster-routing) - - [Submariner Integration](#submariner-integration) - - [Pod Connectivity](#pod-connectivity) - - [Ingress and Services](#ingress-and-services) - - [kube-proxy](#kube-proxy) - - [IPVS Routing](#ipvs-routing) -1. [Networking and Ingress](#networking-and-ingress) - - [DNS](#dns) - - [Automation](#automation) -1. [Observability](#observability) - - [Monitoring](#monitoring) - - [Telemetry Protocols](#telemetry-protocols) -1. [Operations](#operations-1) - - [Application Reliability](#application-reliability) - - [Cluster Maintenance](#cluster-maintenance) - - [Health Checks](#health-checks) - - [Best Practices](#best-practices-1) - - [Production Readiness](#production-readiness) - - [High Availability](#high-availability) - - [Deployment Best Practices](#deployment-best-practices) - - [Node Operations](#node-operations) - - [Maintenance](#maintenance) - - [Performance Tuning](#performance-tuning) - - [Autoscaling](#autoscaling) - - [Production Readiness](#production-readiness-1) - - [Best Practices](#best-practices-2) - - [Checklists](#checklists) - - [Reliability](#reliability) - - [Zero Downtime](#zero-downtime-1) - - [Resiliency](#resiliency) - - [Pod Lifecycle](#pod-lifecycle) - - [Resource Orchestration](#resource-orchestration) - - [Wait Strategies](#wait-strategies) - - [Workload Management](#workload-management-1) - - [Migration and Deployment](#migration-and-deployment) - - [Pod Configuration](#pod-configuration) -1. [Orchestration](#orchestration) - - [Concurrency](#concurrency) - - [Distributed Locks](#distributed-locks) - - [Pod Lifecycle](#pod-lifecycle-1) - - [Hooks](#hooks) - - [Pod Patterns](#pod-patterns) - - [Networking](#networking-1) - - [Sidecars](#sidecars) - - [Scheduling](#scheduling) - - [Autoscaling](#autoscaling-1) - - [Priority Class](#priority-class) -1. [Platform Engineering](#platform-engineering-1) - - [Ecosystem Tools](#ecosystem-tools) - - [Open Source Extensions](#open-source-extensions) -1. [Resource Management](#resource-management) - - [Automation and Tools](#automation-and-tools) - - [Rightsizing Tools](#rightsizing-tools) - - [Performance Optimization](#performance-optimization) - - [CPU Limits and Throttling](#cpu-limits-and-throttling) - - [Go Optimizations](#go-optimizations) - - [Java Optimizations](#java-optimizations) - - [Policy and Governance](#policy-and-governance) - - [Operational Risks](#operational-risks) - - [Production Operations](#production-operations) - - [Capacity Management](#capacity-management) - - [Resource Planning](#resource-planning) - - [Application Sizing](#application-sizing) - - [CPU Limits and Throttling](#cpu-limits-and-throttling-1) - - [Memory Management](#memory-management-1) - - [Reliability vs Cost](#reliability-vs-cost) - - [Requests and Limits](#requests-and-limits) -1. [Scaling](#scaling) - - [Horizontal Pod Autoscaler](#horizontal-pod-autoscaler) - - [Custom Metrics](#custom-metrics) -1. [Scheduling and Orchestration](#scheduling-and-orchestration) - - [Scheduler Internals](#scheduler-internals) - - [Pod Rebalancing](#pod-rebalancing) -1. [Security](#security-1) - - [Authentication Protocols](#authentication-protocols) - - [CICD Security](#cicd-security) - - [Efficiency](#efficiency) - - [Hardening Pipelines](#hardening-pipelines) - - [Isolation](#isolation) - - [User Namespaces](#user-namespaces) - - [Network Security](#network-security) - - [Network Policies](#network-policies) - - [Orchestration](#orchestration-1) - - [Scheduling Risks](#scheduling-risks) - - [Resource Management](#resource-management-1) - - [Audit](#audit) - - [Secrets Management](#secrets-management-1) - - [CSI Driver](#csi-driver) - - [Encryption](#encryption) -1. [Security and Compliance](#security-and-compliance) - - [Supply Chain Security](#supply-chain-security) - - [Hardening](#hardening) -1. [Serverless](#serverless-1) - - [Knative](#knative) - - [Architecture Scaling](#architecture-scaling) -1. [Service Mesh](#service-mesh) - - [Networking](#networking-2) - - [Traffic Management](#traffic-management) -1. [Storage](#storage) - - [Volume Mounts](#volume-mounts) - - [Sync Latency](#sync-latency) -1. [Strategy](#strategy-1) - - [Cloud Native Trends](#cloud-native-trends) - - [Ecosystem Impact](#ecosystem-impact) - - [Disaster Recovery](#disaster-recovery) - - [Multicluster](#multicluster) - - [Organizational Structure](#organizational-structure) - - [Service Ownership](#service-ownership) -1. [Testing](#testing) - - [API Mocking](#api-mocking) - - [Microcks](#microcks) -1. [Traffic Management](#traffic-management-1) - - [Ingress](#ingress) - - [Canary Deployments](#canary-deployments) -1. [Training](#training) - - [Books](#books) - - [NodeJS](#nodejs) - - [Foundations](#foundations) - - [Kubernetes Basics](#kubernetes-basics) -1. [Workload Management](#workload-management-2) - - [Application Lifecycle](#application-lifecycle-1) - - [Probes and Health Checks](#probes-and-health-checks) - - [ASP.NET Core Implementation](#aspnet-core-implementation) - - [Autoscaling Integration](#autoscaling-integration) - - [Best Practices](#best-practices-3) - - [Liveness Probes](#liveness-probes) - - [Observability](#observability-1) - - [Readiness Gates](#readiness-gates) - - [Tutorial](#tutorial) -1. [Workload Scaling](#workload-scaling) - - [Asynchronous Processing](#asynchronous-processing) - - [Custom Metrics](#custom-metrics-1) - ## AI and Orchestration ### Agentic Workflows diff --git a/v2-docs/kustomize.md b/v2-docs/kustomize.md index 8f0ea0f2..4c66331c 100644 --- a/v2-docs/kustomize.md +++ b/v2-docs/kustomize.md @@ -6,12 +6,6 @@ !!! info "Architectural Context" Detailed reference for Template-Free Configuration Customization with Kustomize (Kubernetes Native Configuration Management) in the context of Hardened Infrastructure. -## Table of Contents - -1. [Cloud Native](#cloud-native) - - [Kubernetes](#kubernetes) - - [Microservice Deployment](#microservice-deployment) - ## Cloud Native ### Kubernetes diff --git a/v2-docs/linux-dev-env.md b/v2-docs/linux-dev-env.md index c6a828b7..bb67d405 100644 --- a/v2-docs/linux-dev-env.md +++ b/v2-docs/linux-dev-env.md @@ -6,12 +6,6 @@ !!! info "Architectural Context" Detailed reference for WSL: Linux Dev Environment on Windows in the context of Developer Ecosystem. -## Table of Contents - -1. [Development Environment](#development-environment) - - [Windows Subsystem for Linux](#windows-subsystem-for-linux) - - [Kubernetes Desktop](#kubernetes-desktop) - ## Development Environment ### Windows Subsystem for Linux diff --git a/v2-docs/linux.md b/v2-docs/linux.md index 77293173..2f98001b 100644 --- a/v2-docs/linux.md +++ b/v2-docs/linux.md @@ -6,23 +6,6 @@ !!! info "Architectural Context" Detailed reference for Linux and SSH in the context of Architectural Foundations. -## Table of Contents - -1. [Networking and Security](#networking-and-security) - - [Data Transfer Protocols](#data-transfer-protocols) - - [Command Line Utilities](#command-line-utilities) - - [Network Services](#network-services) - - [Port Monitoring](#port-monitoring) -1. [Operating Systems and Infrastructure](#operating-systems-and-infrastructure) - - [Linux Kernel](#linux-kernel) - - [Container Virtualization](#container-virtualization) -1. [Software Engineering](#software-engineering) - - [Development Tools](#development-tools) - - [File System Watching](#file-system-watching) - - [Systems Programming](#systems-programming) - - [Architecture and Design](#architecture-and-design) - - [Time and Serialization](#time-and-serialization) - ## Networking and Security ### Data Transfer Protocols diff --git a/v2-docs/liquibase.md b/v2-docs/liquibase.md index a71997cb..f0cd990e 100644 --- a/v2-docs/liquibase.md +++ b/v2-docs/liquibase.md @@ -6,24 +6,6 @@ !!! info "Architectural Context" Detailed reference for Liquibase in the context of Hardened Infrastructure. -## Table of Contents - -1. [Cloud Native Infrastructure](#cloud-native-infrastructure) - - [Kubernetes Deployment Patterns](#kubernetes-deployment-patterns) - - [Database Deployment](#database-deployment) -1. [Continuous Delivery](#continuous-delivery) - - [Database GitOps](#database-gitops) - - [Liquibase](#liquibase-1) -1. [Data Architecture](#data-architecture) - - [Database Migrations](#database-migrations) - - [Tool Comparison](#tool-comparison) -1. [Database Architecture](#database-architecture) - - [Database GitOps](#database-gitops-1) - - [Schema Management](#schema-management) -1. [Infrastructure as Code](#infrastructure-as-code) - - [Database Migration](#database-migration) - - [CICD and Delivery](#cicd-and-delivery) - ## Cloud Native Infrastructure ### Kubernetes Deployment Patterns diff --git a/v2-docs/lowcode-nocode.md b/v2-docs/lowcode-nocode.md index 487b6bb6..76e32c76 100644 --- a/v2-docs/lowcode-nocode.md +++ b/v2-docs/lowcode-nocode.md @@ -6,18 +6,6 @@ !!! info "Architectural Context" Detailed reference for Low Code and No Code in the context of Developer Ecosystem. -## Table of Contents - -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [Platform Engineering](#platform-engineering) - - [Development Paradigms](#development-paradigms) - - [Low Code](#low-code) -1. [Software Engineering](#software-engineering) - - [Development Paradigms](#development-paradigms-1) - - [Low Code](#low-code-1) - ## Architectural Foundations ### Kubernetes Tools diff --git a/v2-docs/managed-kubernetes-in-public-cloud.md b/v2-docs/managed-kubernetes-in-public-cloud.md index 6c78f298..566213eb 100644 --- a/v2-docs/managed-kubernetes-in-public-cloud.md +++ b/v2-docs/managed-kubernetes-in-public-cloud.md @@ -6,118 +6,6 @@ !!! info "Architectural Context" Detailed reference for Managed Kubernetes in Public Cloud in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Alternative Cloud](#alternative-cloud) - - [DigitalOcean Kubernetes DOKS](#digitalocean-kubernetes-doks) - - [GitOps and Continuous Delivery](#gitops-and-continuous-delivery) - - [Linode Kubernetes Engine LKE](#linode-kubernetes-engine-lke) - - [Autoscaling Core](#autoscaling-core) -1. [Architecture and Design](#architecture-and-design) - - [Microservices Design](#microservices-design) - - [Production AKS Deployment](#production-aks-deployment) - - [Serverless Migrations](#serverless-migrations) - - [Container Apps](#container-apps) -1. [Architecture Blueprint](#architecture-blueprint) - - [Multi-Cloud and Azure](#multi-cloud-and-azure) - - [Infrastructure Design](#infrastructure-design) -1. [Cloud Infrastructure](#cloud-infrastructure) - - [AWS](#aws) - - [Container Orchestration](#container-orchestration) - - [Amazon EKS](#amazon-eks) - - [Deployments](#deployments) - - [Traffic Management](#traffic-management) - - [Auto-scaling](#auto-scaling) - - [Fargate](#fargate) - - [Prometheus](#prometheus) - - [Container Orchestration](#container-orchestration-1) - - [AKS Integration](#aks-integration) - - [EKS Security](#eks-security) - - [Continuous Delivery](#continuous-delivery) - - [GitOps](#gitops) - - [Preview Environments](#preview-environments) - - [Infrastructure as Code](#infrastructure-as-code) - - [Terraform](#terraform) - - [Multi-Cluster Management](#multi-cluster-management) - - [Case Study](#case-study) - - [Networking](#networking) - - [Ingress Controllers](#ingress-controllers) - - [Scale Optimization](#scale-optimization) -1. [Cloud Providers](#cloud-providers) - - [AWS EKS](#aws-eks) - - [GitOps and Automation](#gitops-and-automation) - - [Infrastructure Provisioning](#infrastructure-provisioning) - - [Hybrid Cloud](#hybrid-cloud) - - [Service Mesh Integration](#service-mesh-integration) - - [Networking](#networking-1) - - [Private Connectivity](#private-connectivity) - - [Service Mesh Latency](#service-mesh-latency) - - [Azure Kubernetes Service AKS](#azure-kubernetes-service-aks) - - [API Gateway](#api-gateway) - - [Ingress and Routing](#ingress-and-routing) - - [Multi-Tenancy](#multi-tenancy) - - [Security](#security) - - [Google Kubernetes Engine GKE](#google-kubernetes-engine-gke) - - [Cost Optimization](#cost-optimization) - - [DNS Optimization](#dns-optimization) - - [Ingress and Routing](#ingress-and-routing-1) - - [Multi-Cluster Architectures](#multi-cluster-architectures) - - [Multi-Cluster Networking](#multi-cluster-networking) - - [Performance Scaling](#performance-scaling) - - [Security and IAM](#security-and-iam) - - [Microsoft AKS](#microsoft-aks) - - [Microservices Design](#microservices-design-1) - - [Production Architecture](#production-architecture) -1. [Container Platforms](#container-platforms) - - [Enterprise Platforms](#enterprise-platforms) - - [KubeSphere](#kubesphere) -1. [Delivery and CICD](#delivery-and-cicd) - - [Application Packaging](#application-packaging) - - [Draft and Acorn](#draft-and-acorn) - - [Continuous Deployment](#continuous-deployment) - - [Azure Pipelines](#azure-pipelines) -1. [Developer Experience](#developer-experience) - - [Inner Loop Development](#inner-loop-development) - - [Local Tooling](#local-tooling) -1. [Infrastructure](#infrastructure) - - [Ingress and Routing](#ingress-and-routing-2) - - [Application Gateway AGIC](#application-gateway-agic) - - [Dynamic DNS](#dynamic-dns) - - [ExternalDNS](#externaldns) - - [Hybrid Ingress Architecture](#hybrid-ingress-architecture) - - [TLS Ingress Controller](#tls-ingress-controller) - - [Networking and CNI](#networking-and-cni) - - [Azure CNI Cilium](#azure-cni-cilium) - - [Calico eBPF](#calico-ebpf) - - [WireGuard Encryption](#wireguard-encryption) - - [Provisioning and IaC](#provisioning-and-iac) - - [AWS CDK and Multicluster](#aws-cdk-and-multicluster) -1. [Observability](#observability) - - [Telemetry](#telemetry) - - [Azure Monitoring](#azure-monitoring) -1. [Orchestration](#orchestration) - - [Azure Compute](#azure-compute) - - [AKS and ACI](#aks-and-aci) - - [Azure Networking](#azure-networking) - - [AKS VNET Integration](#aks-vnet-integration) - - [Kubernetes](#kubernetes) - - [Managed Kubernetes Comparison](#managed-kubernetes-comparison) -1. [Platform Engineering](#platform-engineering) - - [CICD and Delivery](#cicd-and-delivery) - - [Developer Experience](#developer-experience-1) - - [GitHub Actions](#github-actions) - - [Developer Experience](#developer-experience-2) - - [Legacy Scaffolding](#legacy-scaffolding) -1. [Resilience](#resilience) - - [Chaos Engineering](#chaos-engineering) - - [Cloud Architecture](#cloud-architecture) -1. [Security and Governance](#security-and-governance) - - [Access and Identity](#access-and-identity) - - [Azure Key Vault](#azure-key-vault) - - [OAuth2 Proxy](#oauth2-proxy) - - [Microservices Security](#microservices-security) - - [Pod Security and Identities](#pod-security-and-identities) - ## Alternative Cloud ### DigitalOcean Kubernetes DOKS diff --git a/v2-docs/maven-gradle.md b/v2-docs/maven-gradle.md index df2902db..3c14c4ac 100644 --- a/v2-docs/maven-gradle.md +++ b/v2-docs/maven-gradle.md @@ -6,26 +6,6 @@ !!! info "Architectural Context" Detailed reference for Maven, Gradle and SDKMAN in the context of Developer Ecosystem. -## Table of Contents - -1. [Build Systems](#build-systems) - - [JVM Ecosystem](#jvm-ecosystem) - - [Container Packaging](#container-packaging) - - [Project Templating](#project-templating) -1. [Cloud Providers](#cloud-providers) - - [OpenShift and RedHat](#openshift-and-redhat) - - [JVM Deployment Patterns](#jvm-deployment-patterns) -1. [Cloud-Native Java](#cloud-native-java) - - [Build Tools](#build-tools) - - [Eclipse JKube](#eclipse-jkube) - - [Developer Workflow](#developer-workflow) - - [Migration](#migration) - - [Overview](#overview) - - [Quarkus Integration](#quarkus-integration) - - [Release Announcement](#release-announcement) - - [Release Notes](#release-notes) - - [Source Code](#source-code) - ## Build Systems ### JVM Ecosystem diff --git a/v2-docs/message-queue.md b/v2-docs/message-queue.md index 832ab089..8a321418 100644 --- a/v2-docs/message-queue.md +++ b/v2-docs/message-queue.md @@ -6,145 +6,6 @@ !!! info "Architectural Context" Detailed reference for Cloud Based Integration and Messaging. Data Processing and Streaming (aka Data Pipeline). Open Data Hub in the context of Data & Advanced Analytics. -## Table of Contents - -1. [Architecture](#architecture) - - [Data Mesh](#data-mesh) - - [Foundations](#foundations) - - [Hybrid Cloud](#hybrid-cloud) - - [App Modernization](#app-modernization) - - [Google Anthos](#google-anthos) - - [Infrastructure as Code](#infrastructure-as-code) - - [Event-Driven](#event-driven) - - [IoT](#iot) - - [Protocols](#protocols) - - [Microservices Patterns](#microservices-patterns) - - [Decoupling](#decoupling) - - [No-Code CDC](#no-code-cdc) - - [Schema Governance](#schema-governance) -1. [Cloud Native Serverless](#cloud-native-serverless) - - [Knative](#knative) - - [Eventing Integration](#eventing-integration) -1. [Data Engineering](#data-engineering) - - [Change Data Capture](#change-data-capture) - - [Debezium](#debezium) - - [Pipelines](#pipelines) - - [Data Pipelines](#data-pipelines) - - [OpenShift](#openshift) - - [Event Streaming](#event-streaming) - - [Apache Kafka](#apache-kafka) - - [Kubernetes Operators](#kubernetes-operators) - - [Machine Learning](#machine-learning) - - [Podcasts](#podcasts) - - [Schema Registry](#schema-registry) - - [Apicurio](#apicurio) - - [Red Hat Integration](#red-hat-integration) - - [Stream Processing](#stream-processing) - - [Quarkus](#quarkus) -1. [Enterprise Integration](#enterprise-integration) - - [Data Pipelines](#data-pipelines-1) - - [RudderStack](#rudderstack) - - [Customer Data Platform](#customer-data-platform) -1. [Event-Driven Systems](#event-driven-systems) - - [Apache Kafka](#apache-kafka-1) - - [Client Development](#client-development) - - [Kubernetes Deployment](#kubernetes-deployment) - - [Resiliency and Patterns](#resiliency-and-patterns) - - [Security](#security) - - [Case Studies](#case-studies) - - [Scale and Infrastructure](#scale-and-infrastructure) - - [Design Patterns](#design-patterns) - - [Transactional Outbox](#transactional-outbox) -1. [Infrastructure](#infrastructure) - - [Cloud Native Integration](#cloud-native-integration) - - [ActiveMQ Artemis](#activemq-artemis) - - [Networking](#networking) - - [Persistence](#persistence) - - [Enterprise Messaging](#enterprise-messaging) - - [AMQ Streams](#amq-streams) - - [ActiveMQ Artemis](#activemq-artemis-1) - - [Red Hat AMQ](#red-hat-amq) - - [Kubernetes Operators](#kubernetes-operators-1) - - [Koperator](#koperator) - - [Strimzi](#strimzi) - - [Strimzi](#strimzi-1) - - [Configuration](#configuration) - - [Introduction](#introduction) - - [Security](#security-1) - - [Sidecar Patterns](#sidecar-patterns) - - [Data Streaming](#data-streaming) - - [Architectural Patterns](#architectural-patterns) - - [Comparisons](#comparisons) - - [Integrations](#integrations) - - [MongoDB](#mongodb) - - [Performance Tuning](#performance-tuning) - - [Kafka Consumers](#kafka-consumers) - - [Kafka Producers](#kafka-producers) - - [Stream Processing](#stream-processing-1) - - [Architectural Patterns](#architectural-patterns-1) - - [ksqlDB](#ksqldb) - - [Enterprise Integration](#enterprise-integration-1) - - [Camel Quarkus](#camel-quarkus) - - [IoT and Edge Messaging](#iot-and-edge-messaging) - - [Brokers](#brokers) - - [Mosquitto](#mosquitto) - - [Protocols](#protocols-1) - - [MQTT](#mqtt) - - [Kubernetes Native](#kubernetes-native) - - [Camel K](#camel-k) - - [Kamelets](#kamelets) - - [Message Brokers](#message-brokers) - - [Docker](#docker) - - [Stream Processing](#stream-processing-2) - - [Flink](#flink) - - [Kubernetes Deployment](#kubernetes-deployment-1) - - [Stateful Computations](#stateful-computations) - - [Flink](#flink-1) -1. [Integration](#integration) - - [Data Federation](#data-federation) - - [Citizen Integration](#citizen-integration) - - [Enterprise Service Bus](#enterprise-service-bus) - - [Red Hat Fuse](#red-hat-fuse) - - [Low-Code Integration](#low-code-integration) - - [Syndesis](#syndesis) - - [Tutorials](#tutorials) -1. [Microservices](#microservices) - - [Cloud Native](#cloud-native) - - [Event-Driven Architecture](#event-driven-architecture) - - [Decomposition](#decomposition) - - [Event-Driven Architecture](#event-driven-architecture-1) - - [Distributed Transactions](#distributed-transactions) - - [Patterns](#patterns) - - [Domain-Driven Design](#domain-driven-design) - - [Patterns](#patterns-1) - - [Enterprise Integration](#enterprise-integration-2) - - [Event-Driven Architecture](#event-driven-architecture-2) - - [Event-Driven Architecture](#event-driven-architecture-3) - - [Industry Trends](#industry-trends) - - [Kafka](#kafka) - - [Inter-Service Communication](#inter-service-communication) - - [Comparison](#comparison) - - [Kubernetes](#kubernetes) - - [CloudEvents](#cloudevents) - - [Patterns](#patterns-2) - - [Event Sourcing](#event-sourcing) - - [Web Development](#web-development) - - [Event-Driven Architecture](#event-driven-architecture-4) -1. [Orchestration](#orchestration) - - [Workflow Engines](#workflow-engines) - - [Camunda](#camunda) - - [Zeebe](#zeebe) - - [Patterns](#patterns-3) - - [Event-Driven Orchestration](#event-driven-orchestration) - - [Workflows](#workflows) - - [Apache Airflow](#apache-airflow) - - [Dynamic DAGs](#dynamic-dags) - - [Kubernetes Integration](#kubernetes-integration) -1. [Software Engineering](#software-engineering) - - [Backend Development](#backend-development) - - [Java Enterprise](#java-enterprise) - - [MicroProfile](#microprofile) - ## Architecture ### Data Mesh diff --git a/v2-docs/mlops.md b/v2-docs/mlops.md index c6ce9e3c..56d299d9 100644 --- a/v2-docs/mlops.md +++ b/v2-docs/mlops.md @@ -6,71 +6,6 @@ !!! info "Architectural Context" Detailed reference for Machine Learning Ops (MLOps) and Data Science in the context of AI. -## Table of Contents - -1. [CICD](#cicd) - - [Containers](#containers) -1. [Cloud Platforms](#cloud-platforms) - - [AWS](#aws) - - [SageMaker](#sagemaker) - - [Azure](#azure) - - [Model Serving](#model-serving) - - [Flyte Managed](#flyte-managed) -1. [Data Engineering](#data-engineering) - - [Streaming](#streaming) - - [Kafka](#kafka) -1. [Deployment](#deployment) - - [Kubernetes Orchestration](#kubernetes-orchestration) -1. [Distributed Systems](#distributed-systems) - - [Compute Engines](#compute-engines) - - [Ray](#ray) -1. [Experiment Tracking](#experiment-tracking) - - [Visualization](#visualization) -1. [Generative AI](#generative-ai) - - [LLM Ops](#llm-ops) - - [AWS](#aws-1) - - [System Design](#system-design) -1. [Infrastructure](#infrastructure) - - [GPU Orchestration](#gpu-orchestration) - - [Kubernetes Operators](#kubernetes-operators) -1. [Kubernetes](#kubernetes) - - [Architectural Patterns](#architectural-patterns) - - [Artifact Registration](#artifact-registration) - - [Component Engineering](#component-engineering) - - [Deployment Guides](#deployment-guides) - - [Kubeflow](#kubeflow) -1. [Learning Roadmap](#learning-roadmap) - - [Courses](#courses) -1. [Machine Learning](#machine-learning) - - [Computer Vision](#computer-vision) - - [Instance Segmentation](#instance-segmentation) - - [Databases](#databases) - - [In-database ML](#in-database-ml) - - [Document Analysis](#document-analysis) - - [OCR](#ocr) - - [Information Retrieval](#information-retrieval) - - [RAG Pipelines](#rag-pipelines) - - [Large Language Models](#large-language-models) - - [Fine-tuning](#fine-tuning) -1. [Model Life Cycle](#model-life-cycle) - - [AWS](#aws-2) - - [Enterprise Patterns](#enterprise-patterns) -1. [Model Serving](#model-serving-1) - - [API Development](#api-development) - - [FastAPI](#fastapi) - - [Architectural Patterns](#architectural-patterns-1) - - [Infrastructure Selection](#infrastructure-selection) - - [Kubernetes](#kubernetes-1) - - [KServe](#kserve) - - [Microservices](#microservices) -1. [Orchestration](#orchestration) - - [Airflow](#airflow) - - [Flyte](#flyte) - - [Frameworks](#frameworks) - - [Workflows](#workflows) -1. [Workshops](#workshops) - - [Infrastructure](#infrastructure-1) - ## CICD ### Containers diff --git a/v2-docs/monitoring.md b/v2-docs/monitoring.md index 2a6f3d83..3e76f210 100644 --- a/v2-docs/monitoring.md +++ b/v2-docs/monitoring.md @@ -6,134 +6,6 @@ !!! info "Architectural Context" Detailed reference for Monitoring and Performance. Prometheus, Grafana, APMs and more in the context of Architectural Foundations. -## Table of Contents - -1. [Architecture](#architecture) - - [Microservices](#microservices) - - [Observability](#observability) - - [Distributed Tracing](#distributed-tracing) -1. [Cloud Application Platforms](#cloud-application-platforms) - - [Azure App Service](#azure-app-service) - - [App Service Diagnostics](#app-service-diagnostics) -1. [Cloud Edge and IoT](#cloud-edge-and-iot) - - [Healthcare IoT Integration](#healthcare-iot-integration) - - [IoT Security Pitfalls](#iot-security-pitfalls) -1. [Cloud Native](#cloud-native) - - [Observability](#observability-1) - - [APM](#apm) - - [Distributed Tracing](#distributed-tracing-1) - - [Elastic APM](#elastic-apm) - - [Elastic Stack](#elastic-stack) - - [Kubernetes Monitoring](#kubernetes-monitoring) - - [Kubernetes Operators](#kubernetes-operators) - - [Log Correlation](#log-correlation) - - [OpenTelemetry](#opentelemetry) - - [Prometheus Integration](#prometheus-integration) - - [Serverless](#serverless) - - [Synthetics](#synthetics) - - [SRE](#sre) - - [Performance Engineering](#performance-engineering) - - [Serverless](#serverless-1) - - [AWS Lambda Monitoring](#aws-lambda-monitoring) -1. [Container Orchestration](#container-orchestration) - - [Containers](#containers) - - [Observability](#observability-2) - - [Basics](#basics) - - [Kubernetes](#kubernetes) - - [Logging](#logging) - - [Docker Logs](#docker-logs) - - [Observability](#observability-3) - - [Challenges](#challenges) - - [Networking](#networking) - - [kube-proxy](#kube-proxy) - - [PLG Stack](#plg-stack) - - [Prometheus](#prometheus) - - [Configuration](#configuration) - - [Grafana](#grafana) - - [Guides](#guides) - - [Operators](#operators) - - [Sysdig](#sysdig) - - [Security](#security) - - [cAdvisor](#cadvisor) - - [OpenShift](#openshift) - - [Observability](#observability-4) - - [Prometheus](#prometheus-1) - - [Grafana](#grafana-1) -1. [DevOps](#devops) - - [Automation](#automation) - - [Monitoring as Code](#monitoring-as-code) - - [GitOps](#gitops) - - [CICD](#cicd) - - [Continuous Delivery](#continuous-delivery) - - [Infrastructure as Code](#infrastructure-as-code) - - [GitOps](#gitops-1) - - [Observability](#observability-5) - - [APIs](#apis) - - [Latency](#latency) - - [Releases](#releases) - - [Continuous Telemetry](#continuous-telemetry) - - [Code to Cloud](#code-to-cloud) -1. [Development](#development) - - [Runtime](#runtime) - - [Node.js](#nodejs) -1. [Observability](#observability-6) - - [APM](#apm-1) - - [Analysis](#analysis) - - [APM and Logging](#apm-and-logging) - - [Application Performance Monitoring](#application-performance-monitoring) - - [Dynatrace APM](#dynatrace-apm) - - [Dynatrace PoC](#dynatrace-poc) - - [Elastic APM](#elastic-apm-1) - - [Elastic APM Infrastructure](#elastic-apm-infrastructure) - - [APM and Metrics](#apm-and-metrics) - - [Observability Platform](#observability-platform) - - [Application Monitoring](#application-monitoring) - - [.NET Core](#net-core) - - [Java Diagnostics](#java-diagnostics) - - [Java Spring Boot](#java-spring-boot) - - [Distributed Tracing](#distributed-tracing-2) - - [Data Pipelines](#data-pipelines) - - [Kubernetes Testing](#kubernetes-testing) - - [Methodology](#methodology) - - [OpenTelemetry Operator](#opentelemetry-operator) - - [Research](#research) - - [Tool Comparison](#tool-comparison) - - [Zipkin](#zipkin) - - [Metrics](#metrics) - - [Prometheus Scale](#prometheus-scale) - - [OpenTelemetry](#opentelemetry-1) - - [Collector Infrastructure](#collector-infrastructure) - - [Platform Monitoring](#platform-monitoring) - - [Dynatrace Agent Deployment](#dynatrace-agent-deployment) - - [Dynatrace OpenShift](#dynatrace-openshift) - - [Dynatrace OpenShift Integration](#dynatrace-openshift-integration) - - [Kubernetes Day 2](#kubernetes-day-2) - - [Tracing](#tracing) - - [Distributed Tracing](#distributed-tracing-3) -1. [Observability and Monitoring](#observability-and-monitoring) - - [Application Performance Monitoring](#application-performance-monitoring-1) - - [APM Curated Resources](#apm-curated-resources) -1. [Performance Engineering](#performance-engineering-1) - - [Profiling](#profiling) - - [Development Workflow](#development-workflow) - - [Continuous Profiling](#continuous-profiling) -1. [Site Reliability Engineering](#site-reliability-engineering) - - [Observability](#observability-7) - - [Methodologies](#methodologies) - - [Advanced Monitoring](#advanced-monitoring) - - [Monitoring Methodologies](#monitoring-methodologies) - - [RED Method](#red-method) - - [Monitoring Theory](#monitoring-theory) - - [Distributed Systems](#distributed-systems) - - [Terminology](#terminology) - - [Monitoring vs Observability](#monitoring-vs-observability) - - [Theory](#theory) - - [APM](#apm-2) -1. [Systems Design](#systems-design) - - [Observability](#observability-8) - - [Data Pipelines](#data-pipelines-1) - - [Telemetry Routing](#telemetry-routing) - ## Architecture ### Microservices diff --git a/v2-docs/networking.md b/v2-docs/networking.md index ef843bb9..43841535 100644 --- a/v2-docs/networking.md +++ b/v2-docs/networking.md @@ -6,41 +6,6 @@ !!! info "Architectural Context" Detailed reference for Networking in the context of Networking & Service Mesh. -## Table of Contents - -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [Computer Networking and IPAM](#computer-networking-and-ipam) - - [Infrastructure Management](#infrastructure-management) - - [Automation Pipelines](#automation-pipelines) - - [IPAM and DCIM Platforms](#ipam-and-dcim-platforms) - - [Protocols](#protocols) - - [TCPIP](#tcpip) - - [Subnetting and Addressing](#subnetting-and-addressing) - - [CIDR Calculators](#cidr-calculators) - - [Cheat Sheets](#cheat-sheets) - - [Command-Line Utilities](#command-line-utilities) - - [Mathematical Underpinnings](#mathematical-underpinnings) -1. [Web Architecture](#web-architecture) - - [DNS](#dns) - - [Protocols](#protocols-1) - - [HTTP Protocols](#http-protocols) - - [Python Libraries](#python-libraries) - - [Structured Fields](#structured-fields) -1. [Web Protocols and Performance](#web-protocols-and-performance) - - [HTTP Architecture](#http-architecture) - - [Headers and Metadata](#headers-and-metadata) - - [Status Codes](#status-codes) - - [HTTP Optimization](#http-optimization) - - [Browser Performance](#browser-performance) - - [HTTP Servers](#http-servers) - - [Performance Tuning](#performance-tuning) - - [Protocol Evolution](#protocol-evolution) - - [Enterprise Servers](#enterprise-servers) - - [HTTP2](#http2) - - [HTTP3 and QUIC](#http3-and-quic) - ## Architectural Foundations ### Kubernetes Tools diff --git a/v2-docs/newsfeeds.md b/v2-docs/newsfeeds.md index 08cb66bc..d7f5ee63 100644 --- a/v2-docs/newsfeeds.md +++ b/v2-docs/newsfeeds.md @@ -6,17 +6,6 @@ !!! info "Architectural Context" Detailed reference for Forums and Communities in the context of Career & Industry. -## Table of Contents - -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [FinOps and Cloud Cost](#finops-and-cloud-cost) - - [Community Resources](#community-resources) - - [Curation](#curation) - - [Events](#events) - - [Forums](#forums) - ## Architectural Foundations ### Kubernetes Tools diff --git a/v2-docs/newsql.md b/v2-docs/newsql.md index 2ac2c9e0..539b055c 100644 --- a/v2-docs/newsql.md +++ b/v2-docs/newsql.md @@ -6,15 +6,6 @@ !!! info "Architectural Context" Detailed reference for NewSQL in the context of Data & Advanced Analytics. -## Table of Contents - -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [Storage](#storage) - - [Databases](#databases) - - [NewSQL](#newsql-1) - ## Architectural Foundations ### Kubernetes Tools diff --git a/v2-docs/noops.md b/v2-docs/noops.md index 5f774aab..cabb6a70 100644 --- a/v2-docs/noops.md +++ b/v2-docs/noops.md @@ -6,12 +6,6 @@ !!! info "Architectural Context" Detailed reference for NoOps aka Serverless in the context of The Container Stack. -## Table of Contents - -1. [DevOps](#devops) - - [Serverless Architecture](#serverless-architecture) - - [NoOps Execution](#noops-execution) - ## DevOps ### Serverless Architecture diff --git a/v2-docs/nosql.md b/v2-docs/nosql.md index 2e2b580e..9887d21e 100644 --- a/v2-docs/nosql.md +++ b/v2-docs/nosql.md @@ -6,18 +6,6 @@ !!! info "Architectural Context" Detailed reference for NoSQL Databases and NewSQL in the context of Data & Advanced Analytics. -## Table of Contents - -1. [Data Architecture](#data-architecture) - - [MongoDB Ecosystem](#mongodb-ecosystem) - - [Kubernetes Networking](#kubernetes-networking) - - [Kubernetes Operators](#kubernetes-operators) - - [NoSQL Databases](#nosql-databases) - - [Wide-Column Stores](#wide-column-stores) -1. [Observability](#observability) - - [Microservices Monitoring](#microservices-monitoring) - - [Tracing Tools](#tracing-tools) - ## Data Architecture ### MongoDB Ecosystem diff --git a/v2-docs/oauth.md b/v2-docs/oauth.md index 0b994ece..137ccbd2 100644 --- a/v2-docs/oauth.md +++ b/v2-docs/oauth.md @@ -6,15 +6,6 @@ !!! info "Architectural Context" Detailed reference for OAuth2 in the context of Hardened Infrastructure. -## Table of Contents - -1. [Security](#security) - - [IAM](#iam) - - [Protocols](#protocols) - - [Identity and Access](#identity-and-access) - - [OAuth2](#oauth2-1) - - [Spring Security](#spring-security) - ## Security ### IAM diff --git a/v2-docs/ocp3.md b/v2-docs/ocp3.md index 44856026..bba68d75 100644 --- a/v2-docs/ocp3.md +++ b/v2-docs/ocp3.md @@ -6,18 +6,6 @@ !!! info "Architectural Context" Detailed reference for OCP 3 in the context of The Container Stack. -## Table of Contents - -1. [Observability](#observability) - - [Application Monitoring](#application-monitoring) - - [Java JMX](#java-jmx) -1. [Platform Architecture](#platform-architecture) - - [High Availability](#high-availability) - - [Disaster Recovery](#disaster-recovery) -1. [Security](#security) - - [Encryption](#encryption) - - [.NET Core](#net-core) - ## Observability ### Application Monitoring diff --git a/v2-docs/ocp4.md b/v2-docs/ocp4.md index 68120b8b..8e9634da 100644 --- a/v2-docs/ocp4.md +++ b/v2-docs/ocp4.md @@ -6,75 +6,6 @@ !!! info "Architectural Context" Detailed reference for OCP 4 in the context of The Container Stack. -## Table of Contents - -1. [App Migration](#app-migration) - - [Application Modernization](#application-modernization) - - [Quarkus](#quarkus) -1. [Artifact Management](#artifact-management) - - [Container Registries](#container-registries) - - [Red Hat Quay](#red-hat-quay) -1. [Cloud Native Application](#cloud-native-application) - - [Serverless](#serverless) - - [OpenShift Serverless](#openshift-serverless) -1. [Cloud Native Infrastructure](#cloud-native-infrastructure) - - [Service Mesh](#service-mesh) - - [OpenShift](#openshift) -1. [Cluster Management](#cluster-management) - - [Scheduling and Node Assignment](#scheduling-and-node-assignment) - - [Dynamic Balancing](#dynamic-balancing) -1. [Compute and Runtime](#compute-and-runtime) - - [Serverless](#serverless-1) - - [Knative Tutorials](#knative-tutorials) -1. [Containerization](#containerization) - - [Runtimes](#runtimes) - - [Kubernetes Integration](#kubernetes-integration) -1. [Developer Experience](#developer-experience) - - [Cloud IDEs](#cloud-ides) - - [Dev Spaces](#dev-spaces) -1. [Development](#development) - - [Kubernetes Operators](#kubernetes-operators) - - [API Design](#api-design) -1. [Enterprise Kubernetes](#enterprise-kubernetes) - - [Database Orchestration](#database-orchestration) - - [Operator Integrations](#operator-integrations) - - [Developer Experience](#developer-experience-1) - - [Platform Onboarding](#platform-onboarding) - - [Hardware Architectures](#hardware-architectures) - - [Cloud Provider Integration](#cloud-provider-integration) - - [Platform Strategy](#platform-strategy) - - [Network Engineering](#network-engineering) - - [Cloud Provider Integration](#cloud-provider-integration-1) - - [Performance Tuning](#performance-tuning) - - [High Density Node Architectures](#high-density-node-architectures) - - [Platform Migrations](#platform-migrations) - - [Cluster Upgrades](#cluster-upgrades) - - [Release Diagnostics](#release-diagnostics) - - [Serverless and CICD](#serverless-and-cicd) - - [Workload Modernization](#workload-modernization) - - [Windows Container Support](#windows-container-support) -1. [Extensibility and APIs](#extensibility-and-apis) - - [Microservices](#microservices) - - [Operator Integrations](#operator-integrations-1) -1. [Infrastructure](#infrastructure) - - [Container Registry](#container-registry) - - [Self-Hosted](#self-hosted) - - [Data Protection](#data-protection) - - [Kubernetes Backup Operators](#kubernetes-backup-operators) - - [Kubernetes Distributions](#kubernetes-distributions) - - [Enterprise Distributions](#enterprise-distributions) -1. [Networking and Security](#networking-and-security) - - [Cluster Networking](#cluster-networking) - - [VPC Peering](#vpc-peering) - - [Traffic Routing](#traffic-routing) - - [Ingress Controllers](#ingress-controllers) -1. [Security](#security) - - [Container Registry](#container-registry-1) - - [Project Quay](#project-quay) -1. [Service Mesh](#service-mesh-1) - - [Red Hat OpenShift](#red-hat-openshift) - - [Enterprise Platforms](#enterprise-platforms) - ## App Migration ### Application Modernization diff --git a/v2-docs/openshift-pipelines.md b/v2-docs/openshift-pipelines.md index aa79781d..9a11b3d8 100644 --- a/v2-docs/openshift-pipelines.md +++ b/v2-docs/openshift-pipelines.md @@ -6,34 +6,6 @@ !!! info "Architectural Context" Detailed reference for OpenShift Pipelines in the context of Engineering Pipeline. -## Table of Contents - -1. [App Development](#app-development) - - [CICD](#cicd) - - [Jenkins Pipelines](#jenkins-pipelines) - - [Legacy Frameworks](#legacy-frameworks) -1. [CICD and DevOps](#cicd-and-devops) - - [Enterprise Jenkins](#enterprise-jenkins) - - [OpenShift Integration](#openshift-integration) - - [GitOps and Pipelines](#gitops-and-pipelines) - - [GitHub Actions Integration](#github-actions-integration) - - [Source-To-Image](#source-to-image) - - [OpenShift S2I Workflow](#openshift-s2i-workflow) -1. [Cloud-Native Java](#cloud-native-java) - - [Build Tools](#build-tools) - - [Eclipse JKube](#eclipse-jkube) - - [Source Code](#source-code) -1. [Developer Experience](#developer-experience) - - [Inner Loop Development](#inner-loop-development) - - [OpenShift Odo CLI](#openshift-odo-cli) -1. [Platform Architecture](#platform-architecture) - - [CICD](#cicd-1) - - [Jenkins Pipelines](#jenkins-pipelines-1) - - [Tekton Pipelines](#tekton-pipelines) -1. [Software Engineering](#software-engineering) - - [Build Systems](#build-systems) - - [Fabric8 Maven Plugin](#fabric8-maven-plugin) - ## App Development ### CICD diff --git a/v2-docs/openshift.md b/v2-docs/openshift.md index edd38f9f..7fe788c9 100644 --- a/v2-docs/openshift.md +++ b/v2-docs/openshift.md @@ -6,26 +6,6 @@ !!! info "Architectural Context" Detailed reference for OpenShift Container Platform in the context of The Container Stack. -## Table of Contents - -1. [CI-CD](#ci-cd) - - [GitLab](#gitlab) - - [OpenShift](#openshift) -1. [Databases](#databases) - - [Relational](#relational) - - [MariaDB](#mariadb) -1. [Kubernetes and OpenShift](#kubernetes-and-openshift) - - [Networking](#networking) - - [Multi-Cluster](#multi-cluster) - - [Security](#security) - - [Ingress](#ingress) -1. [Platform Engineering](#platform-engineering) - - [Architectural Insights](#architectural-insights) - - [Personal Blog](#personal-blog) -1. [Software Engineering](#software-engineering) - - [Collaboration](#collaboration) - - [Rocket.Chat](#rocketchat) - ## CI-CD ### GitLab diff --git a/v2-docs/oraclecloud.md b/v2-docs/oraclecloud.md index f19b1770..ffbcfd40 100644 --- a/v2-docs/oraclecloud.md +++ b/v2-docs/oraclecloud.md @@ -6,12 +6,6 @@ !!! info "Architectural Context" Detailed reference for Oracle Cloud Infrastructure (OCI) in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Databases](#databases) - - [APIs](#apis) - - [Best Practices](#best-practices) - ## Databases ### APIs diff --git a/v2-docs/other-awesome-lists.md b/v2-docs/other-awesome-lists.md index 0d33ca81..1043f066 100644 --- a/v2-docs/other-awesome-lists.md +++ b/v2-docs/other-awesome-lists.md @@ -6,79 +6,6 @@ !!! info "Architectural Context" Detailed reference for Awesome Lists in the context of Architectural Foundations. -## Table of Contents - -1. [AI and Machine Learning](#ai-and-machine-learning) - - [MLOps](#mlops) - - [Resources](#resources) -1. [API Development](#api-development) - - [API Gateway](#api-gateway) - - [Resources](#resources-1) - - [API Management](#api-management) - - [Resources](#resources-2) -1. [Artificial Intelligence](#artificial-intelligence) - - [MLOps](#mlops-1) - - [Kubernetes Machine Learning](#kubernetes-machine-learning) -1. [Cloud Native](#cloud-native) - - [GitOps](#gitops) - - [Argo Project Ecosystem](#argo-project-ecosystem) - - [Continuous Delivery Operators](#continuous-delivery-operators) - - [Infrastructure Automation](#infrastructure-automation) - - [Kubernetes Ecosystem](#kubernetes-ecosystem) - - [Cloud Native Architectures](#cloud-native-architectures) - - [Observability](#observability) - - [Telemetry and Metrics](#telemetry-and-metrics) - - [Security](#security) - - [Container Hardening](#container-hardening) - - [DevSecOps Integration](#devsecops-integration) - - [DevSecOps Tools](#devsecops-tools) - - [Runtime Threat Detection](#runtime-threat-detection) - - [Serverless Architecture](#serverless-architecture) - - [AWS Lambda Design](#aws-lambda-design) -1. [Continuous Delivery](#continuous-delivery) - - [CI-CD Pipelines](#ci-cd-pipelines) - - [Multi-Cloud Continuous Delivery](#multi-cloud-continuous-delivery) -1. [Curation](#curation) - - [Awesome Lists](#awesome-lists-1) - - [Cloud Native](#cloud-native-1) - - [Operators](#operators) - - [Scalability](#scalability) -1. [Deployment and Delivery](#deployment-and-delivery) - - [CICD and Delivery](#cicd-and-delivery) - - [Resource Portals](#resource-portals) -1. [DevOps and Platform Engineering](#devops-and-platform-engineering) - - [Interview Preparation](#interview-preparation) - - [Reference Guides](#reference-guides) -1. [Infrastructure](#infrastructure) - - [Docker Compose](#docker-compose) - - [Reference Architectures](#reference-architectures) -1. [Infrastructure and Operations](#infrastructure-and-operations) - - [Containerization](#containerization) - - [Container Internals](#container-internals) - - [DevOps and SRE Engineering](#devops-and-sre-engineering) - - [Best Practices](#best-practices) - - [Infrastructure as Code](#infrastructure-as-code) - - [Enterprise Documentation](#enterprise-documentation) - - [Site Reliability Engineering](#site-reliability-engineering) - - [Incident Management Tools](#incident-management-tools) - - [SLOs and SLIs](#slos-and-slis) -1. [Observability and Monitoring](#observability-and-monitoring) - - [Application Performance Monitoring](#application-performance-monitoring) - - [APM Curated Resources](#apm-curated-resources) -1. [Programming Languages](#programming-languages) - - [C](#c) - - [.NET Core](#net-core) - - [Go](#go) - - [Resources](#resources-3) - - [Java](#java) - - [Resources](#resources-4) -1. [Software Engineering](#software-engineering) - - [Open Source Software](#open-source-software) - - [SaaS Alternatives](#saas-alternatives) - - [Software Architecture](#software-architecture) - - [Design Patterns](#design-patterns) - - [Microservices Design](#microservices-design) - ## AI and Machine Learning ### MLOps diff --git a/v2-docs/performance-testing-with-jenkins-and-jmeter.md b/v2-docs/performance-testing-with-jenkins-and-jmeter.md index 1362854b..17ba1c1d 100644 --- a/v2-docs/performance-testing-with-jenkins-and-jmeter.md +++ b/v2-docs/performance-testing-with-jenkins-and-jmeter.md @@ -6,22 +6,6 @@ !!! info "Architectural Context" Detailed reference for Performance testing with jenkins and JMeter or Gatling in the context of Platform & Site Reliability. -## Table of Contents - -1. [Cloud Native](#cloud-native) - - [Kubernetes](#kubernetes) - - [Progressive Delivery](#progressive-delivery) -1. [Infrastructure](#infrastructure) - - [Testing](#testing) - - [Load Testing](#load-testing) -1. [Performance Engineering](#performance-engineering) - - [Load Testing](#load-testing-1) - - [Kubernetes Deployment](#kubernetes-deployment) - - [Observability](#observability) -1. [Testing](#testing-1) - - [Performance Testing](#performance-testing) - - [Service Level Objectives](#service-level-objectives) - ## Cloud Native ### Kubernetes diff --git a/v2-docs/postman.md b/v2-docs/postman.md index a672faaa..f89fdaa3 100644 --- a/v2-docs/postman.md +++ b/v2-docs/postman.md @@ -6,30 +6,6 @@ !!! info "Architectural Context" Detailed reference for Test Automation with Postman. API Testing in the context of Developer Ecosystem. -## Table of Contents - -1. [API Development](#api-development) - - [Testing and Debugging](#testing-and-debugging) - - [Postman Proxy](#postman-proxy) -1. [Architecture](#architecture) - - [Microservices](#microservices) - - [Internal Developer Platforms](#internal-developer-platforms) -1. [Software Architecture](#software-architecture) - - [Business Rules](#business-rules) - - [Containerization](#containerization) - - [Decision Engines](#decision-engines) -1. [Software Testing](#software-testing) - - [API Security](#api-security) - - [Postman Integrations](#postman-integrations) - - [API Testing](#api-testing) - - [CI-CD](#ci-cd) - - [CLI Tools](#cli-tools) - - [Java Frameworks](#java-frameworks) - - [Open Source](#open-source) - - [Productivity](#productivity) - - [Performance Testing](#performance-testing) - - [API Testing](#api-testing-1) - ## API Development ### Testing and Debugging diff --git a/v2-docs/private-cloud-solutions.md b/v2-docs/private-cloud-solutions.md index 8f42dcaa..db7bfb45 100644 --- a/v2-docs/private-cloud-solutions.md +++ b/v2-docs/private-cloud-solutions.md @@ -6,12 +6,6 @@ !!! info "Architectural Context" Detailed reference for Private Cloud Solutions in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Infrastructure](#infrastructure) - - [Cloud Market](#cloud-market) - - [OpenStack](#openstack) - ## Infrastructure ### Cloud Market diff --git a/v2-docs/project-management-methodology.md b/v2-docs/project-management-methodology.md index 84bc1efd..593f6757 100644 --- a/v2-docs/project-management-methodology.md +++ b/v2-docs/project-management-methodology.md @@ -6,23 +6,6 @@ !!! info "Architectural Context" Detailed reference for Project Management in the context of Platform & Site Reliability. -## Table of Contents - -1. [Engineering Leadership](#engineering-leadership) - - [Product Management](#product-management) - - [Software Architecture Design](#software-architecture-design) - - [Project Management](#project-management-1) - - [Big Tech Practices](#big-tech-practices) -1. [Platform Engineering](#platform-engineering) - - [GitOps](#gitops) - - [Helm Lifecycle Management](#helm-lifecycle-management) - - [Innersource](#innersource) - - [DevOps Transition](#devops-transition) - - [Organizational Scaling](#organizational-scaling) - - [DevOps Transition](#devops-transition-1) - - [Value Stream Management](#value-stream-management) - - [DevOps Metrics](#devops-metrics) - ## Engineering Leadership ### Product Management diff --git a/v2-docs/project-management-tools.md b/v2-docs/project-management-tools.md index 6bf8b9ee..9520298b 100644 --- a/v2-docs/project-management-tools.md +++ b/v2-docs/project-management-tools.md @@ -6,12 +6,6 @@ !!! info "Architectural Context" Detailed reference for Project Management Tools in the context of Platform & Site Reliability. -## Table of Contents - -1. [Developer Productivity](#developer-productivity) - - [Collaboration](#collaboration) - - [Micro-frontends](#micro-frontends) - ## Developer Productivity ### Collaboration diff --git a/v2-docs/prometheus.md b/v2-docs/prometheus.md index 0ea2524a..d4240d78 100644 --- a/v2-docs/prometheus.md +++ b/v2-docs/prometheus.md @@ -6,33 +6,6 @@ !!! info "Architectural Context" Detailed reference for Prometheus in the context of Architectural Foundations. -## Table of Contents - -1. [Cloud Native Infrastructure](#cloud-native-infrastructure) - - [Observability](#observability) - - [Prometheus](#prometheus-1) - - [AWS Integration](#aws-integration) - - [Client Libraries](#client-libraries) - - [Pushgateway](#pushgateway) - - [Query Tools](#query-tools) -1. [Cloud Native Platforms](#cloud-native-platforms) - - [Azure](#azure) - - [Azure Monitor Integration](#azure-monitor-integration) - - [Kubernetes](#kubernetes) - - [Multi-Arch Telemetry](#multi-arch-telemetry) -1. [Observability](#observability-1) - - [Distributed Storage](#distributed-storage) - - [Cortex Engine](#cortex-engine) - - [InfluxDB](#influxdb) - - [M3 Engine](#m3-engine) - - [Thanos Engine](#thanos-engine) - - [Monitoring](#monitoring) - - [Prometheus Meta-Monitoring](#prometheus-meta-monitoring) - - [OpenTelemetry](#opentelemetry) - - [Collector Infrastructure](#collector-infrastructure) - - [Prometheus](#prometheus-2) - - [Core Platform](#core-platform) - ## Cloud Native Infrastructure ### Observability diff --git a/v2-docs/public-cloud-solutions.md b/v2-docs/public-cloud-solutions.md index 51d0f45b..ba78c127 100644 --- a/v2-docs/public-cloud-solutions.md +++ b/v2-docs/public-cloud-solutions.md @@ -6,27 +6,6 @@ !!! info "Architectural Context" Detailed reference for Public Cloud Solutions in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Cloud Providers](#cloud-providers) - - [Alternative Clouds](#alternative-clouds) - - [Kubernetes DOKS](#kubernetes-doks) -1. [Cloud Strategy](#cloud-strategy) - - [Kubernetes Management](#kubernetes-management) - - [Evaluation Framework](#evaluation-framework) -1. [Kubernetes Management](#kubernetes-management-1) - - [Managed Kubernetes](#managed-kubernetes) - - [AWS EKS Costs](#aws-eks-costs) - - [Azure AKS Costs](#azure-aks-costs) - - [Google GKE Costs](#google-gke-costs) - - [Multi-Cloud Operations](#multi-cloud-operations) - - [Rackspace Managed K8s](#rackspace-managed-k8s) - - [Red Hat OpenShift](#red-hat-openshift) - - [Azure Integration](#azure-integration) - - [Enterprise Costs](#enterprise-costs) - - [VMware Tanzu](#vmware-tanzu) - - [Platform Operations](#platform-operations) - ## Cloud Providers ### Alternative Clouds diff --git a/v2-docs/pulumi.md b/v2-docs/pulumi.md index 3f8d3a3e..7415b3ce 100644 --- a/v2-docs/pulumi.md +++ b/v2-docs/pulumi.md @@ -6,12 +6,6 @@ !!! info "Architectural Context" Detailed reference for Pulumi - Modern Infrastructure as Code in the context of Hardened Infrastructure. -## Table of Contents - -1. [Cloud-Native Provisioning](#cloud-native-provisioning) - - [Serverless Containers](#serverless-containers) - - [AWS Fargate](#aws-fargate) - ## Cloud-Native Provisioning ### Serverless Containers diff --git a/v2-docs/python.md b/v2-docs/python.md index bc8c0f31..4afeb655 100644 --- a/v2-docs/python.md +++ b/v2-docs/python.md @@ -6,89 +6,6 @@ !!! info "Architectural Context" Detailed reference for Python in the context of Developer Ecosystem. -## Table of Contents - -1. [Artificial Intelligence](#artificial-intelligence) - - [Generative AI](#generative-ai) - - [Data Analysis Automation](#data-analysis-automation) -1. [Backend Development](#backend-development) - - [Concurrent Programming](#concurrent-programming) - - [System Engineering](#system-engineering) -1. [Cloud Native Infrastructure](#cloud-native-infrastructure) - - [Container Orchestration](#container-orchestration) - - [Python Client](#python-client) -1. [Data Engineering](#data-engineering) - - [Python Search Engine](#python-search-engine) - - [Elasticsearch](#elasticsearch) -1. [Data Science](#data-science) - - [Data Engineering](#data-engineering-1) - - [Database Engines](#database-engines) - - [Workflow Orchestration](#workflow-orchestration) -1. [DevOps](#devops) - - [Python Cloud](#python-cloud) - - [Configuration Management](#configuration-management) - - [Kubernetes](#kubernetes) - - [Security](#security) - - [Python Packaging](#python-packaging) - - [Docker Integration](#docker-integration) -1. [Infrastructure](#infrastructure) - - [AWS SDK](#aws-sdk) - - [Boto3 Tutorials](#boto3-tutorials) - - [Cloud Storage](#cloud-storage) - - [Object Storage Optimization](#object-storage-optimization) - - [Data Engineering](#data-engineering-2) - - [MLOps Architecture](#mlops-architecture) - - [DevOps](#devops-1) - - [Cloud Automation](#cloud-automation) - - [Infrastructure as Code](#infrastructure-as-code) - - [Kubernetes](#kubernetes-1) - - [Data Science Platform](#data-science-platform) -1. [Infrastructure and DevOps](#infrastructure-and-devops) - - [Container Orchestration](#container-orchestration-1) - - [Microservices Communication](#microservices-communication) - - [Scalability](#scalability) - - [Dependency Management](#dependency-management) - - [AI-Driven Operations](#ai-driven-operations) - - [Systems Architecture](#systems-architecture) - - [Microservices](#microservices) -1. [Platform Engineering](#platform-engineering) - - [Containerization and Orchestration](#containerization-and-orchestration) - - [Docker](#docker) -1. [Software Development](#software-development) - - [Python Microservices](#python-microservices) - - [gRPC](#grpc) - - [Python Observability](#python-observability) - - [Logging](#logging) - - [Python Utilities](#python-utilities) - - [Script Automation](#script-automation) - - [Python Web](#python-web) - - [API Frameworks](#api-frameworks) -1. [Software Engineering](#software-engineering) - - [Business Applications](#business-applications) - - [Automated Billing](#automated-billing) - - [CI-CD](#ci-cd) - - [Code Quality](#code-quality) - - [Data Validation](#data-validation) - - [Parsing](#parsing) - - [Microservices](#microservices-1) - - [Feature Management](#feature-management) - - [Python](#python-1) - - [Memory Profiling](#memory-profiling) - - [Production Observability](#production-observability) - - [Serialization](#serialization) - - [Static Analysis](#static-analysis) - - [Systems Architecture](#systems-architecture-1) - - [Microservices Migration](#microservices-migration) - - [Testing](#testing) - - [API Testing](#api-testing) - - [Test Data Generation](#test-data-generation) - - [Web Frameworks](#web-frameworks) - - [Asynchronous Frameworks](#asynchronous-frameworks) - - [Comprehensive Tutorials](#comprehensive-tutorials) - - [Containerization](#containerization) - - [Microframeworks](#microframeworks) - - [Project Templates](#project-templates) - ## Artificial Intelligence ### Generative AI diff --git a/v2-docs/qa.md b/v2-docs/qa.md index dd452ea5..fac3ddf5 100644 --- a/v2-docs/qa.md +++ b/v2-docs/qa.md @@ -6,26 +6,6 @@ !!! info "Architectural Context" Detailed reference for QA/TestOps - Continuous Testing. Software Quality Test Automation in the context of Platform & Site Reliability. -## Table of Contents - -1. [Cloud Native](#cloud-native) - - [Microservices Architecture](#microservices-architecture) - - [Component Testing](#component-testing) - - [Quality Management](#quality-management) - - [Multi-Cloud Strategies](#multi-cloud-strategies) - - [Performance Engineering](#performance-engineering) -1. [Software Engineering](#software-engineering) - - [Architecture](#architecture) - - [Error Handling Paradigms](#error-handling-paradigms) - - [Backend Development](#backend-development) - - [Python Testing Workflows](#python-testing-workflows) - - [Testing](#testing) - - [API Testing Principles](#api-testing-principles) - - [Testing Frameworks](#testing-frameworks) - - [Java Ecosystem](#java-ecosystem) - - [Testing Methodology](#testing-methodology) - - [Component Isolation](#component-isolation) - ## Cloud Native ### Microservices Architecture diff --git a/v2-docs/rancher.md b/v2-docs/rancher.md index b421e642..6d0c02af 100644 --- a/v2-docs/rancher.md +++ b/v2-docs/rancher.md @@ -6,35 +6,6 @@ !!! info "Architectural Context" Detailed reference for SUSE Rancher in the context of The Container Stack. -## Table of Contents - -1. [Cloud Native](#cloud-native) - - [Kubernetes](#kubernetes) - - [Rancher Management](#rancher-management) -1. [Edge and IoT](#edge-and-iot) - - [Architecture Patterns](#architecture-patterns) - - [Edge Data Store](#edge-data-store) - - [Bare Metal](#bare-metal) - - [Home Lab](#home-lab) - - [CICD Integration](#cicd-integration) - - [GitLab Runners](#gitlab-runners) - - [Local Development](#local-development) - - [Traefik Ingress](#traefik-ingress) - - [Security](#security) - - [Runtime Auditing](#runtime-auditing) -1. [Enterprise Infrastructure](#enterprise-infrastructure) - - [GitOps](#gitops) - - [Fleet Management](#fleet-management) -1. [Introductory](#introductory) - - [Concepts](#concepts) - - [Core Resources](#core-resources) -1. [Kubernetes Management](#kubernetes-management) - - [Multi-Tenancy](#multi-tenancy) - - [Projects](#projects) -1. [Platform Engineering](#platform-engineering) - - [Hyperconverged Infrastructure](#hyperconverged-infrastructure) - - [Harvester HCI](#harvester-hci) - ## Cloud Native ### Kubernetes diff --git a/v2-docs/react.md b/v2-docs/react.md index 1a9ad653..b48ac6a1 100644 --- a/v2-docs/react.md +++ b/v2-docs/react.md @@ -6,15 +6,6 @@ !!! info "Architectural Context" Detailed reference for React in the context of Developer Ecosystem. -## Table of Contents - -1. [Frontend Development](#frontend-development) - - [React Framework](#react-framework) - - [State Management](#state-management) -1. [Software Engineering](#software-engineering) - - [Frontend Development](#frontend-development-1) - - [React Ecosystem](#react-ecosystem) - ## Frontend Development ### React Framework diff --git a/v2-docs/recruitment.md b/v2-docs/recruitment.md index c4841f09..b7448352 100644 --- a/v2-docs/recruitment.md +++ b/v2-docs/recruitment.md @@ -6,106 +6,6 @@ !!! info "Architectural Context" Detailed reference for Recruitment. Hiring and Freelancing in the context of Career & Industry. -## Table of Contents - -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [DevOps Culture](#devops-culture) - - [Workforce Strategy](#workforce-strategy) - - [IT Outsourcing](#it-outsourcing) - - [Remote Culture](#remote-culture) - - [Talent Retention](#talent-retention) -1. [Developer Platform](#developer-platform) - - [Automation](#automation) - - [Git Manipulation](#git-manipulation) -1. [Engineering Leadership](#engineering-leadership) - - [Remote Work](#remote-work) - - [Team Management](#team-management) -1. [Industry Analysis](#industry-analysis) - - [Automation Impact](#automation-impact) - - [Sociotechnical Systems](#sociotechnical-systems) - - [Corporate Engineering Culture](#corporate-engineering-culture) - - [Personal Perspective](#personal-perspective) - - [Developer Dynamics](#developer-dynamics) - - [Market Shifts](#market-shifts) - - [Labor Trends](#labor-trends) - - [Market Contraction](#market-contraction) - - [Talent Mobility](#talent-mobility) - - [The Great Resignation](#the-great-resignation) - - [Regional Markets](#regional-markets) - - [European Tech Ecosystem](#european-tech-ecosystem) - - [Spain Tech Ecosystem](#spain-tech-ecosystem) - - [Vertical Industries](#vertical-industries) - - [Healthcare IT](#healthcare-it) -1. [Organizational Architecture](#organizational-architecture) - - [Corporate Culture](#corporate-culture) - - [Nepotism](#nepotism) - - [Risk Management](#risk-management) - - [Engineering Management](#engineering-management) - - [Ethical Leadership](#ethical-leadership) - - [Job Design](#job-design) - - [Leadership Pitfalls](#leadership-pitfalls) - - [Leadership Strategy](#leadership-strategy) - - [Team Autonomy](#team-autonomy) - - [Hiring and Culture](#hiring-and-culture) - - [Diversity and Inclusion](#diversity-and-inclusion) - - [Interview Integrity](#interview-integrity) - - [Labor Trends](#labor-trends-1) - - [Generational Dynamics](#generational-dynamics) - - [Remote Work](#remote-work-1) - - [Future of Work](#future-of-work) - - [Industry Reports](#industry-reports) -1. [Professional Development](#professional-development) - - [Career Architecture](#career-architecture) - - [Longevity](#longevity) - - [Career Transitions](#career-transitions) - - [Entry-level Strategy](#entry-level-strategy) - - [Job Search Strategy](#job-search-strategy) - - [Market Dynamics](#market-dynamics) - - [Strategic Planning](#strategic-planning) - - [Transferable Skills](#transferable-skills) - - [Continuous Learning](#continuous-learning) - - [Certifications](#certifications) - - [Developer Wellness](#developer-wellness) - - [Burnout Prevention](#burnout-prevention) - - [Career Decisions](#career-decisions) - - [Financial Architecture](#financial-architecture) - - [Purpose Alignment](#purpose-alignment) - - [Engineering Management](#engineering-management-1) - - [Upward Management](#upward-management) - - [Interview Engineering](#interview-engineering) - - [Industry Criticism](#industry-criticism) - - [Reverse Interviewing](#reverse-interviewing) - - [Risk Mitigation](#risk-mitigation) -1. [Professional Practice](#professional-practice) - - [Career Paths](#career-paths) - - [Data and AI](#data-and-ai) - - [Public Sector](#public-sector) - - [Retention](#retention) - - [Soft Skills](#soft-skills) - - [Compensation](#compensation) - - [Contract Analysis](#contract-analysis) - - [Remote Work](#remote-work-2) - - [Education](#education) - - [Alternative Pathways](#alternative-pathways) - - [Leadership](#leadership) - - [Team Culture](#team-culture) - - [Recruiting](#recruiting) - - [CV Construction](#cv-construction) - - [Ethics](#ethics) - - [Hiring Standards](#hiring-standards) - - [Job Portals](#job-portals) - - [Resource Guides](#resource-guides) - - [SaaS Systems](#saas-systems) - - [Security](#security) - - [Developer Wellness](#developer-wellness-1) - - [Team Culture](#team-culture-1) - - [Employee Engagement](#employee-engagement) -1. [Security](#security-1) - - [Container Security](#container-security) - - [DevSecOps](#devsecops) - ## Architectural Foundations ### Kubernetes Tools diff --git a/v2-docs/registries.md b/v2-docs/registries.md index 2a094965..c72356f3 100644 --- a/v2-docs/registries.md +++ b/v2-docs/registries.md @@ -6,12 +6,6 @@ !!! info "Architectural Context" Detailed reference for Docker Registries. Quay, Nexus, JFrog Artifactory, Harbor and more in the context of Engineering Pipeline. -## Table of Contents - -1. [Orchestration and Packaging](#orchestration-and-packaging) - - [Helm and GitOps](#helm-and-gitops) - - [Artifactory](#artifactory) - ## Orchestration and Packaging ### Helm and GitOps diff --git a/v2-docs/remote-tech-jobs.md b/v2-docs/remote-tech-jobs.md index 5c60d21c..34b84eaf 100644 --- a/v2-docs/remote-tech-jobs.md +++ b/v2-docs/remote-tech-jobs.md @@ -6,23 +6,6 @@ !!! info "Architectural Context" Detailed reference for Remote Tech Jobs in the context of Career & Industry. -## Table of Contents - -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [Career Development](#career-development) - - [Market Trends](#market-trends) - - [Salary Analytics](#salary-analytics) -1. [Organizational Culture](#organizational-culture) - - [Remote Work](#remote-work) - - [Career Strategy](#career-strategy) - - [Company Culture](#company-culture) - - [Compliance and Tax](#compliance-and-tax) - - [Job Portals](#job-portals) - - [Mental Well-being](#mental-well-being) - - [Societal Shift](#societal-shift) - ## Architectural Foundations ### Kubernetes Tools diff --git a/v2-docs/scaffolding.md b/v2-docs/scaffolding.md index 041b9c00..28861351 100644 --- a/v2-docs/scaffolding.md +++ b/v2-docs/scaffolding.md @@ -6,14 +6,6 @@ !!! info "Architectural Context" Detailed reference for Scaffolding Tools in the context of Platform & Site Reliability. -## Table of Contents - -1. [Software Engineering](#software-engineering) - - [Application Scaffolding](#application-scaffolding) - - [Boilerplate Tools](#boilerplate-tools) - - [Build Systems](#build-systems) - - [Java Ecosystem](#java-ecosystem) - ## Software Engineering ### Application Scaffolding diff --git a/v2-docs/scaleway.md b/v2-docs/scaleway.md index 5da90272..f37e4f97 100644 --- a/v2-docs/scaleway.md +++ b/v2-docs/scaleway.md @@ -6,15 +6,6 @@ !!! info "Architectural Context" Detailed reference for Scaleway Public Cloud in the context of Cloud Providers (Hyperscalers). -## Table of Contents - -1. [Cloud Native](#cloud-native) - - [Managed Kubernetes](#managed-kubernetes) - - [Scaleway Kapsule](#scaleway-kapsule) -1. [Cloud Native Architecture](#cloud-native-architecture) - - [SaaS Architecture Patterns](#saas-architecture-patterns) - - [Tenant Isolation](#tenant-isolation) - ## Cloud Native ### Managed Kubernetes diff --git a/v2-docs/securityascode.md b/v2-docs/securityascode.md index b670a8f2..659d4df8 100644 --- a/v2-docs/securityascode.md +++ b/v2-docs/securityascode.md @@ -6,16 +6,6 @@ !!! info "Architectural Context" Detailed reference for Security Policy as Code in the context of Hardened Infrastructure. -## Table of Contents - -1. [Security](#security) - - [IAM](#iam) - - [Protocols](#protocols) - - [Identity and Access](#identity-and-access) - - [Spring Security](#spring-security) - - [Policy Enforcement](#policy-enforcement) - - [Admission Control](#admission-control) - ## Security ### IAM diff --git a/v2-docs/serverless.md b/v2-docs/serverless.md index 5281bf3f..c87ac2e2 100644 --- a/v2-docs/serverless.md +++ b/v2-docs/serverless.md @@ -6,68 +6,6 @@ !!! info "Architectural Context" Detailed reference for Serverless Architectures and Frameworks in the context of The Container Stack. -## Table of Contents - -1. [Architecture Decisions](#architecture-decisions) - - [Comparisons](#comparisons) - - [Containers vs Serverless](#containers-vs-serverless) - - [Kubernetes vs Serverless](#kubernetes-vs-serverless) - - [Microservices vs Serverless](#microservices-vs-serverless) -1. [Cloud Architecture](#cloud-architecture) - - [AWS Solutions](#aws-solutions) - - [Orchestration Decision](#orchestration-decision) - - [Comparative Systems](#comparative-systems) - - [Industry Trends](#industry-trends) - - [Microservices Strategy](#microservices-strategy) - - [Scalability](#scalability) - - [Serverless](#serverless) - - [Event-Driven Systems](#event-driven-systems) - - [Migration Patterns](#migration-patterns) - - [Operational Cost](#operational-cost) -1. [Cloud Infrastructure and Orchestration](#cloud-infrastructure-and-orchestration) - - [Serverless Architecture](#serverless-architecture) - - [Case Studies](#case-studies) -1. [Cloud Native](#cloud-native) - - [FaaS Basics](#faas-basics) - - [Definitions](#definitions) - - [Kubernetes Serverless](#kubernetes-serverless) - - [Apache OpenWhisk](#apache-openwhisk) - - [Framework Comparisons](#framework-comparisons) - - [Knative](#knative) - - [Knative and API Gateways](#knative-and-api-gateways) - - [OpenFaaS](#openfaas) - - [OpenFunction](#openfunction) - - [Microservice Runtimes](#microservice-runtimes) - - [Dapr](#dapr) - - [Serverless](#serverless-1) - - [Advanced Best Practices](#advanced-best-practices) - - [CI-CD](#ci-cd) - - [Case Studies](#case-studies-1) - - [Design Patterns](#design-patterns) - - [Scaling Paradigms](#scaling-paradigms) - - [Serverless Platforms](#serverless-platforms) - - [Azure Functions](#azure-functions) - - [Frameworks](#frameworks) -1. [Cloud-Native](#cloud-native) - - [Application Runtime](#application-runtime) - - [Dapr](#dapr-1) - - [Dapr Deployment](#dapr-deployment) - - [Orchestration and Workflow](#orchestration-and-workflow) - - [Dapr Workflows](#dapr-workflows) - - [Serverless](#serverless-2) - - [AWS Integration](#aws-integration) - - [Event-Driven](#event-driven) -1. [Enterprise Kubernetes](#enterprise-kubernetes) - - [OpenShift](#openshift) - - [OpenShift Serverless](#openshift-serverless) - - [OpenShift Serverless Integration](#openshift-serverless-integration) - - [Serverless Workflows](#serverless-workflows) -1. [Event Driven Architecture](#event-driven-architecture) - - [Design Patterns](#design-patterns-1) - - [Enterprise Integration Patterns](#enterprise-integration-patterns) - - [Fundamentals](#fundamentals) - - [Concepts](#concepts) - ## Architecture Decisions ### Comparisons diff --git a/v2-docs/servicemesh.md b/v2-docs/servicemesh.md index 4bd50d82..0b4df4b1 100644 --- a/v2-docs/servicemesh.md +++ b/v2-docs/servicemesh.md @@ -6,89 +6,6 @@ !!! info "Architectural Context" Detailed reference for Service Mesh in the context of Networking & Service Mesh. -## Table of Contents - -1. [Architecture](#architecture) - - [System Design](#system-design) - - [Microservices Patterns](#microservices-patterns) -1. [Cloud Infrastructure](#cloud-infrastructure) - - [Traffic Management](#traffic-management) - - [Load Balancing](#load-balancing) -1. [Cloud Native](#cloud-native) - - [Service Mesh](#service-mesh-1) - - [Istio](#istio) -1. [Cloud Native Infrastructure](#cloud-native-infrastructure) - - [API Management](#api-management) - - [Service Mesh Comparison](#service-mesh-comparison) - - [Service Mesh Integration](#service-mesh-integration) - - [Data Plane](#data-plane) - - [Proxy](#proxy) - - [Orchestration](#orchestration) - - [Service Mesh Architecture](#service-mesh-architecture) - - [Service Mesh](#service-mesh-2) - - [Adoption Patterns](#adoption-patterns) - - [Concepts](#concepts) - - [Consul](#consul) - - [Design Patterns](#design-patterns) - - [Decision Matrix](#decision-matrix) - - [Evaluation](#evaluation) - - [History](#history) - - [Landscape](#landscape) - - [Legacy Tooling](#legacy-tooling) - - [Linkerd](#linkerd) - - [GitOps](#gitops) - - [High Availability](#high-availability) - - [History](#history-1) - - [Milestones](#milestones) - - [Multi-Cluster](#multi-cluster) - - [Multi-Region](#multi-region) - - [Releases](#releases) - - [Security](#security) - - [Managed Services](#managed-services) - - [Google Cloud](#google-cloud) - - [History](#history-2) - - [Integration](#integration) - - [gRPC](#grpc) - - [Market Trends](#market-trends) - - [Observability](#observability) - - [Operations](#operations) - - [Performance](#performance) - - [Production Operations](#production-operations) - - [Security](#security-1) - - [AuthN and AuthZ](#authn-and-authz) - - [Best Practices](#best-practices) - - [mTLS](#mtls) - - [Testing](#testing) - - [Tooling](#tooling) - - [Meshery](#meshery) - - [eBPF](#ebpf) - - [Future Trends](#future-trends) -1. [Cloud Native Networking](#cloud-native-networking) - - [Control Plane](#control-plane) - - [Service Mesh Architecture](#service-mesh-architecture-1) - - [Data Plane](#data-plane-1) - - [APIs and Protocols](#apis-and-protocols) - - [Load Balancing Algorithms](#load-balancing-algorithms) - - [Service Mesh](#service-mesh-3) - - [Open Service Mesh](#open-service-mesh) - - [Service Proxy](#service-proxy) - - [Integration Tools](#integration-tools) -1. [Infrastructure](#infrastructure) - - [Service Mesh](#service-mesh-4) - - [Architecture Guides](#architecture-guides) - - [Kubernetes Networking](#kubernetes-networking) - - [Red Hat Ecosystem](#red-hat-ecosystem) - - [Security](#security-2) - - [System Design](#system-design-1) -1. [Networking](#networking) - - [Ingress and Gateway](#ingress-and-gateway) - - [Controllers](#controllers) - - [Gateway API](#gateway-api) - - [Traefik](#traefik) -1. [Serverless and Ingress](#serverless-and-ingress) - - [Knative](#knative) - - [Ingress Controllers](#ingress-controllers) - ## Architecture ### System Design diff --git a/v2-docs/sonarqube.md b/v2-docs/sonarqube.md index 583b27c4..7f942838 100644 --- a/v2-docs/sonarqube.md +++ b/v2-docs/sonarqube.md @@ -6,15 +6,6 @@ !!! info "Architectural Context" Detailed reference for Sonarqube in the context of Engineering Pipeline. -## Table of Contents - -1. [Continuous Integration](#continuous-integration) - - [CICD Pipelines](#cicd-pipelines) - - [Jenkins Integration](#jenkins-integration) - - [Code Quality](#code-quality) - - [Kubernetes Deployment](#kubernetes-deployment) - - [Static Analysis Platforms](#static-analysis-platforms) - ## Continuous Integration ### CICD Pipelines diff --git a/v2-docs/sre.md b/v2-docs/sre.md index a302aa20..f0d7ec28 100644 --- a/v2-docs/sre.md +++ b/v2-docs/sre.md @@ -6,42 +6,6 @@ !!! info "Architectural Context" Detailed reference for Site Reliability Engineering (SRE) in the context of Platform & Site Reliability. -## Table of Contents - -1. [Continuous Delivery](#continuous-delivery) - - [Feature Management](#feature-management) - - [Reliability Engineering](#reliability-engineering) - - [SLO Validation](#slo-validation) - - [REST APIs](#rest-apis) -1. [Observability](#observability) - - [Monitoring](#monitoring) - - [SRE Fundamentals](#sre-fundamentals) - - [Service Level Objectives](#service-level-objectives) - - [Community Events](#community-events) - - [Declarative Standards](#declarative-standards) - - [GitOps](#gitops) - - [Google Best Practices](#google-best-practices) - - [Site Reliability Engineering](#site-reliability-engineering) - - [Root Cause Analysis](#root-cause-analysis) -1. [Operations](#operations) - - [Platform Engineering](#platform-engineering) - - [Organizational Design](#organizational-design) - - [Strategic Alignment](#strategic-alignment) - - [SRE vs DevOps](#sre-vs-devops) - - [Tooling](#tooling) - - [Site Reliability Engineering](#site-reliability-engineering-1) - - [Best Practices](#best-practices) - - [Cloud Native Ecosystem](#cloud-native-ecosystem) - - [Enterprise Architecture](#enterprise-architecture) - - [Google Best Practices](#google-best-practices-1) - - [Google SRE Book](#google-sre-book) - - [Incident Management](#incident-management) - - [Podcasts](#podcasts) - - [Tooling](#tooling-1) -1. [Software Engineering](#software-engineering) - - [Professional Development](#professional-development) - - [Core Architectures](#core-architectures) - ## Continuous Delivery ### Feature Management diff --git a/v2-docs/stackstorm.md b/v2-docs/stackstorm.md index fc741a99..62412ab7 100644 --- a/v2-docs/stackstorm.md +++ b/v2-docs/stackstorm.md @@ -6,12 +6,6 @@ !!! info "Architectural Context" Detailed reference for StackStorm in the context of Architectural Foundations. -## Table of Contents - -1. [DevOps](#devops) - - [Event-Driven Automation](#event-driven-automation) - - [StackStorm](#stackstorm-1) - ## DevOps ### Event-Driven Automation diff --git a/v2-docs/swagger-code-generator-for-rest-apis.md b/v2-docs/swagger-code-generator-for-rest-apis.md index 1175e738..00ef8502 100644 --- a/v2-docs/swagger-code-generator-for-rest-apis.md +++ b/v2-docs/swagger-code-generator-for-rest-apis.md @@ -6,24 +6,6 @@ !!! info "Architectural Context" Detailed reference for Swagger code generator for REST APIs in the context of Developer Ecosystem. -## Table of Contents - -1. [API Development](#api-development) - - [API Design](#api-design) - - [Tutorial](#tutorial) - - [API Design Collaboration](#api-design-collaboration) - - [SwaggerHub](#swaggerhub) - - [API Specification](#api-specification) - - [Swagger](#swagger) - - [Kubernetes Administration](#kubernetes-administration) - - [Swagger UI](#swagger-ui) -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [Automation and Orchestration](#automation-and-orchestration) - - [API Orchestration](#api-orchestration) - - [Swagger Codegen](#swagger-codegen) - ## API Development ### API Design diff --git a/v2-docs/tekton.md b/v2-docs/tekton.md index 16475405..ed38a93e 100644 --- a/v2-docs/tekton.md +++ b/v2-docs/tekton.md @@ -6,23 +6,6 @@ !!! info "Architectural Context" Detailed reference for Tekton and Tekton Pipelines in the context of Engineering Pipeline. -## Table of Contents - -1. [Cloud Native Delivery](#cloud-native-delivery) - - [Progressive Delivery](#progressive-delivery) - - [Serverless Canary](#serverless-canary) -1. [Continuous Integration and Delivery](#continuous-integration-and-delivery) - - [Cloud Native CI-CD](#cloud-native-ci-cd) - - [Custom Extensions](#custom-extensions) - - [Demonstrations and Demos](#demonstrations-and-demos) - - [Governance and Community](#governance-and-community) - - [Hybrid Integration](#hybrid-integration) - - [OpenShift Pipelines](#openshift-pipelines) - - [Release Analysis](#release-analysis) - - [Tekton Pipelines](#tekton-pipelines) - - [Tekton Platform](#tekton-platform) - - [Tekton UI Extensions](#tekton-ui-extensions) - ## Cloud Native Delivery ### Progressive Delivery diff --git a/v2-docs/terraform.md b/v2-docs/terraform.md index da263736..72b90184 100644 --- a/v2-docs/terraform.md +++ b/v2-docs/terraform.md @@ -6,83 +6,6 @@ !!! info "Architectural Context" Detailed reference for Hashicorp Terraform and Packer. Kubernetes Boilerplates in the context of Hardened Infrastructure. -## Table of Contents - -1. [AWS](#aws) - - [Container Registry](#container-registry) - - [Monitoring](#monitoring) - - [EKS](#eks) - - [Networking](#networking) - - [Security](#security) -1. [Azure](#azure) - - [AKS](#aks) - - [Artificial Intelligence](#artificial-intelligence) - - [App Service](#app-service) - - [Security](#security-1) - - [Serverless](#serverless) - - [Function App](#function-app) -1. [Cloud Infrastructure](#cloud-infrastructure) - - [AWS](#aws-1) - - [Compute and Serverless](#compute-and-serverless) - - [EKS and Container Orchestration](#eks-and-container-orchestration) - - [Platform Engineering](#platform-engineering) - - [Application Operations](#application-operations) -1. [Cloud Native](#cloud-native) - - [Kubernetes](#kubernetes) - - [AWS EKS](#aws-eks) - - [Anti-Patterns](#anti-patterns) - - [Application Delivery](#application-delivery) - - [Cluster Provisioning](#cluster-provisioning) - - [Cost Management](#cost-management) - - [Federated Architectures](#federated-architectures) - - [Kubernetes Operators](#kubernetes-operators) - - [Official Integration](#official-integration) -1. [Container Orchestration](#container-orchestration) - - [Kubernetes](#kubernetes-1) - - [Bare Metal and Cloud Hosting](#bare-metal-and-cloud-hosting) - - [Edge Computing](#edge-computing) -1. [Infrastructure as Code](#infrastructure-as-code) - - [AWS](#aws-2) - - [Arch Study](#arch-study) - - [Legacy Tooling](#legacy-tooling) - - [Ansible](#ansible) - - [Image Provisioning](#image-provisioning) - - [Best Practices](#best-practices) - - [Case Studies](#case-studies) - - [Curation](#curation) - - [Cloud Posse Modules](#cloud-posse-modules) - - [Enterprise Platforms](#enterprise-platforms) - - [Catalogs and Blueprints](#catalogs-and-blueprints) - - [GitOps](#gitops) - - [Push-Based Workflows](#push-based-workflows) - - [Kubernetes Integration](#kubernetes-integration) - - [GitOps and Provisioning](#gitops-and-provisioning) - - [Kubernetes Provisioning](#kubernetes-provisioning) - - [GitOps Frameworks](#gitops-frameworks) - - [Multi-Tooling](#multi-tooling) - - [Azure Integration](#azure-integration) - - [Serverless Integration](#serverless-integration) - - [Hybrid Automation](#hybrid-automation) - - [Terraform](#terraform) - - [AWS Integration](#aws-integration) -1. [Orchestration](#orchestration) - - [AKS](#aks-1) - - [CI-CD Pipelines](#ci-cd-pipelines) - - [Masterclass](#masterclass) -1. [Platform Engineering](#platform-engineering-1) - - [AKS](#aks-2) - - [Reference Architecture](#reference-architecture) -1. [Security](#security-2) - - [Secrets Management](#secrets-management) - - [GitOps Encrypted Secrets](#gitops-encrypted-secrets) -1. [Serverless](#serverless-1) - - [AWS](#aws-3) - - [IaC](#iac) -1. [Serverless Architecture](#serverless-architecture) - - [AWS Lambda](#aws-lambda) - - [API Gateway](#api-gateway) - - [Infrastructure as Code](#infrastructure-as-code-1) - ## AWS ### Container Registry diff --git a/v2-docs/test-automation-frameworks.md b/v2-docs/test-automation-frameworks.md index 37d189c3..215d1d61 100644 --- a/v2-docs/test-automation-frameworks.md +++ b/v2-docs/test-automation-frameworks.md @@ -6,21 +6,6 @@ !!! info "Architectural Context" Detailed reference for Test Automation Frameworks and Behavior Driven Development. Selenium, Cypress, Cucumber, Appium and more in the context of Platform & Site Reliability. -## Table of Contents - -1. [Cloud Operations](#cloud-operations) - - [Infrastructure Validation](#infrastructure-validation) - - [OpenStack Testing](#openstack-testing) -1. [Quality Assurance and Testing](#quality-assurance-and-testing) - - [Containerization](#containerization) - - [Docker and Selenium](#docker-and-selenium) - - [Orchestration](#orchestration) - - [Kubernetes Grid Deployment](#kubernetes-grid-deployment) - - [Test Automation](#test-automation) - - [Containerized Testing](#containerized-testing) - - [Distributed Testing](#distributed-testing) - - [Test Observability](#test-observability) - ## Cloud Operations ### Infrastructure Validation diff --git a/v2-docs/testops.md b/v2-docs/testops.md index 6bdd98c2..93adb641 100644 --- a/v2-docs/testops.md +++ b/v2-docs/testops.md @@ -6,19 +6,6 @@ !!! info "Architectural Context" Detailed reference for TestOps and Continuous Testing in the context of Platform & Site Reliability. -## Table of Contents - -1. [DevOps and Quality Assurance](#devops-and-quality-assurance) - - [Continuous Testing](#continuous-testing) - - [Microservices Testing](#microservices-testing) -1. [Development Methodology](#development-methodology) - - [DevOps](#devops) - - [Testing Strategy](#testing-strategy) - - [Validation](#validation) -1. [Development Tools](#development-tools) - - [Testing Tools](#testing-tools) - - [API Mocking](#api-mocking) - ## DevOps and Quality Assurance ### Continuous Testing diff --git a/v2-docs/visual-studio.md b/v2-docs/visual-studio.md index 72b65516..d312dfe1 100644 --- a/v2-docs/visual-studio.md +++ b/v2-docs/visual-studio.md @@ -6,52 +6,6 @@ !!! info "Architectural Context" Detailed reference for Visual Studio Code in the context of Developer Ecosystem. -## Table of Contents - -1. [Cloud Infrastructure](#cloud-infrastructure) - - [PaaS](#paas) - - [Azure](#azure) - - [SecOps](#secops) - - [Security Code Scanning](#security-code-scanning) -1. [Cloud Native](#cloud-native) - - [Containerization](#containerization) - - [VS Code Tooling](#vs-code-tooling) - - [Kubernetes](#kubernetes) - - [Configuration Validation](#configuration-validation) - - [GitOps](#gitops) - - [Local Clusters](#local-clusters) - - [Red Hat OpenShift](#red-hat-openshift) - - [VS Code Tooling](#vs-code-tooling-1) -1. [Cloud Native Languages](#cloud-native-languages) - - [Go](#go) - - [Kubernetes Integration](#kubernetes-integration) -1. [Cloud-Native Development](#cloud-native-development) - - [Kubernetes](#kubernetes-1) - - [Local Development](#local-development) - - [Remote Debugging](#remote-debugging) - - [Traffic Mirroring](#traffic-mirroring) -1. [Developer Productivity](#developer-productivity) - - [Short Videos](#short-videos) - - [API Testing](#api-testing) - - [Java Development](#java-development) -1. [Development Environments](#development-environments) - - [Cloud IDEs](#cloud-ides) - - [CDE](#cde) - - [Online Sandboxes](#online-sandboxes) -1. [Development Tools](#development-tools) - - [VS Code](#vs-code) - - [Architecture Visualization](#architecture-visualization) - - [Docker Deployment](#docker-deployment) - - [Serverless Debugging](#serverless-debugging) -1. [Software Engineering](#software-engineering) - - [API Testing](#api-testing-1) - - [VS Code Tooling](#vs-code-tooling-2) - - [Databases](#databases) - - [NoSQL](#nosql) - - [ORM and Tools](#orm-and-tools) - - [Python](#python) - - [Static Analysis](#static-analysis) - ## Cloud Infrastructure ### PaaS diff --git a/v2-docs/web-servers.md b/v2-docs/web-servers.md index 5db2aa64..bb88f467 100644 --- a/v2-docs/web-servers.md +++ b/v2-docs/web-servers.md @@ -6,22 +6,6 @@ !!! info "Architectural Context" Detailed reference for Web Servers and Reverse Proxies: Apache, Nginx, HAProxy, Traefik and more in the context of Networking & Service Mesh. -## Table of Contents - -1. [Infrastructure](#infrastructure) - - [Web Servers](#web-servers) - - [App Servers](#app-servers) -1. [Infrastructure Security](#infrastructure-security) - - [Inbound Traffic Management](#inbound-traffic-management) - - [Traefik](#traefik) -1. [Networking](#networking) - - [Multi-Cluster](#multi-cluster) - - [DNS](#dns) -1. [Traffic Management](#traffic-management) - - [Kubernetes Ingress Controllers](#kubernetes-ingress-controllers) - - [Alternative Ingress](#alternative-ingress) - - [Traefik Ingress](#traefik-ingress) - ## Infrastructure ### Web Servers diff --git a/v2-docs/web3.md b/v2-docs/web3.md index 8b9d7f8a..cd70702d 100644 --- a/v2-docs/web3.md +++ b/v2-docs/web3.md @@ -6,18 +6,6 @@ !!! info "Architectural Context" Detailed reference for Web 3 in the context of Developer Ecosystem. -## Table of Contents - -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [Emerging Paradigms](#emerging-paradigms) - - [Web3 Architecture](#web3-architecture) - - [Decentralized Systems](#decentralized-systems) - - [Introduction](#introduction) - - [System Comparison](#system-comparison) - - [Vision and Philosophy](#vision-and-philosophy) - ## Architectural Foundations ### Kubernetes Tools diff --git a/v2-docs/workfromhome.md b/v2-docs/workfromhome.md index 3db57706..852f92c5 100644 --- a/v2-docs/workfromhome.md +++ b/v2-docs/workfromhome.md @@ -6,30 +6,6 @@ !!! info "Architectural Context" Detailed reference for Work From Home in the context of Career & Industry. -## Table of Contents - -1. [Collaboration Tools](#collaboration-tools) - - [Document Management](#document-management) - - [External Links](#external-links) -1. [DevOps](#devops) - - [Culture](#culture) - - [Distributed Teams](#distributed-teams) -1. [Development](#development) - - [Testing and QA](#testing-and-qa) - - [API Automation](#api-automation) -1. [Modern Workforce](#modern-workforce) - - [Personal Productivity](#personal-productivity) - - [Knowledge Management](#knowledge-management) - - [Reliability Engineering](#reliability-engineering) - - [Team Operations](#team-operations) - - [Remote Work](#remote-work) - - [Agile Methodologies](#agile-methodologies) - - [Collaboration](#collaboration) - - [Legal and Compliance](#legal-and-compliance) - - [Productivity Tools](#productivity-tools) - - [Open Source](#open-source) - - [Team Operations](#team-operations-1) - ## Collaboration Tools ### Document Management diff --git a/v2-docs/xamarin.md b/v2-docs/xamarin.md index eaa547e2..e9715ce2 100644 --- a/v2-docs/xamarin.md +++ b/v2-docs/xamarin.md @@ -6,15 +6,6 @@ !!! info "Architectural Context" Detailed reference for Xamarin in the context of Developer Ecosystem. -## Table of Contents - -1. [Architectural Foundations](#architectural-foundations) - - [Kubernetes Tools](#kubernetes-tools) - - [General Reference](#general-reference) -1. [Mobile Development](#mobile-development) - - [Cross-Platform](#cross-platform) - - [Xamarin](#xamarin-1) - ## Architectural Foundations ### Kubernetes Tools diff --git a/v2-docs/yaml.md b/v2-docs/yaml.md index d72f0ca3..7e87dacf 100644 --- a/v2-docs/yaml.md +++ b/v2-docs/yaml.md @@ -6,21 +6,6 @@ !!! info "Architectural Context" Detailed reference for YAML and JSON. Templating YAML with YAML Processors. Static Checking of Kubernetes YAML Files in the context of Data & Advanced Analytics. -## Table of Contents - -1. [Cloud Native Operations](#cloud-native-operations) - - [Kubernetes](#kubernetes) - - [Advanced Templating](#advanced-templating) - - [CLI Operations](#cli-operations) - - [Configuration Management](#configuration-management) - - [Validation](#validation) -1. [Data Architecture](#data-architecture) - - [JSON and YAML Serialization](#json-and-yaml-serialization) - - [Data Modeling](#data-modeling) -1. [Platform Engineering](#platform-engineering) - - [Kubernetes Manifests](#kubernetes-manifests) - - [Alternative Manifest Engines](#alternative-manifest-engines) - ## Cloud Native Operations ### Kubernetes diff --git a/v2-mkdocs.yml b/v2-mkdocs.yml index 444365ff..d264b467 100644 --- a/v2-mkdocs.yml +++ b/v2-mkdocs.yml @@ -49,7 +49,10 @@ theme: - content.action.edit - content.tooltips - navigation.prune - - toc.integrate + # toc.integrate removed: show the native sticky "On this page" TOC in the + # right sidebar instead of merging headings into the left nav. This replaces + # the per-page Markdown "## Table of Contents" we no longer render. + - toc.follow plugins: - search @@ -102,7 +105,7 @@ extra_css: - static/v2_elite.css?v=2.9.7 extra_javascript: - - static/v2_filter.js + - static/v2_filter.js?v=2.9.12 markdown_extensions: - admonition