Compare commits

...
30 Commits
Author SHA1 Message Date
Nubenetes Bot 29abd31e56 release: v2.9.6 — deterministic inventory dump (last_checked INTEGER) 2026-06-19 15:38:46 +02:00
Inaki fe08a271f4 Merge pull request #382 from nubenetes/fix/deterministic-dump-code
fix: deterministic inventory dump — last_checked as INTEGER
2026-06-19 15:38:19 +02:00
Nubenetes BotandClaude Opus 4.8 1fe0509433 fix: deterministic inventory dump — last_checked as INTEGER
last_checked stored epoch seconds as REAL; SQLite's version-specific
REAL->text float printing rewrote ~every row on dump, so a locally
regenerated inventory.sql diverged from CI's. Normalize last_checked to
int on the entry before both the SQL record and the YAML dump, and make
the column INTEGER. All readers do coarse day-level staleness checks, so
sub-second precision is unused.

Verified: load->save idempotent for inventory.sql AND inventory.yaml, and
local (SQLite 3.40.1) output byte-identical to CI-equivalent python:3.11
(SQLite 3.46.1). The deterministic data regenerates on the next pipeline
save; committing only the code avoids conflicting with pipeline data churn.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-19 15:37:51 +02:00
Inaki d9ed471d16 Merge pull request #380 from nubenetes/develop
🚀 Release: Agentic V2 Portal Update
2026-06-19 15:32:13 +02:00
Nubenetes Bot 6bed317cdc feat: sync V2 elite curated edition and README metrics [skip ci] 2026-06-19 13:30:54 +00:00
Nubenetes Bot a0927d47f7 Merge remote-tracking branch 'origin/develop' into develop 2026-06-19 15:24:51 +02:00
Nubenetes Bot 543e3c4d82 merge: back-merge v2.9.5 into develop 2026-06-19 15:24:49 +02:00
Nubenetes Bot 6a4a1278df docs: automated README metric synchronization [skip ci] 2026-06-19 13:24:47 +00:00
Nubenetes Bot a6b0b19fbd release: v2.9.5 — fix runaway YouTube mosaic breaking V1/V2 index pages 2026-06-19 15:24:33 +02:00
Inaki 59d6234792 Merge pull request #379 from nubenetes/fix/mosaic-runaway-index
fix: stop YouTube mosaic from rendering the entire inventory (index outage)
2026-06-19 15:24:22 +02:00
Nubenetes BotandClaude Opus 4.8 e95cd9dc56 fix: stop YouTube mosaic from rendering the entire inventory (index outage)
load_inventory_channels() selected entries via 'youtube_mosaic' in entry
(key presence). save_inventory() always writes a youtube_mosaic column
that the SQL round-trip materializes as an empty dict {} on EVERY entry,
so the filter matched all 18,647 inventory entries and emitted ~18.6k
inline <img> links on a single line. That produced a 4MB v2-docs/index.md
(and 2.9MB docs/index.md), hanging both V1 and V2 index pages in the
browser. A prior revert masked it; the next SQL-backed sync re-broke it.

Fix: only treat an entry as a mosaic channel when youtube_mosaic is a
non-empty dict with a logo image (136 curated channels). Regenerated both
index files via reorganize_mosaic — docs/index.md is now byte-identical
to the last known-good state (52KB); v2-docs/index.md back to 41KB.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-19 15:24:00 +02:00
Nubenetes Bot 68078fa253 Merge remote-tracking branch 'origin/develop' into develop 2026-06-19 15:10:58 +02:00
Nubenetes Bot 79e0fc7f53 merge: back-merge v2.9.4 into develop 2026-06-19 15:10:56 +02:00
Nubenetes Bot 5ade4daaec docs: automated README metric synchronization [skip ci] 2026-06-19 13:10:50 +00:00
Nubenetes Bot 421765d66f release: v2.9.4 — normalize gh_pushed to None at enrichment source 2026-06-19 15:10:39 +02:00
Inaki 4eb8e1c21c Merge pull request #378 from nubenetes/fix/normalize-gh-pushed-source
fix: store gh_pushed as None instead of 'N/A' at enrichment source
2026-06-19 15:10:28 +02:00
Nubenetes BotandClaude Opus 4.8 9d13a6a21a fix: store gh_pushed as None instead of 'N/A' at enrichment source
The date field gh_pushed was written as the literal string 'N/A' when
GitHub data was unavailable (fast_enrich, gemini_utils). That non-date
string then reached datetime.fromisoformat() downstream. Now writes None
(which all readers already handle); gh_license keeps its 'N/A' string
sentinel since it is a displayed value, not a date.

Also hardens the twin fromisoformat() call in agentic_curator's MVQ
penalty check (guards N/A/None and wraps parsing) so a bad value can't
crash a curation batch.

Adds scripts/normalize_gh_pushed.py to clean the 281 existing inventory
entries (run in CI to avoid SQLite float-serialization churn — see
script docstring).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-19 15:10:06 +02:00
Nubenetes Bot 5de57738cb Merge remote-tracking branch 'origin/develop' into develop 2026-06-19 15:04:36 +02:00
Nubenetes Bot c90d45cb4b merge: back-merge v2.9.3 into develop 2026-06-19 15:04:34 +02:00
Nubenetes Bot 325eb8a83a docs: automated README metric synchronization [skip ci] 2026-06-19 13:04:18 +00:00
Nubenetes Bot 361f34a74a release: v2.9.3 — harden Platinum audit against null/N-A inventory fields 2026-06-19 15:04:08 +02:00
Inaki 89016b7e64 Merge pull request #377 from nubenetes/fix/safety-audit-null-handling
fix: harden Platinum audit against null/N-A inventory fields
2026-06-19 15:03:54 +02:00
Nubenetes BotandClaude Opus 4.8 4212b1f5ae fix: harden Platinum audit against null/N-A inventory fields
The V2 safety audit emitted hundreds of WARN lines and then aborted
entirely with 'NoneType object has no attribute lower':

- validate_mvq_compliance: gh_pushed of 'N/A' (and historic None/empty)
  was passed to datetime.fromisoformat() -> 'Invalid isoformat string';
  and gh_stars/stars stored as null hit 'None * int'. Now skips entries
  with no usable push date and coalesces None before the star math.
- validate_linguistic_tagging: a null 'language' field caused
  None.lower(), which aborted the whole report. Now coalesces to English.
- generate_audit_report: each mandate now runs in isolation so a single
  bad entry can no longer kill the entire audit; failures are logged.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-19 15:03:33 +02:00
Inaki 8cd85a35e8 Merge pull request #376 from nubenetes/develop
🚀 Release: Agentic V2 Portal Update
2026-06-19 15:02:07 +02:00
Nubenetes Bot f85439c757 feat: sync V2 elite curated edition and README metrics [skip ci] 2026-06-19 12:59:44 +00:00
Inaki 0d10c89a0f Merge pull request #375 from nubenetes/docs/bump-claudemd-version
docs: bump CLAUDE.md current version to v2.9.2
2026-06-19 14:42:59 +02:00
Nubenetes BotandClaude Opus 4.8 919ecd9dfd docs: bump CLAUDE.md current version to v2.9.2
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-19 14:42:49 +02:00
Nubenetes Bot 882baa7917 Merge remote-tracking branch 'origin/develop' into develop 2026-06-19 14:41:35 +02:00
Nubenetes Bot 1def1edd28 merge: back-merge v2.9.2 into develop 2026-06-19 14:35:02 +02:00
Nubenetes Bot 1fe5356c7c docs: automated README metric synchronization [skip ci] 2026-06-19 12:33:15 +00:00
16 changed files with 6892 additions and 6476 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ This repository uses **Gitflow**. All agents MUST follow this branching model:
10. Create GitHub Release: `gh release create vX.Y.Z --title "..." --notes "..."`
### Versioning
- Current: `v2.6.0`
- Current: `v2.9.2`
- Format: `v{major}.{minor}.{patch}`
- Major: breaking changes or architectural shifts
- Minor: new features (like the digest engine, new modules)
+5 -5
View File
@@ -142,7 +142,7 @@ Additionally, as of May 2026, Nubenetes has reached the **Platinum Operational T
| :--- | :--- |
| **Total Technical Resources (Links)** | **18647+** |
| **Specialized MD Pages** | **162** |
| **Total Commits** | **6114+** |
| **Total Commits** | **6146+** |
| **Primary AI Engine** | **Google Gemini (Agentic)** |
<!-- HEART_STATS_END -->
@@ -180,7 +180,7 @@ The growth of Nubenetes reflects the acceleration of the Cloud Native ecosystem.
| 6 | 2023 | 30 | 123 | Maintenance & Refinement |
| 7 | 2024 | 53 | 218 | Curation Strategy Pivot |
| 8 | 2025 | 5 | 20 | Stability & Research Phase |
| 9 | 2026 | 2555 | 10,552 | **Agentic AI Surge** (May 2026 Inception) |
| 9 | 2026 | 2587 | 10,684 | **Agentic AI Surge** (May 2026 Inception) |
<!-- ANNUAL_GROWTH_END -->
<!-- ANNUAL_CHART_START -->
@@ -196,8 +196,8 @@ xychart-beta
title "Nubenetes Annual Growth Metrics (20182026)"
x-axis ["2018", "2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026"]
y-axis "Volume (Commits / Estimated New Refs)" 0 --> 11000
bar [1445, 586, 8449, 2193, 1660, 123, 218, 20, 10552]
bar [350, 142, 2046, 531, 402, 30, 53, 5, 2555]
bar [1445, 586, 8449, 2193, 1660, 123, 218, 20, 10684]
bar [350, 142, 2046, 531, 402, 30, 53, 5, 2587]
```
<!-- ANNUAL_CHART_END -->
@@ -207,7 +207,7 @@ xychart-beta
| :--- | :---: | :---: | :--- |
| 2026-04 | 25 | 103 | Active Curation |
| 2026-05 | 2101 | 8,677 | **Agentic Inception (Gemini Era)** |
| 2026-06 | 429 | 1,771 | Active Curation |
| 2026-06 | 461 | 1,903 | Active Curation |
<!-- MONTHLY_SURGE_END -->
### 2.4. Content Distribution and Semantic Clustering
+401 -401
View File
@@ -5638,7 +5638,7 @@ INSERT INTO "resources" VALUES('https://github.com/Juniper/contrail-docker/wiki/
INSERT INTO "resources" VALUES('https://github.com/K8Studio/K8studio','k8studio.github.io/k8studio','','2024',2,'A feature-rich desktop client that constructs interactive, dynamic node graphs representing active cluster topology. Helps cluster administrators visualize resource footprints, namespace boundaries, and connectivity routes visually.','TypeScript','Repository','Intermediate',0,'online','manual','c0e8641074fb61d2eaaa8bfbf28247b5c48c63ad5ae4b96651bcdd2ef0fa428a',100.0,1.77903264045236897e+09,1,'2026-06-09T19:43:36Z',NULL,NULL,NULL,'["Platform Engineering", "UI & Dashboards", "Visual Ide"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-based-devel.md"]','["kubernetes-based-devel.md"]','{}','{"gh_stars": 53, "gh_pushed": "2026-06-09T19:43:36Z", "gh_license": "N/A", "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T13:34:25.212037+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/KWasm/podman-wasm','github.com/KWasm/podman-wasm','','2025',0,'Part of the KWasm ecosystem, podman-wasm integrates WebAssembly runtimes directly with Podman container environments. It enables the seamless execution of highly isolated Wasm workloads alongside native Linux containers, signaling the paradigm of lightweight, secure serverless execution.','Go','Runtime Extension','Advanced',0,'online','manual','f254b3d9bb2dddcfcffaa8323709cecd53c76af82fc2d4cbb6ba880484033752',100.0,1.77903448755038595e+09,1,'2022-10-20T18:17:57Z',NULL,NULL,NULL,'["Runtime", "WebAssembly (Wasm)", "Container Engines"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2022-10-20T18:17:57Z", "gh_stars": 30, "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T13:34:25.951382+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/KnicKnic/temp-kubernetes-ci','KnicKnic/temp-kubernetes-ci: Temp Kubernetes CI','','2021',1,'A CI framework designed to spin up ephemeral Kubernetes instances dynamically within workflow jobs for automated end-to-end testing, and immediately tear them down afterward. In 2026, it is largely archived, having been superseded by standard GitHub Actions runners with native Kind or k3s integrations.','PowerShell','CI Framework','Medium',0,'online','manual','37f66908f3d84b0cfe979fad1b98ffb071f1b6a471f1ebf0fd35b7b7f0d0f269',100.0,1.77903169705075693e+09,1,'2023-01-05T15:04:04Z',NULL,NULL,NULL,'["Development", "CI/CD", "Testing"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-01-05T15:04:04Z", "gh_stars": 15, "gh_open_issues_30d": 6, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T13:34:26.683353+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Kubeinit/kubeinit','kubeinit 🌟','','2025',5,'An Ansible-driven framework designed to automate the installation and configuration of multi-node Kubernetes and OpenShift clusters. Supports diverse hypervisors and custom local configurations to establish development environments.','Python','Installer','Advanced',0,'online','manual','30030a2ad117765656888aa3efc1f8a879dd1cab246b8bed321c75e6869c73f3',100.0,1.77903142308528399e+09,1,'2025-12-05T21:26:59Z',NULL,NULL,NULL,'["Platform Engineering", "Installation", "Automation"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-12-05T21:26:59Z", "gh_stars": 222, "gh_open_issues_30d": 5, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T13:34:27.427414+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Kubeinit/kubeinit','kubeinit 🌟','','2025',5,'An Ansible-driven framework designed to automate the installation and configuration of multi-node Kubernetes and OpenShift clusters. Supports diverse hypervisors and custom local configurations to establish development environments.','Python','Installer','Advanced',0,'duplicate','manual','30030a2ad117765656888aa3efc1f8a879dd1cab246b8bed321c75e6869c73f3',100.0,1.77903142308528399e+09,1,'2025-12-05T21:26:59Z',NULL,NULL,NULL,'["Platform Engineering", "Installation", "Automation"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-12-05T21:26:59Z", "gh_stars": 222, "gh_open_issues_30d": 5, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T13:34:27.427414+02:00", "duplicate_of": "https://github.com/kubeinit/kubeinit"}');
INSERT INTO "resources" VALUES('https://github.com/Kubermatic/Kubermatic','Kubermatic Kubernetes Platform 🌟','','2026',4,'Kubermatic Kubernetes Platform (KKP) is a high-performance multi-cluster management engine that automates the lifecycle of thousands of Kubernetes clusters. By running control planes as containers within a master cluster (Kubernetes-in-Kubernetes), KKP drastically reduces resource overhead and simplifies multi-cloud operations. It is widely adopted by European enterprises prioritizing sovereign, multi-tenant infrastructure.','Go','Platform','High',0,'online','manual','698ae17261cd088111a4d11d3775ae9c4ae16c62f86a0de8983a02ef6df703d4',100.0,1.77902956162196588e+09,1,'2026-06-12T17:52:28Z',NULL,NULL,NULL,'["Cluster Management", "Multi-Cluster Orchestration", "Enterprise Control Plane"]','["[ENTERPRISE-STABLE]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-12T17:52:28Z", "gh_stars": 1281, "gh_open_issues_30d": 462, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T13:34:28.174254+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/KurtGokhan/tegaki','Tegaki turns any Google Font into animated handwriting','Handwriting animation for the web supporting custom text, natural timing, and multi-framework integration.','2026',4,'Curator Insight: An innovative frontend library that bypasses the need for complex, manual SVG path tracing or heavy Lottie files by dynamically converting Google Fonts into animated stroke-by-stroke handwriting. Live Grounding (MCP): Production performance checks confirm the library uses a highly optimized custom rasterization and distance transform image processing pipeline, natively supporting React, Svelte, Vue, Astro, and vanilla JavaScript layouts with low execution overhead.','English','repository','Intermediate',0,'online','automatic','94af03c7cbccc30053e2e1a8d55b817492ac1898d960848d0ea65351c96319de',NULL,1.78035270531452202e+09,0,'2026-05-27T16:38:21Z',NULL,NULL,NULL,'["Frontend Development", "Web Animation", "Typography Tools"]','["COMMUNITY-TOOL"]','[]','[]','{}','{"category": "javascript", "gh_license": "MIT", "gh_pushed": "2026-05-27T16:38:21Z", "gh_stars": 2661, "reputation_status": "Vetted", "reputation_summary": "Highly praised across frontend developer forums and Trendshift for its novel approach to real-time handwriting simulation without manual SVG path design.", "social_preview_url": "https://repository-images.githubusercontent.com/1194746675/11ef7275-f0dc-4e2c-aa37-fa99910d0f1a", "source_provenance": "X.com (midudev)", "suggested_new_category": "", "gh_open_issues_30d": 6, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T13:34:28.922363+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/KusionStack/kusion','github.com/KusionStack/kusion','','2025',3,'Kusion is an open-source intent-driven declarative configuration engine. Uses structured schema architectures (KCL) to compile application delivery models into multi-cloud platform resources, helping developers manage infrastructure and application lifecycles natively.','Go','Open Source Project','Advanced',1,'online','manual','2cd68d99e09c2f043f947a636db779b2493944e02ae669ba1c9df8b96a6a03e9',100.0,1.7790300353523581e+09,1,'2026-01-04T06:01:34Z',NULL,NULL,NULL,'["Platform Engineering", "Declarative Configuration", "KusionStack"]','["[COMMUNITY-TOOL]"]','["docs/devops.md"]','["devops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-01-04T06:01:34Z", "gh_stars": 1310, "gh_open_issues_30d": 54, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T13:34:29.665510+02:00"}');
@@ -5664,425 +5664,425 @@ INSERT INTO "resources" VALUES('https://github.com/MichaelMure/git-bug','==githu
INSERT INTO "resources" VALUES('https://github.com/Michaelpalacce/SimpleSecrets','Michaelpalacce/SimpleSecrets','','2022',0,'An experimental secrets management utility that simplifies distributing and syncing environment configurations securely across multiple namespaces.','Go','Operator','Medium',0,'online','manual','2966734aa7fcebffdb89380fc7fb6f0350d5ca62f97ffcb884ff1144894d7b6b',100.0,1.77902951423824405e+09,1,'2022-08-15T22:06:35Z',NULL,NULL,NULL,'["Security", "Secrets Management", "Simplification", "Operators"]','["[EMERGING]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_stars": 25, "gh_pushed": "2022-08-15T22:06:35Z", "gh_license": "N/A", "gh_open_issues_30d": 3, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T13:34:43.930647+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Microsoft/azure-pipelines-tasks','==Microsoft/azure-pipelines-tasks==','','2026',5,'The official open-source repository containing the task libraries that run on Azure Pipelines. Monitoring this codebase is essential in 2026 for platform engineers who need to debug execution behaviors, trace custom step outputs, or build optimized, private extension packages.','TypeScript','Code Repository','Advanced',0,'online','manual','089cfad9479f2a09702703f720100c150312ab62961d5cbbd5bb67569e2625e0',100.0,1.77903073064587807e+09,1,'2026-06-12T14:53:04Z',NULL,NULL,NULL,'["Cloud DevOps", "CI-CD Pipelines", "Extensibility & Custom Tasks"]','["[DE FACTO STANDARD]"]','["docs/azure.md"]','["azure.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-12T14:53:04Z", "gh_stars": 3645, "gh_open_issues_30d": 507, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T13:34:44.667992+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/MiteshSharma/PrometheusWithGrafana','github.com/MiteshSharma/PrometheusWithGrafana','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','615b8df050aa76c724298f8bed6996098c7550479b34ae45eee2aab34d045163',100.0,1.77903390376175403e+09,1,'2026-05-17T18:05:03.761754+02:00',NULL,NULL,NULL,'[]','[]','["docs/prometheus.md"]','[]','{}','{"gh_license": "MIT", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T13:34:45.370439+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/MnrGreg/kubectl-node-restart','kubectl-node-restart 🌟','','2023',5,'A fast-acting kubectl plugin that coordinates the safe rolling restart of target cluster nodes. It wraps standard drain, cordon, reboot, and uncordon routines to maintain service availability during host maintenance. Widely used for ad-hoc operational tuning.','Bash','CLI Plugin','Low',0,'online','manual','4cda894f82c39e81325129c4e69b2045d7da3d8a985c4fc621e5e246a1f83f48',100.0,1.77903001526326298e+09,1,'2024-06-08T16:53:24Z',NULL,NULL,NULL,'["Operations", "Command Line Tools", "Node Operations"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2024-06-08T16:53:24Z", "gh_stars": 109}');
INSERT INTO "resources" VALUES('https://github.com/Mr-Un1k0d3r/ATP-PowerShell-Scripts','==github.com/Mr-Un1k0d3r/ATP-PowerShell-Scripts==','','2021',0,'Provides advanced scripts designed to audit protection baselines, test defensive measures, and evaluate Active Directory environments against vulnerability patterns.','PowerShell','GitHub Repository','Advanced',0,'online','manual','7e02fecdb793a0c0b021f8a6e0b23cf9abed11a63e04debc50a1e5e53fd6dd98',100.0,1.77903145909886407e+09,1,'2023-03-14T17:49:00Z',NULL,NULL,NULL,'["Security Operations", "Advanced Threat Protection", "Offensive Tooling", "Penetration Testing"]','["[COMMUNITY-TOOL]"]','["docs/azure.md"]','["azure.md"]','{}','{"gh_stars": 218, "gh_pushed": "2023-03-14T17:49:00Z", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/NCCloud/mayfly','github.com/NCCloud/mayfly: Ephemeral Kubernetes Resources 🌟','','2025',5,'Mayfly introduces time-to-live policies on generic Kubernetes resources and testing namespaces. Once designated duration guidelines are reached, Mayfly executes automated teardowns, ensuring transient tests do not leave lingering etcd records or unused services.','Go','Repository','Intermediate',0,'online','manual','2c8a29c2a1aaf2e5b74d2988bdff1dfad787569e0dbcbe10d1e934ea9755c94e',100.0,1.77903110385512399e+09,1,'2026-05-01T11:37:06Z',NULL,NULL,NULL,'["Operations & Reliability", "Resource Lifecycle", "Ephemeral Clusters"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-05-01T11:37:06Z", "gh_stars": 337}');
INSERT INTO "resources" VALUES('https://github.com/NVIDIA/gpu-operator','NVIDIA GPU Operator','','2025',2,'Curator Insight: Kubernetes operator designed to automate the management of NVIDIA software components on nodes. Live Grounding: Provisions GPU drivers, container runtimes, device plug-ins, and monitoring tools automatically, ensuring consistent access to hardware acceleration.','Go','Software','Expert',0,'online','manual','34332c147f6cfd2ad52ad841120cc5adabed3d28acf0b22d84d09fe4efe175e0',100.0,1.77903378515296292e+09,1,'2026-06-13T10:03:52Z',NULL,NULL,NULL,'["AI Infrastructure", "Hardware Orchestration", "NVIDIA Operators"]','["[COMMUNITY-TOOL]"]','["docs/ai-agents-mcp.md", "docs/kubernetes-operators-controllers.md"]','["ai-agents-mcp.md", "kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T10:03:52Z", "gh_stars": 2739}');
INSERT INTO "resources" VALUES('https://github.com/NVIDIA/k8s-device-plugin','NVIDIA/k8s-device-plugin: NVIDIA device plugin for Kubernetes','','2026',5,'This specialized DaemonSet exposes physical GPU properties to the local kubelet node manager. Operating as the essential link for hardware-accelerated workloads, it handles task-scheduling configurations and sets device-isolation runtimes so container systems can safely slice and access host GPU hardware.','Go','Repository','Intermediate',0,'online','manual','234a1e94e10f66301a5b20fd4b0907489e7c02ed7f6af4abdf4a0712efe34225',100.0,1.77903164584165191e+09,1,'2026-06-14T07:42:57Z',NULL,NULL,NULL,'["Infrastructure & Hardware", "AI/ML Infrastructure", "Hardware Integration"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-14T07:42:57Z", "gh_stars": 3788}');
INSERT INTO "resources" VALUES('https://github.com/NVIDIA/nvidia-docker/blob/8c0eeba474cace48fdb8216f518063db2bd2d4d1/tools/src/nvidia/volumes.go#L103',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','0d931ea56fe326116db8872658d316fc9713d53e5467f81cd192eab9e41551f6',100.0,1.77903408509110498e+09,1,'2026-05-17T18:08:05.091105+02:00',NULL,NULL,NULL,'[]','[]','["docs/mlops.md"]','[]','{}','{"gh_license": "Apache-2.0"}');
INSERT INTO "resources" VALUES('https://github.com/Neoteroi/essentials-configuration-keyvault','Neoteroi/essentials-configuration-keyvault','','2022',1,'A specialized open-source Python package engineered to fetch and map configurations dynamically from Azure Key Vault into Python-based microservices. Standardizes token authentication patterns, drastically reducing boilerplate setup routines for backend frameworks.','Python','Library','Beginner',0,'online','manual','ae3324701bd8964c6e28af8f13cfdb8647988d44da2e808b08ebcc0969a78ae5',100.0,1.77903061548018693e+09,1,'2023-04-10T13:47:59Z',NULL,NULL,NULL,'["Development", "Libraries", "Python Configuration Ingestion"]','["[COMMUNITY-TOOL]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2023-04-10T13:47:59Z", "gh_stars": 1}');
INSERT INTO "resources" VALUES('https://github.com/Netcracker/KubeMarine','github.com/Netcracker/KubeMarine','','2025',1,'KubeMarine is a lightweight, Python-based automation framework engineered for physical bare-metal and virtual machine cluster deployments. It streamlines OS-level system configuration, Kubeadm orchestration, certificate management, and system patch operations via streamlined SSH automation.','Python','Deployment Tool','Advanced',0,'online','manual','f1043841c0be89d2a7dc17b7cee8a50cfa7a51f15703d5ab73ee62b77cdfc451',100.0,1.7790328807821381e+09,1,'2026-06-12T13:49:01Z',NULL,NULL,NULL,'["Infrastructure", "Cluster Management", "Provisioning"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T13:49:01Z", "gh_stars": 131}');
INSERT INTO "resources" VALUES('https://github.com/Netflix/SimianArmy/wiki/Chaos-Monkey','Chaos Monkey','','2026',5,'Netflix''s classic Chaos Monkey implementation, designed to randomly disable instances in production to prove resiliency. Live Grounding identifies Chaos Monkey as the conceptual grandfather of contemporary Chaos Engineering, asserting that regular, controlled failure injection is a critical architectural requirement for distributed systems.','Python / Go','Repository / Tool','Advanced',0,'online','manual','0bbf9c260e5a0ee5238cd134054c33a92032f4cbf23a879d31222ccd7d68b3d8',100.0,1.77903254742657089e+09,1,'2018-12-18T09:29:22Z',NULL,NULL,NULL,'["Infrastructure", "Disaster Recovery", "Chaos Engineering"]','["[DE FACTO STANDARD]"]','["docs/aws-backup.md"]','["aws-backup.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2018-12-18T09:29:22Z", "gh_stars": 7984}');
INSERT INTO "resources" VALUES('https://github.com/Netflix/consoleme',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','a005d2fc4b19ea7d2b7398b1faffb405f676274e3979c0cb9383458fd5523675',100.0,1.77902950294935202e+09,0,'2026-05-17T16:51:42.949352+02:00',NULL,NULL,NULL,'[]','[]','["docs/aws-security.md"]','[]','{}','{}');
INSERT INTO "resources" VALUES('https://github.com/Netflix/metaflow','==github.com/Netflix/metaflow== 🌟','','2024',5,'Metaflow is Netflix''s human-centric framework designed for building and managing production-grade data science pipelines. It seamlessly integrates local development with enterprise-scale cloud infrastructures, handling data caching, model versioning, and compute scaling automatically.','Python','Repository','Intermediate',1,'online','manual','35bd1ece07b91b8ec876c7a4d5890e6931948f4cd0da3716a7f1d51f9f679ba5',100.0,1.779034523200562e+09,1,'2026-06-13T13:01:02Z',NULL,NULL,NULL,'["MLOps", "Orchestration", "Workflows"]','["[DE FACTO STANDARD]"]','["docs/mlops.md"]','["mlops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T13:01:02Z", "gh_stars": 10128}');
INSERT INTO "resources" VALUES('https://github.com/NielsRogge/Transformers-Tutorials','github.com/NielsRogge/Transformers-Tutorials','','2023',4,'A robust repository of detailed Jupyter notebooks demonstrating how to fine-tune, optimize, and deploy Hugging Face Transformers. Spanning multiple sensory modalities, it includes code for computer vision, natural language processing, and multimodal tasks. It serves as a go-to code library for enterprise machine learning engineers.','Python','Repository','Advanced',0,'online','manual','208c50769ca5549fb7b5b7c8c2a4e3e743517f2402645eccaa8c7e91f637aee3',100.0,1.77903197997685408e+09,1,'2026-04-20T12:36:38Z',NULL,NULL,NULL,'["Artificial Intelligence", "Generative AI Engineering", "Transformer Implementations"]','["[ENTERPRISE-STABLE]"]','["docs/ai.md"]','["ai.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-04-20T12:36:38Z", "gh_stars": 11638}');
INSERT INTO "resources" VALUES('https://github.com/NimbleArchitect/kubectl-ice','==NimbleArchitect/kubectl-ice== 🌟','','2021',2,'A CLI extension built to detail container resource metrics, environment properties, and pod parameters. It helps administrators locate memory leaks or CPU limits errors directly within running namespaces.','Go','Kubectl Plugin','Intermediate',0,'online','manual','dd5b62cfc3a3eda572d8749c072317e069d5d4ceec7a85a20e75c13712b10f14',100.0,1.77903044066306591e+09,1,'2025-06-22T14:20:41Z',NULL,NULL,NULL,'["Development & Testing", "Kubectl Plugins", "Resource Metrics"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-06-22T14:20:41Z", "gh_stars": 255}');
INSERT INTO "resources" VALUES('https://github.com/MnrGreg/kubectl-node-restart','kubectl-node-restart 🌟','','2023',5,'A fast-acting kubectl plugin that coordinates the safe rolling restart of target cluster nodes. It wraps standard drain, cordon, reboot, and uncordon routines to maintain service availability during host maintenance. Widely used for ad-hoc operational tuning.','Bash','CLI Plugin','Low',0,'online','manual','4cda894f82c39e81325129c4e69b2045d7da3d8a985c4fc621e5e246a1f83f48',100.0,1.77903001526326298e+09,1,'2024-06-08T16:53:24Z',NULL,NULL,NULL,'["Operations", "Command Line Tools", "Node Operations"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2024-06-08T16:53:24Z", "gh_stars": 109, "gh_open_issues_30d": 3, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:33:56.293764+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Mr-Un1k0d3r/ATP-PowerShell-Scripts','==github.com/Mr-Un1k0d3r/ATP-PowerShell-Scripts==','','2021',0,'Provides advanced scripts designed to audit protection baselines, test defensive measures, and evaluate Active Directory environments against vulnerability patterns.','PowerShell','GitHub Repository','Advanced',0,'online','manual','7e02fecdb793a0c0b021f8a6e0b23cf9abed11a63e04debc50a1e5e53fd6dd98',100.0,1.77903145909886407e+09,1,'2023-03-14T17:49:00Z',NULL,NULL,NULL,'["Security Operations", "Advanced Threat Protection", "Offensive Tooling", "Penetration Testing"]','["[COMMUNITY-TOOL]"]','["docs/azure.md"]','["azure.md"]','{}','{"gh_stars": 218, "gh_pushed": "2023-03-14T17:49:00Z", "gh_license": "N/A", "gh_open_issues_30d": 2, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:33:57.022136+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/NCCloud/mayfly','github.com/NCCloud/mayfly: Ephemeral Kubernetes Resources 🌟','','2025',5,'Mayfly introduces time-to-live policies on generic Kubernetes resources and testing namespaces. Once designated duration guidelines are reached, Mayfly executes automated teardowns, ensuring transient tests do not leave lingering etcd records or unused services.','Go','Repository','Intermediate',0,'online','manual','2c8a29c2a1aaf2e5b74d2988bdff1dfad787569e0dbcbe10d1e934ea9755c94e',100.0,1.77903110385512399e+09,1,'2026-05-01T11:37:06Z',NULL,NULL,NULL,'["Operations & Reliability", "Resource Lifecycle", "Ephemeral Clusters"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-05-01T11:37:06Z", "gh_stars": 337, "gh_open_issues_30d": 8, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:33:57.744988+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/NVIDIA/gpu-operator','NVIDIA GPU Operator','','2025',2,'Curator Insight: Kubernetes operator designed to automate the management of NVIDIA software components on nodes. Live Grounding: Provisions GPU drivers, container runtimes, device plug-ins, and monitoring tools automatically, ensuring consistent access to hardware acceleration.','Go','Software','Expert',0,'online','manual','34332c147f6cfd2ad52ad841120cc5adabed3d28acf0b22d84d09fe4efe175e0',100.0,1.77903378515296292e+09,1,'2026-06-13T10:03:52Z',NULL,NULL,NULL,'["AI Infrastructure", "Hardware Orchestration", "NVIDIA Operators"]','["[COMMUNITY-TOOL]"]','["docs/ai-agents-mcp.md", "docs/kubernetes-operators-controllers.md"]','["ai-agents-mcp.md", "kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T10:03:52Z", "gh_stars": 2739, "gh_open_issues_30d": 100, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:33:58.552471+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/NVIDIA/k8s-device-plugin','NVIDIA/k8s-device-plugin: NVIDIA device plugin for Kubernetes','','2026',5,'This specialized DaemonSet exposes physical GPU properties to the local kubelet node manager. Operating as the essential link for hardware-accelerated workloads, it handles task-scheduling configurations and sets device-isolation runtimes so container systems can safely slice and access host GPU hardware.','Go','Repository','Intermediate',0,'online','manual','234a1e94e10f66301a5b20fd4b0907489e7c02ed7f6af4abdf4a0712efe34225',100.0,1.77903164584165191e+09,1,'2026-06-14T07:42:57Z',NULL,NULL,NULL,'["Infrastructure & Hardware", "AI/ML Infrastructure", "Hardware Integration"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-14T07:42:57Z", "gh_stars": 3788, "gh_open_issues_30d": 73, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:33:59.294396+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/NVIDIA/nvidia-docker/blob/8c0eeba474cace48fdb8216f518063db2bd2d4d1/tools/src/nvidia/volumes.go#L103',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','0d931ea56fe326116db8872658d316fc9713d53e5467f81cd192eab9e41551f6',100.0,1.77903408509110498e+09,1,'2026-05-17T18:08:05.091105+02:00',NULL,NULL,NULL,'[]','[]','["docs/mlops.md"]','[]','{}','{"gh_license": "Apache-2.0", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:00.027474+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Neoteroi/essentials-configuration-keyvault','Neoteroi/essentials-configuration-keyvault','','2022',1,'A specialized open-source Python package engineered to fetch and map configurations dynamically from Azure Key Vault into Python-based microservices. Standardizes token authentication patterns, drastically reducing boilerplate setup routines for backend frameworks.','Python','Library','Beginner',0,'online','manual','ae3324701bd8964c6e28af8f13cfdb8647988d44da2e808b08ebcc0969a78ae5',100.0,1.77903061548018693e+09,1,'2023-04-10T13:47:59Z',NULL,NULL,NULL,'["Development", "Libraries", "Python Configuration Ingestion"]','["[COMMUNITY-TOOL]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2023-04-10T13:47:59Z", "gh_stars": 1, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:00.780072+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Netcracker/KubeMarine','github.com/Netcracker/KubeMarine','','2025',1,'KubeMarine is a lightweight, Python-based automation framework engineered for physical bare-metal and virtual machine cluster deployments. It streamlines OS-level system configuration, Kubeadm orchestration, certificate management, and system patch operations via streamlined SSH automation.','Python','Deployment Tool','Advanced',0,'online','manual','f1043841c0be89d2a7dc17b7cee8a50cfa7a51f15703d5ab73ee62b77cdfc451',100.0,1.7790328807821381e+09,1,'2026-06-12T13:49:01Z',NULL,NULL,NULL,'["Infrastructure", "Cluster Management", "Provisioning"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T13:49:01Z", "gh_stars": 131, "gh_open_issues_30d": 26, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:01.518067+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Netflix/SimianArmy/wiki/Chaos-Monkey','Chaos Monkey','','2026',5,'Netflix''s classic Chaos Monkey implementation, designed to randomly disable instances in production to prove resiliency. Live Grounding identifies Chaos Monkey as the conceptual grandfather of contemporary Chaos Engineering, asserting that regular, controlled failure injection is a critical architectural requirement for distributed systems.','Python / Go','Repository / Tool','Advanced',0,'online','manual','0bbf9c260e5a0ee5238cd134054c33a92032f4cbf23a879d31222ccd7d68b3d8',100.0,1.77903254742657089e+09,1,'2018-12-18T09:29:22Z',NULL,NULL,NULL,'["Infrastructure", "Disaster Recovery", "Chaos Engineering"]','["[DE FACTO STANDARD]"]','["docs/aws-backup.md"]','["aws-backup.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2018-12-18T09:29:22Z", "gh_stars": 7984, "gh_open_issues_30d": 43, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:02.242825+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Netflix/consoleme',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','a005d2fc4b19ea7d2b7398b1faffb405f676274e3979c0cb9383458fd5523675',100.0,1.77902950294935202e+09,0,'2026-05-17T16:51:42.949352+02:00',NULL,NULL,NULL,'[]','[]','["docs/aws-security.md"]','[]','{}','{"gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:02.978775+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Netflix/metaflow','==github.com/Netflix/metaflow== 🌟','','2024',5,'Metaflow is Netflix''s human-centric framework designed for building and managing production-grade data science pipelines. It seamlessly integrates local development with enterprise-scale cloud infrastructures, handling data caching, model versioning, and compute scaling automatically.','Python','Repository','Intermediate',1,'online','manual','35bd1ece07b91b8ec876c7a4d5890e6931948f4cd0da3716a7f1d51f9f679ba5',100.0,1.779034523200562e+09,1,'2026-06-13T13:01:02Z',NULL,NULL,NULL,'["MLOps", "Orchestration", "Workflows"]','["[DE FACTO STANDARD]"]','["docs/mlops.md"]','["mlops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T13:01:02Z", "gh_stars": 10128, "gh_open_issues_30d": 461, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:34:03.701610+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/NielsRogge/Transformers-Tutorials','github.com/NielsRogge/Transformers-Tutorials','','2023',4,'A robust repository of detailed Jupyter notebooks demonstrating how to fine-tune, optimize, and deploy Hugging Face Transformers. Spanning multiple sensory modalities, it includes code for computer vision, natural language processing, and multimodal tasks. It serves as a go-to code library for enterprise machine learning engineers.','Python','Repository','Advanced',0,'online','manual','208c50769ca5549fb7b5b7c8c2a4e3e743517f2402645eccaa8c7e91f637aee3',100.0,1.77903197997685408e+09,1,'2026-04-20T12:36:38Z',NULL,NULL,NULL,'["Artificial Intelligence", "Generative AI Engineering", "Transformer Implementations"]','["[ENTERPRISE-STABLE]"]','["docs/ai.md"]','["ai.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-04-20T12:36:38Z", "gh_stars": 11638, "gh_open_issues_30d": 313, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:34:04.463062+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/NimbleArchitect/kubectl-ice','==NimbleArchitect/kubectl-ice== 🌟','','2021',2,'A CLI extension built to detail container resource metrics, environment properties, and pod parameters. It helps administrators locate memory leaks or CPU limits errors directly within running namespaces.','Go','Kubectl Plugin','Intermediate',0,'online','manual','dd5b62cfc3a3eda572d8749c072317e069d5d4ceec7a85a20e75c13712b10f14',100.0,1.77903044066306591e+09,1,'2025-06-22T14:20:41Z',NULL,NULL,NULL,'["Development & Testing", "Kubectl Plugins", "Resource Metrics"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-06-22T14:20:41Z", "gh_stars": 255, "gh_open_issues_30d": 5, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:05.247907+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/NirDiamant/agents-towards-production','Agents Towards Production','End-to-end, code-first tutorials for building production-grade GenAI agents, from prototype to enterprise deployment.','2026',4,'This comprehensive open-source repository serves as an educational playbook for designing and scaling production-grade Generative AI agents. It features over 25 hands-on tutorials organized across ten critical pillars, including orchestration, tool integration, observability (using LangSmith), memory management, and deployment topologies (Docker/FastAPI).
Key features include:
* Runnable Jupyter notebooks demonstrating architectural patterns like agent routing, guardrails, and automated evaluation.
* Practical multi-agent coordination frameworks suitable for enterprise-grade applications.','en','Repository','Advanced',0,'online','automatic','b5fac23b9bdad2934781537634d83b2fecf023454e5bfb2c21287e45a04ca0d5',NULL,1.78035199434255409e+09,0,'2026-05-31T11:47:45Z',NULL,NULL,NULL,'["Artificial Intelligence", "AI Agents", "Production Patterns"]','["[COMMUNITY-TOOL]", "[GUIDE]"]','[]','[]','{}','{"category": "ai-agents-mcp", "gh_license": "NOASSERTION", "gh_pushed": "2026-05-31T11:47:45Z", "gh_stars": 20579, "reputation_status": "Vetted", "reputation_summary": "Highly popular and active repository with over 20k stars, providing code-first tutorials for building production-grade GenAI agents.", "social_preview_url": "https://opengraph.githubassets.com/29c2dd7b3e86e8cf37ed16f5e74225dfd8f02fdd3789ecd07b882ca98aa11ab4/NirDiamant/agents-towards-production", "source_provenance": "X.com (midudev)", "suggested_new_category": ""}');
INSERT INTO "resources" VALUES('https://github.com/Noovolari/awesome-cloudops','github.com/Noovolari/awesome-cloudops: Awesome CloudOps','','2026',0,'A compilation of utilities, design frameworks, and guides dedicated to automating cloud operations. Emphasizes modern cost optimization, cluster autoscaling, and multi-region network design across AWS, GCP, and Azure environments.','Markdown','Awesome List','Intermediate',0,'online','manual','5fff8be4143c3d60d0e86c6a4cb9fbbddd3010f134a5874bb1fd316117fa782b',100.0,1.779034226963382e+09,1,'2023-11-21T15:20:51Z',NULL,NULL,NULL,'["Infrastructure & Operations", "Cloud Operations", "Resource Optimization"]','["[COMMUNITY-TOOL]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_stars": 123, "gh_pushed": "2023-11-21T15:20:51Z", "gh_license": "N/A", "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/NuGet/docs.microsoft.com-nuget/blob/main/docs/reference/nuspec.md','NuGet/docs.microsoft.com-nuget: nuspec','','2026',2,'This reference specification details the .nuspec XML manifest schema governing NuGet packages. It provides structured guidance on targeting framework frameworks, orchestrating assembly dependencies, defining metadata, and managing compilation assemblies, acting as the foundational automation configuration schema for .NET artifact pipelines.','XML','Documentation','Intermediate',0,'online','manual','af11b04f68c7577ca0f6dafefefa47258ff8d492c33ae991994d3161e2b2e32b',100.0,1.77903359228964209e+09,1,'2026-06-12T19:05:37Z',NULL,NULL,NULL,'["Software Architecture & .NET Development", "Package Management", "NuGet Specification"]','["[COMMUNITY-TOOL]"]','["docs/dotnet.md"]','["dotnet.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-12T19:05:37Z", "gh_stars": 160}');
INSERT INTO "resources" VALUES('https://github.com/OT-CONTAINER-KIT/k8s-vault-webhook',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','95e8877d3e9c6d74e1c1f346e13151fbe9d091e5aa6e9e02a3de075bb7ee88db',100.0,1.77902973268112802e+09,0,'2026-05-17T16:55:32.681128+02:00',NULL,NULL,NULL,'[]','[]','["docs/devsecops.md", "docs/kubernetes-tools.md"]','[]','{}','{}');
INSERT INTO "resources" VALUES('https://github.com/OT-CONTAINER-KIT/logging-operator','Logging Operator','','2023',5,'Simplifies multi-tenant logging infrastructure by coordinating central Fluentd and Fluent Bit setups. It manages complex logging filters and output endpoints declaratively.','Go','Operator','Medium',0,'online','manual','33685801668635abf726f10a409342380a7ec6041fc6dbf6254c25c6a0706edd',100.0,1.77902938040018701e+09,1,'2024-06-22T13:42:57Z',NULL,NULL,NULL,'["Observability", "Logging", "Pipeline Management", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-06-22T13:42:57Z", "gh_stars": 51}');
INSERT INTO "resources" VALUES('https://github.com/OT-CONTAINER-KIT/mongodb-operator','OT-CONTAINER-KIT/mongodb-operator: MongoDB Operator','','2023',5,'Manages MongoDB databases, replica sets, and sharded environments. It automates scaling, credential updates, and physical storage volume mounts within the cluster.','Go','Operator','Advanced',0,'online','manual','4b7be0389a23b18b2e5ff57f23d9df77d1f83024660a3e19f6eddbf503448746',100.0,1.77903143626995706e+09,1,'2023-04-27T05:12:37Z',NULL,NULL,NULL,'["Infrastructure", "Data Management", "MongoDB", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-04-27T05:12:37Z", "gh_stars": 49}');
INSERT INTO "resources" VALUES('https://github.com/OT-CONTAINER-KIT/redis-operator','Speculator: Redis Operator','','2025',3,'An advanced Redis Operator developed by OT Container Kit. Features automated failover management, backup orchestrations, persistence configuration, and Redis Sentinel cluster sizing within Kubernetes native deployments.','Go','Repository','Advanced',0,'online','manual','3bc731e40d539a1e133ddf7389460c63109c2252dee5d7ca156714e5534d7063',100.0,1.7790344999993391e+09,1,'2026-06-14T00:53:45Z',NULL,NULL,NULL,'["Orchestration", "Kubernetes", "Operators"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-14T00:53:45Z", "gh_stars": 1379}');
INSERT INTO "resources" VALUES('https://github.com/OWASP/www-project-kubernetes-top-ten','==github.com/OWASP: OWASP Kubernetes Top 10== 🌟','','2024',1,'The official repository for the OWASP Kubernetes Top 10 project. Highlights major orchestrator risks like improper volume mounting, insecure RBAC configurations, network segment isolation issues, and image trust bypass. Serves as a baseline specification for enterprise-grade Kubernetes compliance auditing.','Markdown','Specification','Advanced',1,'online','manual','0e89ae11bf73f664fd7e764f7e61de217b25eea7af5e801d86cc33d2968bef3f',100.0,1.77902924349188303e+09,1,'2026-03-24T06:01:24Z',NULL,NULL,NULL,'["Security", "Mitigation Standards", "Kubernetes Hardening"]','["[COMMUNITY-TOOL]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-03-24T06:01:24Z", "gh_stars": 615}');
INSERT INTO "resources" VALUES('https://github.com/OctopusDeploy/Octopus-TeamCity','github.com/OctopusDeploy/Octopus-TeamCity: JetBrains TeamCity plugin to'' trigger releases on build completion','','2026',0,'A specialized Integration plugin designed to link JetBrains TeamCity builds to Octopus Deploy pipelines, passing artifact compilation metadata to trigger deployments.','Java','Plugin','Medium',0,'online','manual','e69eb3063e7d6d203fd1f2be5061a4072efc2e7bc2bc84281f8353732614fe0b',100.0,1779033398.39982,1,'2026-06-14T00:52:42Z',NULL,NULL,NULL,'["Software Delivery", "CI-CD Platforms", "Plugin Integrations"]','["[COMMUNITY-TOOL]"]','["docs/jenkins-alternatives.md"]','["jenkins-alternatives.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-14T00:52:42Z", "gh_stars": 0}');
INSERT INTO "resources" VALUES('https://github.com/OctopusDeploy/go-octopusdeploy','github.com/OctopusDeploy/go-octopusdeploy','','2026',5,'The official Go client library designed to facilitate programmatic interaction with the Octopus Deploy REST API. Widely used for creating custom cloud-native controllers, deployment operators, and scripts.','Go','Library','Medium',0,'online','manual','c90c16fd84599f5f253b8d17f2191de0af188632de3591af1739dd260331fd30',100.0,1.77903154246251702e+09,1,'2026-06-12T04:32:54Z',NULL,NULL,NULL,'["Software Delivery", "Release Orchestration", "SDKs"]','["[DE FACTO STANDARD]"]','["docs/jenkins-alternatives.md"]','["jenkins-alternatives.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-12T04:32:54Z", "gh_stars": 15}');
INSERT INTO "resources" VALUES('https://github.com/OpenFunction/OpenFunction','OpenFunction: Cloud Native Function-as-a-Service Platform (CNCF Sandbox'' Project)','','2026',4,'A CNCF Sandbox project delivering an enterprise-grade cloud-native FaaS runtime. Integrates Knative, Shipwright, Dapr, and KEDA components to simplify polyglot development pipelines.','Go','Repository','Advanced',1,'online','manual','06f8a39ea102b2d7deaf205e8908fdf7b85a83722838262f9d5863fce69f9ce3',100.0,1.77903429605722808e+09,1,'2024-06-19T07:51:05Z',NULL,NULL,NULL,'["Cloud Native", "Kubernetes Serverless", "OpenFunction"]','["[ENTERPRISE-STABLE]"]','["docs/serverless.md"]','["serverless.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-06-19T07:51:05Z", "gh_stars": 1655}');
INSERT INTO "resources" VALUES('https://github.com/OpenHFT/Java-Thread-Affinity','OpenHFT/Java-Thread-Affinity','','2022',4,'Highly optimized library that binds Java execution threads to specific CPU cores. Mitigates task context-switching overhead in low-latency financial systems, guaranteeing deterministic scheduling on modern multi-core hardware.','Java','Tool','Advanced',0,'online','manual','1b7f401a55c48c2cb66cb585eebc3899c97036def5883cd2addaf649c8ed4d56',100.0,1.77903101698605203e+09,1,'2026-05-21T08:03:36Z',NULL,NULL,NULL,'["JVM Architecture", "High-Performance Systems", "Thread Affinity"]','["[ENTERPRISE-STABLE]"]','["docs/java-and-java-performance-optimization.md"]','["java-and-java-performance-optimization.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-05-21T08:03:36Z", "gh_stars": 1897}');
INSERT INTO "resources" VALUES('https://github.com/OpenSLO/OpenSLO','OpenSLO specification 🌟','','2021',5,'The vendor-agnostic OpenSLO specification defines standard YAML schemas for declaring SLOs, SLIs, and error budgets. In 2026, it remains the standard for orchestrating declarative system health models inside GitOps automation.','YAML','Specification','Advanced',1,'online','manual','1650bcb3654cb3229aafbc03fe94d65ba1098a3112f7578501863935c94fcc89',100.0,1779031866.2338,1,'2025-11-25T09:00:50Z',NULL,NULL,NULL,'["Observability", "Service Level Objectives", "Declarative Standards"]','["[DE FACTO STANDARD]"]','["docs/sre.md"]','["sre.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-11-25T09:00:50Z", "gh_stars": 1496}');
* Practical multi-agent coordination frameworks suitable for enterprise-grade applications.','en','Repository','Advanced',0,'online','automatic','b5fac23b9bdad2934781537634d83b2fecf023454e5bfb2c21287e45a04ca0d5',NULL,1.78035199434255409e+09,0,'2026-05-31T11:47:45Z',NULL,NULL,NULL,'["Artificial Intelligence", "AI Agents", "Production Patterns"]','["[COMMUNITY-TOOL]", "[GUIDE]"]','[]','[]','{}','{"category": "ai-agents-mcp", "gh_license": "NOASSERTION", "gh_pushed": "2026-05-31T11:47:45Z", "gh_stars": 20579, "reputation_status": "Vetted", "reputation_summary": "Highly popular and active repository with over 20k stars, providing code-first tutorials for building production-grade GenAI agents.", "social_preview_url": "https://opengraph.githubassets.com/29c2dd7b3e86e8cf37ed16f5e74225dfd8f02fdd3789ecd07b882ca98aa11ab4/NirDiamant/agents-towards-production", "source_provenance": "X.com (midudev)", "suggested_new_category": "", "gh_open_issues_30d": 8, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:05.964163+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Noovolari/awesome-cloudops','github.com/Noovolari/awesome-cloudops: Awesome CloudOps','','2026',0,'A compilation of utilities, design frameworks, and guides dedicated to automating cloud operations. Emphasizes modern cost optimization, cluster autoscaling, and multi-region network design across AWS, GCP, and Azure environments.','Markdown','Awesome List','Intermediate',0,'online','manual','5fff8be4143c3d60d0e86c6a4cb9fbbddd3010f134a5874bb1fd316117fa782b',100.0,1.779034226963382e+09,1,'2023-11-21T15:20:51Z',NULL,NULL,NULL,'["Infrastructure & Operations", "Cloud Operations", "Resource Optimization"]','["[COMMUNITY-TOOL]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_stars": 123, "gh_pushed": "2023-11-21T15:20:51Z", "gh_license": "N/A", "is_special": true, "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:06.774783+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/NuGet/docs.microsoft.com-nuget/blob/main/docs/reference/nuspec.md','NuGet/docs.microsoft.com-nuget: nuspec','','2026',2,'This reference specification details the .nuspec XML manifest schema governing NuGet packages. It provides structured guidance on targeting framework frameworks, orchestrating assembly dependencies, defining metadata, and managing compilation assemblies, acting as the foundational automation configuration schema for .NET artifact pipelines.','XML','Documentation','Intermediate',0,'online','manual','af11b04f68c7577ca0f6dafefefa47258ff8d492c33ae991994d3161e2b2e32b',100.0,1.77903359228964209e+09,1,'2026-06-12T19:05:37Z',NULL,NULL,NULL,'["Software Architecture & .NET Development", "Package Management", "NuGet Specification"]','["[COMMUNITY-TOOL]"]','["docs/dotnet.md"]','["dotnet.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-12T19:05:37Z", "gh_stars": 160, "gh_open_issues_30d": 10, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:07.536075+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/OT-CONTAINER-KIT/k8s-vault-webhook',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','95e8877d3e9c6d74e1c1f346e13151fbe9d091e5aa6e9e02a3de075bb7ee88db',100.0,1.77902973268112802e+09,0,'2026-05-17T16:55:32.681128+02:00',NULL,NULL,NULL,'[]','[]','["docs/devsecops.md", "docs/kubernetes-tools.md"]','[]','{}','{"gh_open_issues_30d": 13, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:08.277634+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/OT-CONTAINER-KIT/logging-operator','Logging Operator','','2023',5,'Simplifies multi-tenant logging infrastructure by coordinating central Fluentd and Fluent Bit setups. It manages complex logging filters and output endpoints declaratively.','Go','Operator','Medium',0,'online','manual','33685801668635abf726f10a409342380a7ec6041fc6dbf6254c25c6a0706edd',100.0,1.77902938040018701e+09,1,'2024-06-22T13:42:57Z',NULL,NULL,NULL,'["Observability", "Logging", "Pipeline Management", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-06-22T13:42:57Z", "gh_stars": 51, "gh_open_issues_30d": 13, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:09.017647+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/OT-CONTAINER-KIT/mongodb-operator','OT-CONTAINER-KIT/mongodb-operator: MongoDB Operator','','2023',5,'Manages MongoDB databases, replica sets, and sharded environments. It automates scaling, credential updates, and physical storage volume mounts within the cluster.','Go','Operator','Advanced',0,'online','manual','4b7be0389a23b18b2e5ff57f23d9df77d1f83024660a3e19f6eddbf503448746',100.0,1.77903143626995706e+09,1,'2023-04-27T05:12:37Z',NULL,NULL,NULL,'["Infrastructure", "Data Management", "MongoDB", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-04-27T05:12:37Z", "gh_stars": 49, "gh_open_issues_30d": 15, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:09.792952+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/OT-CONTAINER-KIT/redis-operator','Speculator: Redis Operator','','2025',3,'An advanced Redis Operator developed by OT Container Kit. Features automated failover management, backup orchestrations, persistence configuration, and Redis Sentinel cluster sizing within Kubernetes native deployments.','Go','Repository','Advanced',0,'online','manual','3bc731e40d539a1e133ddf7389460c63109c2252dee5d7ca156714e5534d7063',100.0,1.7790344999993391e+09,1,'2026-06-14T00:53:45Z',NULL,NULL,NULL,'["Orchestration", "Kubernetes", "Operators"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-14T00:53:45Z", "gh_stars": 1379, "gh_open_issues_30d": 198, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:34:10.528903+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/OWASP/www-project-kubernetes-top-ten','==github.com/OWASP: OWASP Kubernetes Top 10== 🌟','','2024',1,'The official repository for the OWASP Kubernetes Top 10 project. Highlights major orchestrator risks like improper volume mounting, insecure RBAC configurations, network segment isolation issues, and image trust bypass. Serves as a baseline specification for enterprise-grade Kubernetes compliance auditing.','Markdown','Specification','Advanced',1,'online','manual','0e89ae11bf73f664fd7e764f7e61de217b25eea7af5e801d86cc33d2968bef3f',100.0,1.77902924349188303e+09,1,'2026-03-24T06:01:24Z',NULL,NULL,NULL,'["Security", "Mitigation Standards", "Kubernetes Hardening"]','["[COMMUNITY-TOOL]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-03-24T06:01:24Z", "gh_stars": 615, "gh_open_issues_30d": 2, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:11.306932+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/OctopusDeploy/Octopus-TeamCity','github.com/OctopusDeploy/Octopus-TeamCity: JetBrains TeamCity plugin to'' trigger releases on build completion','','2026',0,'A specialized Integration plugin designed to link JetBrains TeamCity builds to Octopus Deploy pipelines, passing artifact compilation metadata to trigger deployments.','Java','Plugin','Medium',0,'online','manual','e69eb3063e7d6d203fd1f2be5061a4072efc2e7bc2bc84281f8353732614fe0b',100.0,1779033398.39982,1,'2026-06-14T00:52:42Z',NULL,NULL,NULL,'["Software Delivery", "CI-CD Platforms", "Plugin Integrations"]','["[COMMUNITY-TOOL]"]','["docs/jenkins-alternatives.md"]','["jenkins-alternatives.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-14T00:52:42Z", "gh_stars": 0, "gh_open_issues_30d": 18, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:12.062434+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/OctopusDeploy/go-octopusdeploy','github.com/OctopusDeploy/go-octopusdeploy','','2026',5,'The official Go client library designed to facilitate programmatic interaction with the Octopus Deploy REST API. Widely used for creating custom cloud-native controllers, deployment operators, and scripts.','Go','Library','Medium',0,'online','manual','c90c16fd84599f5f253b8d17f2191de0af188632de3591af1739dd260331fd30',100.0,1.77903154246251702e+09,1,'2026-06-12T04:32:54Z',NULL,NULL,NULL,'["Software Delivery", "Release Orchestration", "SDKs"]','["[DE FACTO STANDARD]"]','["docs/jenkins-alternatives.md"]','["jenkins-alternatives.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-12T04:32:54Z", "gh_stars": 15, "gh_open_issues_30d": 37, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:12.812808+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/OpenFunction/OpenFunction','OpenFunction: Cloud Native Function-as-a-Service Platform (CNCF Sandbox'' Project)','','2026',4,'A CNCF Sandbox project delivering an enterprise-grade cloud-native FaaS runtime. Integrates Knative, Shipwright, Dapr, and KEDA components to simplify polyglot development pipelines.','Go','Repository','Advanced',1,'online','manual','06f8a39ea102b2d7deaf205e8908fdf7b85a83722838262f9d5863fce69f9ce3',100.0,1.77903429605722808e+09,1,'2024-06-19T07:51:05Z',NULL,NULL,NULL,'["Cloud Native", "Kubernetes Serverless", "OpenFunction"]','["[ENTERPRISE-STABLE]"]','["docs/serverless.md"]','["serverless.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-06-19T07:51:05Z", "gh_stars": 1655, "gh_open_issues_30d": 101, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:34:13.542004+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/OpenHFT/Java-Thread-Affinity','OpenHFT/Java-Thread-Affinity','','2022',4,'Highly optimized library that binds Java execution threads to specific CPU cores. Mitigates task context-switching overhead in low-latency financial systems, guaranteeing deterministic scheduling on modern multi-core hardware.','Java','Tool','Advanced',0,'online','manual','1b7f401a55c48c2cb66cb585eebc3899c97036def5883cd2addaf649c8ed4d56',100.0,1.77903101698605203e+09,1,'2026-05-21T08:03:36Z',NULL,NULL,NULL,'["JVM Architecture", "High-Performance Systems", "Thread Affinity"]','["[ENTERPRISE-STABLE]"]','["docs/java-and-java-performance-optimization.md"]','["java-and-java-performance-optimization.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-05-21T08:03:36Z", "gh_stars": 1897, "gh_open_issues_30d": 15, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:14.298014+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/OpenSLO/OpenSLO','OpenSLO specification 🌟','','2021',5,'The vendor-agnostic OpenSLO specification defines standard YAML schemas for declaring SLOs, SLIs, and error budgets. In 2026, it remains the standard for orchestrating declarative system health models inside GitOps automation.','YAML','Specification','Advanced',1,'online','manual','1650bcb3654cb3229aafbc03fe94d65ba1098a3112f7578501863935c94fcc89',100.0,1779031866.2338,1,'2025-11-25T09:00:50Z',NULL,NULL,NULL,'["Observability", "Service Level Objectives", "Declarative Standards"]','["[DE FACTO STANDARD]"]','["docs/sre.md"]','["sre.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-11-25T09:00:50Z", "gh_stars": 1496, "gh_open_issues_30d": 23, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:15.057237+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/OpenShiftDemos','github.com/OpenShiftDemos 🌟','','2021',0,'A central repository for community-created deployment scenarios and platform showcases on OpenShift. Offers infrastructure engineers access to ready-to-use cluster testing configurations and tool deployments.','Shell','Repository','Intermediate',0,'online','manual','826418343f085ab7d6f38f30f9b2002d7fa0f8ead77b0fbdcc8b0f3ee8d90c8d',100.0,1.77903429226051306e+09,1,'2026-05-17T18:11:32.260513+02:00',NULL,NULL,NULL,'["Reference Architectures", "Enterprise Demos", "Community Repositories"]','["[COMMUNITY-TOOL]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/OpenShiftDemos/sonarqube-openshift-docker','SonarQube: An OpenShift-focused Docker build of Sonarqube','','2020',0,'A custom Docker build configuration designed to host SonarQube instances on OpenShift. Modern strategies prioritize official Helm charts or certified OpenShift Operator deployments, but this configuration highlights important historical patterns for handling stateful Java applications.','Dockerfile','Repository','Intermediate',0,'online','manual','a9ee6c819fbf57514a51b2f6a5bf5f5416f61b937a68e68994a52f1a656944d8',100.0,1.77903236153912305e+09,1,'2021-02-10T16:58:26Z',NULL,NULL,NULL,'["Platform Deployment", "Quality Assurance", "Static Code Analysis"]','["[COMMUNITY-TOOL]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_stars": 42, "gh_pushed": "2021-02-10T16:58:26Z", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/OvidiuBorlean/kubectl-sockperf','github.com/OvidiuBorlean/kubectl-sockperf','','2022',0,'A specialized plugin designed to run sockperf-based latency and throughput tests between Kubernetes pods. Although a valuable benchmarking tool for network CNI evaluations, it is currently inactive, with administrators migrating to generalized benchmarking tools.','Shell','CLI Plugin','Advanced',0,'online','manual','65d38d11cedbadada703b554ac97eb0a8f7b02028e3076e551e7db83a0eb74fc',100.0,1.77903453141744899e+09,1,'2022-11-26T06:17:12Z',NULL,NULL,NULL,'["Operations", "CLI Tooling", "Network Testing"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_stars": 22, "gh_pushed": "2022-11-26T06:17:12Z", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/OvidiuBorlean/kubectl-windumps','github.com/OvidiuBorlean/kubectl-windumps','','2020',0,'A legacy kubectl command-line utility facilitating TCP packet captures directly on Windows Server nodes within AKS clusters. Live grounding shows the project has been inactive for several years, yet it serves as a valuable conceptual reference for troubleshooting deep network issues.','Go','Command-line Tool','Advanced',0,'online','manual','9765ffb4071f20a0203be3264c8b7e61ad18197ad7aba14270730d0d3bafe1ba',100.0,1.77903258731499195e+09,1,'2022-11-26T06:32:40Z',NULL,NULL,NULL,'["Operations & Troubleshooting", "Diagnostic Analysis", "Windows Packet Capture"]','["[LEGACY]"]','["docs/kubernetes-tools.md", "docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md", "kubernetes-tools.md"]','{}','{"gh_stars": 7, "gh_pushed": "2022-11-26T06:32:40Z", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/PacktPublishing/Kubernetes-in-Production-Best-Practices','github.com/PacktPublishing: Kubernetes in Production Best Practices','','2021',1,'Code assets companion for the Packt book, containing production-ready manifests for security hardening, automated deployments, monitoring stacks, and multi-tenant networking configurations.','Go','Repository','Advanced',0,'online','manual','25647a4cd596fb273c90f32a57f4565300218b7c9823576d32721d6ac353fc3d',100.0,1.77903272918548488e+09,1,'2023-02-18T02:57:45Z',NULL,NULL,NULL,'["Operations", "Best Practices", "Production Readiness"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes.md"]','["kubernetes.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2023-02-18T02:57:45Z", "gh_stars": 96}');
INSERT INTO "resources" VALUES('https://github.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook','github.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook','','2022',5,'Architectural repository covering modern cloud design topologies, zero-trust cloud network security, infrastructure redundancy, microservice distribution, and cost models mapping.','None','Repository','Advanced',1,'online','manual','9cb5a24db068425b5a9b3f54920f4681885abd692339a358856a1f807c0355cc',100.0,1.77903373152726292e+09,1,'2026-04-22T08:18:15Z',NULL,NULL,NULL,'["Cloud Platform", "Architecture Patterns", "Cloud-Native"]','["[DE FACTO STANDARD]"]','["docs/azure.md"]','["azure.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-04-22T08:18:15Z", "gh_stars": 344}');
INSERT INTO "resources" VALUES('https://github.com/PacoVK/tapir','github.com/PacoVK/tapir','','2023',5,'An open-source utility designed to render interactive visual representations of Terraform execution plans. Helps teams review deep changes, resource recreations, and infrastructure impacts in a browser dashboard before approvals.','Go','Open Source Tool','Intermediate',0,'online','manual','0408ebd4347d9cbea83703d2b621fb52ddbfa52136b4566a850296d117098498',100.0,1.77903019320378589e+09,1,'2026-06-11T11:59:01Z',NULL,NULL,NULL,'["Infrastructure as Code", "Terraform", "Tooling"]','["[DE FACTO STANDARD]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T11:59:01Z", "gh_stars": 237}');
INSERT INTO "resources" VALUES('https://github.com/PaloAltoNetworks/rbac-police','PaloAltoNetworks/rbac-police','','2026',2,'RBAC Police is a specialized scanning tool built to discover and report privileged escalations and structural anomalies in Kubernetes cluster RBAC mappings. By analyzing cluster roles and bindings, it uncovers paths that malicious actors could use to gain administrative control. It remains an active security tool for hardening cluster control planes against lateral privilege escalation.','Go','Security Scanner','Intermediate',0,'online','manual','7a4101769a2c4d951f5d3e8f74b4047b8d7cffff4145536d035d862caad5d5f9',100.0,1.77903422950571393e+09,1,'2025-03-21T20:06:05Z',NULL,NULL,NULL,'["Security", "RBAC", "Audit & Compliance"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2025-03-21T20:06:05Z", "gh_stars": 353}');
INSERT INTO "resources" VALUES('https://github.com/PatrickJS/awesome-angular','Awesome Angular','','2026',5,'A comprehensive curated collection of modules, state management patterns (NgRx), and testing pipelines for the Angular framework. Primarily useful for frontend web development teams constructing large-scale enterprise administration panels and dashboard portals. Includes dynamic blueprints for client-side single page applications (SPAs).','TypeScript','Repository','Intermediate',0,'online','manual','65c9bdeb583596516752cfbd824c750bb7c1ccd93002f039aeda16c9053abff9',100.0,1.77903142310056209e+09,1,'2026-06-13T17:48:11Z',NULL,NULL,NULL,'["Programming Languages", "JavaScript", "Angular"]','["[DE FACTO STANDARD]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "CC0-1.0", "gh_pushed": "2026-06-13T17:48:11Z", "gh_stars": 10028, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/PaulJuliusMartinez/jless','jless','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','0e8b0c2ced272da94ed5550dfb4f1feaa53c68b18b9123dad872d168ed82bf8c',100.0,1.77903450197825789e+09,1,'2026-05-17T18:15:01.978258+02:00',NULL,NULL,NULL,'[]','[]','["docs/yaml.md"]','[]','{}','{"gh_license": "MIT", "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/PhilippeChepy/exoscale-kubernetes-crio','Autoscalable Kubernetes cluster at Exoscale, using Packer and Terraform','','2020',0,'An IaC blueprint using Packer and Terraform to deploy an auto-scaling cluster on Exoscale with CRI-O. Curator Insight vs Live Grounding: The repository is now inactive, but serves as a historical example of orchestrating custom cloud pools with native container engines.','HCL/Packer','Repository','Advanced',0,'online','manual','67a3a62e1d56b7d24571f657b0bea6de22006bbb22a838d30b64f5bc7fa1283a',100.0,1.77902916568094706e+09,1,'2021-02-05T17:31:37Z',NULL,NULL,NULL,'["Provisioning", "Infrastructure-as-Code", "Exoscale"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-on-premise.md"]','["kubernetes-on-premise.md"]','{}','{"gh_stars": 2, "gh_pushed": "2021-02-05T17:31:37Z", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/PlasticSCM/trunk-mergebot','Plastic SCM DevOps Mergebot to implement a trunk-based development cycle','','2019',1,'An open-source reference implementation of Plastic SCM''s Trunk-based Development Mergebot. Designed to coordinate with automated continuous integration runners to perform automated merges, preventing development drifts.','C#','Tool','Intermediate',0,'online','manual','4fb1f52d49794ef82d619c094ff690294947d440768688fa18ef4dad5f172d0e',100.0,1.779031141462507e+09,1,'2023-01-03T12:27:34Z',NULL,NULL,NULL,'["Software Engineering", "Version Control", "Distributed VCS"]','["[COMMUNITY-TOOL]"]','["docs/git.md"]','["git.md"]','{}','{"gh_stars": 4, "gh_pushed": "2023-01-03T12:27:34Z", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/Playtika/testcontainers-spring-boot','testcontainers-spring-boot 🌟','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','6b1de1f1975806dd7d20766df714ba8586e0c6ca623ef75222537e7302ab56dc',100.0,1779032455.89641,0,'2026-05-17T17:40:55.896410+02:00',NULL,NULL,NULL,'[]','[]','["docs/java_frameworks.md", "docs/qa.md"]','[]','{}','{"duplicate_of": "https://github.com/PlaytikaOSS/testcontainers-spring-boot"}');
INSERT INTO "resources" VALUES('https://github.com/PlaytikaOSS/testcontainers-spring-boot','testcontainers-spring-boot 🌟','','2025',5,'A powerful open-source library that automates the lifecycle of Docker containers (PostgreSQL, Kafka, Redis) during JUnit test execution. It eliminates the need for shared database environments and mock frameworks, leading to high-fidelity integration tests. Today, this tool is universally recognized as a best-practice asset for CI/CD test suites across the Spring ecosystem.','Java','Library','Intermediate',0,'online','manual','32e228a0e653f153405793a48735c56293110687582775b12fd8e22da14c239c',100.0,1.77913049495672202e+09,1,'2026-06-14T04:50:08Z',NULL,NULL,NULL,'["Developer Experience", "Testing", "Integration Testing"]','["[DE FACTO STANDARD]"]','["docs/java_frameworks.md", "docs/qa.md"]','["java_frameworks.md", "qa.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-14T04:50:08Z", "gh_stars": 876}');
INSERT INTO "resources" VALUES('https://github.com/Portshift/Kubei','Kubei 🌟','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','974f97dbec8aae433d1984e1ab2c41ce8519c60daacde65a2ec9a205684afda8',100.0,1.77903180072363901e+09,0,'2026-05-17T17:30:00.723639+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{}');
INSERT INTO "resources" VALUES('https://github.com/Portshift/kubei','**Kubei**','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','974f97dbec8aae433d1984e1ab2c41ce8519c60daacde65a2ec9a205684afda8',100.0,1.77903001551521706e+09,0,'2026-05-17T17:00:15.515217+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"duplicate_of": "https://github.com/Portshift/Kubei"}');
INSERT INTO "resources" VALUES('https://github.com/Praqma/helmsman','Helmsman: Helm Charts as Code 🌟','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','0f9d002d358ff471ce700abf16c261b6e563b0c25e1bbd45e240b9786e4a446b',100.0,1.77903205502643895e+09,0,'2026-05-17T17:34:15.026439+02:00',NULL,NULL,NULL,'[]','[]','["docs/helm.md"]','[]','{}','{"duplicate_of": "https://github.com/mkubaczyk/helmsman"}');
INSERT INTO "resources" VALUES('https://github.com/PrasadG193/kyaml2go','kyaml2go (Pronounced as camel2go 🐫) 🌟','','2024',5,'A code generator that converts static Kubernetes YAML configurations into functional client-go API syntax. Highly valuable for operator developers seeking to minimize manual client-go boilerplate code.','Go','Developer Tool','Intermediate',0,'online','manual','de3d8afc3d78ec62976c4c3894d4b2c21b403deb07fbf10082e0e4aafab733bf',100.0,1779031980.10928,1,'2021-11-09T11:31:04Z',NULL,NULL,NULL,'["Cloud Native & K8s", "Kubernetes API", "Code Generators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-client-libraries.md"]','["kubernetes-client-libraries.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2021-11-09T11:31:04Z", "gh_stars": 283}');
INSERT INTO "resources" VALUES('https://github.com/Pscheidl/kubectl-explorer','Pscheidl/kubexplorer','','2021',1,'A lightweight, Rust-powered kubectl plugin styled like standard directory structure tree views. It allows developers to browse native Custom Resource Definitions (CRDs) and explore system schemas directly from their terminal.','Rust','CLI Tool','Low',0,'online','manual','52a47f8db982bb0f3baab72bd1b634e53e73672e27c0c09a8f376233ae822179',100.0,1.77913049499560189e+09,1,'2025-05-17T13:37:47Z',NULL,NULL,NULL,'["Developer Experience", "CLI Tools", "Cluster Discovery"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-05-17T13:37:47Z", "gh_stars": 61}');
INSERT INTO "resources" VALUES('https://github.com/Pscheidl/kubexplorer','Pscheidl/kubexplorer','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','b562806c87a82618b3ca395fe614657ebb1b39f49aafd47797ee2838adf193b7',100.0,1.77903394814071798e+09,0,'2026-05-17T18:05:48.140718+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"duplicate_of": "https://github.com/Pscheidl/kubectl-explorer"}');
INSERT INTO "resources" VALUES('https://github.com/PyGithub/PyGithub','PyGithub 🌟','','2026',5,'A fully featured, object-oriented Python library designed to interact with the complete GitHub REST API v3 and GitHub Enterprise instances. Simplifies execution of automated repository operations, pull request management, security vulnerability reviews, and release deployment pipelines directly via Python applications.','Python','Library','Intermediate',0,'online','manual','2498211a8c67c5f675ec93e06ad44db7328be57d7eade3d3dae7ad8caa413438',100.0,1.77903013295484399e+09,1,'2026-06-12T09:31:14Z',NULL,NULL,NULL,'["Software Engineering", "API Integration", "GitHub Automation"]','["[DE FACTO STANDARD]"]','["docs/python.md"]','["python.md"]','{}','{"gh_license": "LGPL-3.0", "gh_pushed": "2026-06-12T09:31:14Z", "gh_stars": 7724}');
INSERT INTO "resources" VALUES('https://github.com/PyratLabs/ansible-role-k3s','github.com/PyratLabs/ansible-role-k3s 🌟','','2024',3,'Highly structured, modular Ansible role tailored for deploying K3s. Implements fine-grained host configuration and robust systemd lifecycle management over target K3s nodes.','YAML','github_repo','Intermediate',0,'online','manual','b90681d777b1b3fcf2f50b7a3c656e03e3cd10cbeed2564138e41ed412e7a864',100.0,1.77903179404259705e+09,1,'2026-05-17T14:22:22Z',NULL,NULL,NULL,'["Cloud Native & Orchestration", "Kubernetes", "Bootstrap & Cluster Ops"]','["[COMMUNITY-TOOL]"]','["docs/ansible.md"]','["ansible.md"]','{}','{"gh_license": "BSD-3-Clause", "gh_pushed": "2026-05-17T14:22:22Z", "gh_stars": 713}');
INSERT INTO "resources" VALUES('https://github.com/Qovery/Torii','github.com/Qovery/Torii','','2024',1,'Torii is an open-source developer portal construction kit designed by Qovery. It provides customizable building blocks to easily curate, expose, and manage developer-facing interfaces, bridging complex infrastructure with human-readable operational catalogs.','TypeScript','Open Source Project','Intermediate',1,'online','manual','8f40d5792c2432c16743de893b3e78fd4875d95005edfac3dd7d407267b886ae',100.0,1.77903159215211701e+09,1,'2024-07-25T18:54:23Z',NULL,NULL,NULL,'["Platform Engineering", "IDP Tooling", "Developer Portals"]','["[COMMUNITY-TOOL]"]','["docs/devops.md"]','["devops.md"]','{}','{"gh_license": "GPL-3.0", "gh_pushed": "2024-07-25T18:54:23Z", "gh_stars": 178}');
INSERT INTO "resources" VALUES('https://github.com/Qovery/engine','Qovery/engine: Qovery Engine 🌟','','2024',4,'Qovery Engine is a high-performance Rust-based library designed to provision and deploy applications on Kubernetes-based cloud infrastructure (AWS, GCP, Azure). Serving as the abstraction layer beneath the Qovery PaaS, it handles DNS, load balancers, database instances, and secure ingress configurations. It provides a developer-centric alternative to raw Helm or Terraform code.','Rust','Library','High',0,'online','manual','f8388e431919cbf792c57f9c55e77c67f2a3188d9dbd2d9042f99b469e94c405',100.0,1.77903378534738397e+09,1,'2026-06-12T12:57:05Z',NULL,NULL,NULL,'["Application Delivery", "Platform-as-a-Service", "Internal Developer Platforms"]','["[ENTERPRISE-STABLE]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "GPL-3.0", "gh_pushed": "2026-06-12T12:57:05Z", "gh_stars": 2446}');
INSERT INTO "resources" VALUES('https://github.com/Qovery/pleco','Qovery/pleco','','2024',2,'Pleco is an automated garbage collection utility that monitors cloud providers and Kubernetes clusters to delete stale, expired, or orphaned resources (such as EBS volumes, load balancers, and namespaces). It is widely utilized in dynamic test-environment setups to avoid unnecessary infrastructure expenses.','Go','CLI Tool','Medium',0,'online','manual','26703e33d15988bb18f88f699631753b77bbc01a3ae6c528138740edd0806343',100.0,1.77903445678252196e+09,1,'2026-05-19T15:01:33Z',NULL,NULL,NULL,'["Operations", "Garbage Collection", "Resource Cleanup"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-05-19T15:01:33Z", "gh_stars": 228}');
INSERT INTO "resources" VALUES('https://github.com/Quentin-M/etcd-cloud-operator','Quentin-M/etcd-cloud-operator','','2022',5,'An early framework designed to coordinate etcd state engines in dynamic environments. Modern production setups have moved towards official cloud-provider tooling or alternative operators.','Go','Operator','Advanced',0,'online','manual','c035bbca5b1621abcf8db7fc9c70ce275fffafe66b882095112839ceb4e0e4b5',100.0,1.77903331409543704e+09,1,'2025-09-26T22:32:53Z',NULL,NULL,NULL,'["Infrastructure", "Control Plane", "etcd Coordination", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-09-26T22:32:53Z", "gh_stars": 234}');
INSERT INTO "resources" VALUES('https://github.com/Radware/radware-ansible','Radware/radware-ansible: Radware Ansible Collection','','2023',1,'Specialized Ansible Content Collection optimized for provisioning and managing Radware networking nodes, load balancers, and cloud security suites programmatically.','Python','github_repo','Advanced',0,'online','manual','78e7074d642934692a21e143639f97f29f0fb05a756f551f9fcaf3073db61e3f',100.0,1.77902924347749304e+09,1,'2023-09-27T07:01:49Z',NULL,NULL,NULL,'["Automation & Orchestration", "Ansible Ecosystem", "Collections"]','["[COMMUNITY-TOOL]"]','["docs/ansible.md"]','["ansible.md"]','{}','{"gh_license": "GPL-3.0", "gh_pushed": "2023-09-27T07:01:49Z", "gh_stars": 10}');
INSERT INTO "resources" VALUES('https://github.com/Ramilito/kubediff','Ramilito/kubediff ⭐','','2023',1,'Kubediff is an operational helper designed to compare local structural Kubernetes resource configurations against running runtime instances. It acts as an validation sanity checker before executing apply commands, mitigating unintentional production configuration drifts.','Go','CLI Tool','Intermediate',0,'online','manual','1f0c6d67036c78fcc64323475433be29fb1db5472ef07e364334d49d6bb9ccc8',100.0,1.77903450004998588e+09,1,'2026-01-27T23:05:20Z',NULL,NULL,NULL,'["Operations", "Resource Management", "Configuration Auditing"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-01-27T23:05:20Z", "gh_stars": 185}');
INSERT INTO "resources" VALUES('https://github.com/Ramilito/kubesess','Ramilito/kubesess','','2026',5,'A multi-session context manager that isolates Kubernetes session configs within split terminal tabs. Unlike default global switches, this Rust utility guarantees engineers can safely run separate commands targeting different zones and clusters simultaneously without cross-cluster command contamination.','Rust','Tool','Intermediate',0,'online','manual','d2a4d8e731cd0408d6a4f848093e6c4f8e92c9d3b876c9babafca131910ea0d8',100.0,1.77903078819058108e+09,1,'2026-03-19T04:43:36Z',NULL,NULL,NULL,'["Operations", "Session Management", "Context Isolation"]','["[DE FACTO STANDARD]"]','["docs/kubernetes.md"]','["kubernetes.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-03-19T04:43:36Z", "gh_stars": 284}');
INSERT INTO "resources" VALUES('https://github.com/Reaimua/AWS-CLI-Uploader-Project','github.com/Reaimua/AWS-CLI-Uploader-Project','','2024',0,'An educational repository containing custom scripts to automate file uploads to AWS S3 using raw AWS CLI calls. It is highly useful for junior developers learning API interactions, basic credential handling, and bucket policy permissions. Ideal as a simple reference base for shell scripting tutorials.','Shell','Repository','Beginner',0,'online','manual','d6159322d5eec32bc80e42fded054344b3be2c5785ac27ed74b1236e42380286',100.0,1779031808.41419,1,'2023-12-31T00:50:14Z',NULL,NULL,NULL,'["Cloud Platform", "AWS Infrastructure", "Storage Management"]','["[COMMUNITY-TOOL]"]','["docs/aws-tools-scripts.md"]','["aws-tools-scripts.md"]','{}','{"gh_stars": 1, "gh_pushed": "2023-12-31T00:50:14Z", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/ReallyLiri/kubescout','ReallyLiri/kubescout: Kube-Scout','','2021',2,'An event diagnostic utility that scans logs and cluster events to track down crashed pods and network failures. It features custom search syntax rules, allowing developers to filter alert noise.','Go','Diagnostic Agent','Intermediate',0,'online','manual','7846df0f9ad649d46e56fd856924400a4dafcfbefbc4c73825775adf74079c81',100.0,1.77903286971479606e+09,1,'2021-12-09T12:28:28Z',NULL,NULL,NULL,'["Observability & Performance", "Real-Time Monitoring", "Diagnostics"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2021-12-09T12:28:28Z", "gh_stars": 126}');
INSERT INTO "resources" VALUES('https://github.com/RedisLabs/redis-enterprise-k8s-docs','RedisLabs/redis-enterprise-k8s-docs: Deploying Redis Enterprise on Kubernetes','','2024',0,'Technical deployment documentation for organizing enterprise-grade Redis caches and document databases inside Kubernetes. Explains cluster layouts, memory configurations, security profiles, and automatic scaling capabilities.','HTML','Documentation','Intermediate',0,'online','manual','865451a522ca6b5112829fa9c02bcccd6767e74846035c5fe45ea49acf1e756f',100.0,1.77902947888322901e+09,1,'2026-06-17T19:44:05Z',NULL,NULL,NULL,'["Cloud Native", "Kubernetes Operators", "Redis"]','["[COMMUNITY-TOOL]"]','["docs/databases.md"]','["databases.md"]','{}','{"gh_stars": 170, "gh_pushed": "2026-06-17T19:44:05Z", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/Rested/portfall','Portfall: A desktop k8s port-forwarding portal for easy access to all your cluster UIs 🌟','','2024',5,'Portfall is a modern desktop application for managing Kubernetes port-forwarding configurations. Offers a convenient visual portal that eliminates repetitive manual CLI port-forward multiplexing during local service integrations.','JavaScript','Desktop Tool','Beginner',0,'online','manual','2d2e13ac904f4024effb4f4239dc0fb19196825668a1349e3b79c146360b84ae',100.0,1.7791304949686439e+09,1,'2023-03-06T17:30:12Z',NULL,NULL,NULL,'["Infrastructure & Platform", "Kubernetes Tooling", "Developer Experience"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2023-03-06T17:30:12Z", "gh_stars": 127}');
INSERT INTO "resources" VALUES('https://github.com/Retzork/terraform-journey/tree/main/11%20Multi%20Region%20Zero%20Trust%20Architecture','Terraform Azure Multi-Region Zero-Trust Architecture','Production-grade multi-region hub-and-spoke infrastructure deployment utilizing Front Door and Private Link.','2026',4,'An enterprise-grade architectural blueprint that implements a secure, multi-region (Southeast Asia and East Asia) hub-and-spoke network topology on Microsoft Azure. Engineered entirely through Terraform, it features integrated Azure Front Door Premium, Private Link Services, and Private Endpoints to ensure all traffic remains isolated from the public internet. It leverages custom Azure Policies to enforce private IP compliance on compute resources and implements automated SQL Auto-Failover Group resolution with cross-region DNS routing validation.','en','GitHub Repository','Advanced',0,'online','automatic','733c0b04f2cd47cabbe494748f623825382d2e5b046f4db48ac2ec41c3bf70b4',NULL,1.780352148493891e+09,0,'2026-06-02T00:15:48.493891+02:00',NULL,NULL,NULL,'["Cloud Architecture", "Azure", "Zero Trust", "Infrastructure as Code", "Terraform"]','["ENTERPRISE-STABLE", "GUIDE"]','[]','[]','{}','{"category": "azure", "reputation_status": "Vetted", "reputation_summary": "Highly vetted implementation of Microsoft Azure cloud architecture focusing on Hub-and-Spoke topology with strict private isolation.", "social_preview_url": "https://opengraph.githubassets.com/6d97e4b0bd8701041ce03a36a135a664b7fda8cb510574131b9870023e0d9129/Retzork/terraform-journey", "source_provenance": "X.com (nubenetes)", "suggested_new_category": "azure-iac"}');
INSERT INTO "resources" VALUES('https://github.com/RoseSecurity/Terramaid','==github.com/RoseSecurity/Terramaid==','','2023',1,'Terramaid auto-generates structured markdown document files by translating HCL topologies and complex dependency trees into Mermaid.js format. This allows systems teams to embed auto-updating, declarative system models within active Git code bases. It prevents outdated repository diagrams by tying documentation directly to code pipelines.','Go','Documentation Tool','Intermediate',0,'online','manual','fdc1002c98d4a4eabbea5d2e2738cb29925fd2ee6ead97800782b5781fe3ca40',100.0,1.77903375793716096e+09,1,'2026-06-11T23:35:21Z',NULL,NULL,NULL,'["Infrastructure as Code", "Visualization", "Documentation Generation"]','["[COMMUNITY-TOOL]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T23:35:21Z", "gh_stars": 5}');
INSERT INTO "resources" VALUES('https://github.com/SAP-archive/kubernetes-deployment-orchestrator','github: Kubernetes Deployment Orchestrator','','2021',1,'An archived, experimental orchestrator developed by SAP to coordinate complex Helm releases and dependency chains across large multi-tenant landscapes. Kept strictly as a historic design blueprint for modular platform workflows.','Go','CLI Tool','Advanced',0,'online','manual','cb51adc9ec040511c16e1fc898babebbe009035d419fbaf76c5bb3661d6397d5',100.0,1.77913049501123905e+09,1,'2023-03-01T11:37:12Z',NULL,NULL,NULL,'["Platform Engineering", "Kubernetes GitOps & Packaging", "Orchestration Utilities"]','["[EMERGING]", "[LEGACY]"]','["docs/helm.md"]','["helm.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-03-01T11:37:12Z", "gh_stars": 11}');
INSERT INTO "resources" VALUES('https://github.com/SAP/jenkins-library',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','b34245c60382e5fd68cee735a78fce12fae57bd37f797de410022f099c425202',100.0,1.77903283533721494e+09,0,'2026-05-17T17:47:15.337215+02:00',NULL,NULL,NULL,'[]','[]','["docs/jenkins.md"]','[]','{}','{}');
INSERT INTO "resources" VALUES('https://github.com/SAP/kubernetes-deployment-orchestrator','github: Kubernetes Deployment Orchestrator','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','198ce0a4229f9eccf84208128bb1f0022b948d731cce276e1a1e8064971f6342',100.0,1779032361.61413,0,'2026-05-17T17:39:21.614130+02:00',NULL,NULL,NULL,'[]','[]','["docs/helm.md"]','[]','{}','{"duplicate_of": "https://github.com/SAP-archive/kubernetes-deployment-orchestrator"}');
INSERT INTO "resources" VALUES('https://github.com/Salaboy/from-monolith-to-k8s','Salaboy/From Monolith to K8s','','2023',3,'A comprehensive practical blueprint mapping out the refactoring of monolithic architectures to Kubernetes-native services. Demonstrates key modernization steps including structural separation of services, data partitioning, and ingress configuration. This project is highly referenceable as a hands-on pedagogical resource for architectural transitions.','Java','Repository','Advanced',1,'online','manual','f4ad402920e19debc9fb733d9d0e70d0d427045add322ecea22a7dcf704f31ff',100.0,1.77903366384366107e+09,1,'2023-07-17T07:50:39Z',NULL,NULL,NULL,'["Cloud Native Architecture", "Microservices Migration", "Case Study"]','["[COMMUNITY-TOOL]"]','["docs/demos.md", "docs/java_frameworks.md"]','["java_frameworks.md", "demos.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-07-17T07:50:39Z", "gh_stars": 354}');
INSERT INTO "resources" VALUES('https://github.com/Saniewski/mongo-express-docker-extension','github.com/Saniewski/mongo-express-docker-extension','','2023',2,'A specialized Docker Desktop extension embedding Mongo Express tools into local engineering control panels. Streamlines administrative database actions, collection querying, and sandbox testing workflows.','TypeScript','repository','Intermediate',0,'online','manual','288d3f0cd2afa37afc6758f8e08d95ccce6680251f08d4be4b16b29ee1fbce6a',100.0,1.77902935660802388e+09,1,'2025-08-03T07:21:23Z',NULL,NULL,NULL,'["Containers", "Developer Tooling", "Database Extensions"]','["[COMMUNITY-TOOL]"]','["docs/docker.md"]','["docker.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2025-08-03T07:21:23Z", "gh_stars": 11}');
INSERT INTO "resources" VALUES('https://github.com/Shopify/kubeaudit','==github.com/Shopify/kubeaudit== 🌟🌟','','2023',4,'Shopify''s kubeaudit is a popular open-source tool targeting configuration analysis. Curators note its ability to audit running clusters or local manifests for root execution or privilege escalations. *Live Grounding (2026)*: The repository is archived/read-only, but its audit logic remains highly influential for policy structures.','Go','Repository','Intermediate',0,'online','manual','cc93106d19fc62264e4d57a74eba66432df37e6cb71ef2e73dd92cf1256d7dc2',100.0,1.77903258355871796e+09,1,'2024-08-21T18:48:27Z',NULL,NULL,NULL,'["Security", "Vulnerability Assessment", "Policy Enforcement"]','["[ENTERPRISE-STABLE]", "[LEGACY]"]','["docs/kubernetes-security.md"]','["kubernetes-security.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2024-08-21T18:48:27Z", "gh_stars": 1937}');
INSERT INTO "resources" VALUES('https://github.com/SigNoz/signoz','==SigNoz: Open source Application Performance Monitoring (APM) & Observability'' tool== 🌟','','2026',5,'A massive open-source APM and observability platform natively integrated with OpenTelemetry. Tracks telemetry, trace spans, metrics, and application logs in a unified, high-performance UI backed by ClickHouse. Widely recognized as a major open-source competitor to Datadog.','Go','Service','High',1,'online','manual','f2efb326383937b515d50315f2cef61e5c9eeef9e8ce161513a8b320e802936e',100.0,1.77903213500170588e+09,1,'2026-06-14T09:36:14Z',NULL,NULL,NULL,'["Observability", "APM & Metrics", "Observability Platform"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md", "docs/monitoring.md"]','["kubernetes-tools.md", "monitoring.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-14T09:36:14Z", "gh_stars": 27334}');
INSERT INTO "resources" VALUES('https://github.com/SimonTheLeg/konf-go','github.com/SimonTheLeg/konf-go','','2026',2,'Konf-go is a high-performance, lightweight kubeconfig manager written in Go, built to handle split config setups across hundreds of remote environments. It allows platform engineers to switch context, set default namespaces, and isolate config files without encountering slow latency. Its minimalist design is ideal for developers running terminal-based workspaces.','Go','CLI Tool','Beginner',0,'online','manual','6deaff9471dda21db30f9454efb5785d63b603fe367c0f2e2e961a649884dc0b',100.0,1.779030803551584e+09,1,'2025-03-15T19:19:18Z',NULL,NULL,NULL,'["Operations", "Context Management", "Local Development"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-03-15T19:19:18Z", "gh_stars": 180}');
INSERT INTO "resources" VALUES('https://github.com/SkalskiP/top-cvpr-2023-papers','github.com/SkalskiP/top-cvpr-2023-papers','','2023',5,'A curated reference hub detailing top-performing papers and breakthroughs from CVPR 2023. Synthesizes vital engineering advancements across object detection, visual language models, zero-shot segmentation libraries, and advanced neural representations.','English','Repository','Advanced',0,'online','manual','87b301d568f4cd4ef05b1ebdb66f71848b0fe9e270161c4ade2caebca047080f',100.0,1.77903408481230402e+09,1,'2026-04-15T11:20:09Z',NULL,NULL,NULL,'["Computer Vision", "Deep Learning Research", "CVPR"]','["[DE FACTO STANDARD]"]','["docs/ai.md"]','["ai.md"]','{}','{"gh_license": "CC0-1.0", "gh_pushed": "2026-04-15T11:20:09Z", "gh_stars": 647}');
INSERT INTO "resources" VALUES('https://github.com/Skarlso/crd-to-sample-yaml','github.com/Skarlso/crd-to-sample-yaml','','2025',1,'A specialized CLI tool designed to parse complex Kubernetes Custom Resource Definitions (CRDs) and automatically generate fully structured sample YAML configurations. It is highly beneficial for platform developers wanting to generate quick, accurate documentation.','Go','CLI Tool / Library','Intermediate',0,'online','manual','4552d618f2b5a0e6220c306beae3f65243503fe93f19299cc7bc1236758a1761',100.0,1.77903153832006907e+09,1,'2026-06-09T07:00:13Z',NULL,NULL,NULL,'["Development", "Custom Resources", "YAML Generation"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-09T07:00:13Z", "gh_stars": 194}');
INSERT INTO "resources" VALUES('https://github.com/Skyvern-ai/Skyvern','Skyvern','','2025',5,'Curator Insight: An AI-powered web browser automation agent designed to extract data and execute workflows on complex interfaces. Live Grounding: Translates plain-text instructions into resilient selenium-style interactions, dynamically adapting to DOM mutations and bypassing rigid selector patterns.','Python','Software','Advanced',0,'online','manual','8b4c78dae5d739cfef66496fd42be77abef34afff8f2af4a8173b90a200d2c5e',100.0,1.77902946676824498e+09,1,'2026-06-13T20:14:18Z',NULL,NULL,NULL,'["AI Engineering", "AI Agents", "Web Automation"]','["[DE FACTO STANDARD]"]','["docs/ai-agents-mcp.md"]','["ai-agents-mcp.md"]','{}','{"gh_license": "AGPL-3.0", "gh_pushed": "2026-06-13T20:14:18Z", "gh_stars": 21899}');
INSERT INTO "resources" VALUES('https://github.com/SparebankenVest/azure-key-vault-to-kubernetes','Azure Key Vault to Kubernetes','','2023',5,'The underlying GitHub repository for the `akv2k8s` project. Features Kubernetes Custom Resource Definitions (CRDs) like `AzureKeyVaultSecret` that run-loop to synchronize Azure credentials into physical Kubernetes secrets. Useful for architectures requiring strict backward compatibility with native Kubernetes secret bindings.','Go','Codebase','Advanced',0,'online','manual','135e9f8ac4bce72f2b4d186b8a1ef710288c2633b25dea25b52a8515aa2d2e62',100.0,1.77903314099700307e+09,1,'2026-06-10T06:30:31Z',NULL,NULL,NULL,'["Security", "Kubernetes Security", "Azure Integrations"]','["[DE FACTO STANDARD]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-10T06:30:31Z", "gh_stars": 452}');
INSERT INTO "resources" VALUES('https://github.com/SquadcastHub/awesome-sre-tools','SquadcastHub/awesome-sre-tools','','2026',3,'A structured index mapping tools for alert routing, synthetic checking, chaos validation, on-call scheduling, and postmortem generation. Ideal for configuring automated operational responses and reducing MTTR.','Markdown','Awesome List','Intermediate',1,'online','manual','01a69f479a0f80f0bbb8ad4b14088f1df9b56bfbed0e300acd1eb99e807d914a',100.0,1.7790303610473349e+09,1,'2026-05-13T10:06:49Z',NULL,NULL,NULL,'["Infrastructure & Operations", "Site Reliability Engineering", "Incident Management Tools"]','["[COMMUNITY-TOOL]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "CC-BY-4.0", "gh_pushed": "2026-05-13T10:06:49Z", "gh_stars": 1462, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/OpenShiftDemos/sonarqube-openshift-docker','SonarQube: An OpenShift-focused Docker build of Sonarqube','','2020',0,'A custom Docker build configuration designed to host SonarQube instances on OpenShift. Modern strategies prioritize official Helm charts or certified OpenShift Operator deployments, but this configuration highlights important historical patterns for handling stateful Java applications.','Dockerfile','Repository','Intermediate',0,'online','manual','a9ee6c819fbf57514a51b2f6a5bf5f5416f61b937a68e68994a52f1a656944d8',100.0,1.77903236153912305e+09,1,'2021-02-10T16:58:26Z',NULL,NULL,NULL,'["Platform Deployment", "Quality Assurance", "Static Code Analysis"]','["[COMMUNITY-TOOL]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_stars": 42, "gh_pushed": "2021-02-10T16:58:26Z", "gh_license": "N/A", "gh_open_issues_30d": 14, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:15.801633+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/OvidiuBorlean/kubectl-sockperf','github.com/OvidiuBorlean/kubectl-sockperf','','2022',0,'A specialized plugin designed to run sockperf-based latency and throughput tests between Kubernetes pods. Although a valuable benchmarking tool for network CNI evaluations, it is currently inactive, with administrators migrating to generalized benchmarking tools.','Shell','CLI Plugin','Advanced',0,'online','manual','65d38d11cedbadada703b554ac97eb0a8f7b02028e3076e551e7db83a0eb74fc',100.0,1.77903453141744899e+09,1,'2022-11-26T06:17:12Z',NULL,NULL,NULL,'["Operations", "CLI Tooling", "Network Testing"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_stars": 22, "gh_pushed": "2022-11-26T06:17:12Z", "gh_license": "N/A", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:16.522218+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/OvidiuBorlean/kubectl-windumps','github.com/OvidiuBorlean/kubectl-windumps','','2020',0,'A legacy kubectl command-line utility facilitating TCP packet captures directly on Windows Server nodes within AKS clusters. Live grounding shows the project has been inactive for several years, yet it serves as a valuable conceptual reference for troubleshooting deep network issues.','Go','Command-line Tool','Advanced',0,'online','manual','9765ffb4071f20a0203be3264c8b7e61ad18197ad7aba14270730d0d3bafe1ba',100.0,1.77903258731499195e+09,1,'2022-11-26T06:32:40Z',NULL,NULL,NULL,'["Operations & Troubleshooting", "Diagnostic Analysis", "Windows Packet Capture"]','["[LEGACY]"]','["docs/kubernetes-tools.md", "docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md", "kubernetes-tools.md"]','{}','{"gh_stars": 7, "gh_pushed": "2022-11-26T06:32:40Z", "gh_license": "N/A", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:17.233289+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/PacktPublishing/Kubernetes-in-Production-Best-Practices','github.com/PacktPublishing: Kubernetes in Production Best Practices','','2021',1,'Code assets companion for the Packt book, containing production-ready manifests for security hardening, automated deployments, monitoring stacks, and multi-tenant networking configurations.','Go','Repository','Advanced',0,'online','manual','25647a4cd596fb273c90f32a57f4565300218b7c9823576d32721d6ac353fc3d',100.0,1.77903272918548488e+09,1,'2023-02-18T02:57:45Z',NULL,NULL,NULL,'["Operations", "Best Practices", "Production Readiness"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes.md"]','["kubernetes.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2023-02-18T02:57:45Z", "gh_stars": 96, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:18.013386+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook','github.com/PacktPublishing/The-Azure-Cloud-Native-Architecture-Mapbook','','2022',5,'Architectural repository covering modern cloud design topologies, zero-trust cloud network security, infrastructure redundancy, microservice distribution, and cost models mapping.','None','Repository','Advanced',1,'online','manual','9cb5a24db068425b5a9b3f54920f4681885abd692339a358856a1f807c0355cc',100.0,1.77903373152726292e+09,1,'2026-04-22T08:18:15Z',NULL,NULL,NULL,'["Cloud Platform", "Architecture Patterns", "Cloud-Native"]','["[DE FACTO STANDARD]"]','["docs/azure.md"]','["azure.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-04-22T08:18:15Z", "gh_stars": 344, "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:18.767385+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/PacoVK/tapir','github.com/PacoVK/tapir','','2023',5,'An open-source utility designed to render interactive visual representations of Terraform execution plans. Helps teams review deep changes, resource recreations, and infrastructure impacts in a browser dashboard before approvals.','Go','Open Source Tool','Intermediate',0,'online','manual','0408ebd4347d9cbea83703d2b621fb52ddbfa52136b4566a850296d117098498',100.0,1.77903019320378589e+09,1,'2026-06-11T11:59:01Z',NULL,NULL,NULL,'["Infrastructure as Code", "Terraform", "Tooling"]','["[DE FACTO STANDARD]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T11:59:01Z", "gh_stars": 237, "gh_open_issues_30d": 27, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:19.492362+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/PaloAltoNetworks/rbac-police','PaloAltoNetworks/rbac-police','','2026',2,'RBAC Police is a specialized scanning tool built to discover and report privileged escalations and structural anomalies in Kubernetes cluster RBAC mappings. By analyzing cluster roles and bindings, it uncovers paths that malicious actors could use to gain administrative control. It remains an active security tool for hardening cluster control planes against lateral privilege escalation.','Go','Security Scanner','Intermediate',0,'online','manual','7a4101769a2c4d951f5d3e8f74b4047b8d7cffff4145536d035d862caad5d5f9',100.0,1.77903422950571393e+09,1,'2025-03-21T20:06:05Z',NULL,NULL,NULL,'["Security", "RBAC", "Audit & Compliance"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2025-03-21T20:06:05Z", "gh_stars": 353, "gh_open_issues_30d": 7, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:20.212905+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/PatrickJS/awesome-angular','Awesome Angular','','2026',5,'A comprehensive curated collection of modules, state management patterns (NgRx), and testing pipelines for the Angular framework. Primarily useful for frontend web development teams constructing large-scale enterprise administration panels and dashboard portals. Includes dynamic blueprints for client-side single page applications (SPAs).','TypeScript','Repository','Intermediate',0,'online','manual','65c9bdeb583596516752cfbd824c750bb7c1ccd93002f039aeda16c9053abff9',100.0,1.77903142310056209e+09,1,'2026-06-13T17:48:11Z',NULL,NULL,NULL,'["Programming Languages", "JavaScript", "Angular"]','["[DE FACTO STANDARD]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "CC0-1.0", "gh_pushed": "2026-06-13T17:48:11Z", "gh_stars": 10028, "is_special": true, "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:20.927396+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/PaulJuliusMartinez/jless','jless','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','0e8b0c2ced272da94ed5550dfb4f1feaa53c68b18b9123dad872d168ed82bf8c',100.0,1.77903450197825789e+09,1,'2026-05-17T18:15:01.978258+02:00',NULL,NULL,NULL,'[]','[]','["docs/yaml.md"]','[]','{}','{"gh_license": "MIT", "is_special": true, "gh_open_issues_30d": 94, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:34:21.658187+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/PhilippeChepy/exoscale-kubernetes-crio','Autoscalable Kubernetes cluster at Exoscale, using Packer and Terraform','','2020',0,'An IaC blueprint using Packer and Terraform to deploy an auto-scaling cluster on Exoscale with CRI-O. Curator Insight vs Live Grounding: The repository is now inactive, but serves as a historical example of orchestrating custom cloud pools with native container engines.','HCL/Packer','Repository','Advanced',0,'online','manual','67a3a62e1d56b7d24571f657b0bea6de22006bbb22a838d30b64f5bc7fa1283a',100.0,1.77902916568094706e+09,1,'2021-02-05T17:31:37Z',NULL,NULL,NULL,'["Provisioning", "Infrastructure-as-Code", "Exoscale"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-on-premise.md"]','["kubernetes-on-premise.md"]','{}','{"gh_stars": 2, "gh_pushed": "2021-02-05T17:31:37Z", "gh_license": "N/A", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:22.372672+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/PlasticSCM/trunk-mergebot','Plastic SCM DevOps Mergebot to implement a trunk-based development cycle','','2019',1,'An open-source reference implementation of Plastic SCM''s Trunk-based Development Mergebot. Designed to coordinate with automated continuous integration runners to perform automated merges, preventing development drifts.','C#','Tool','Intermediate',0,'online','manual','4fb1f52d49794ef82d619c094ff690294947d440768688fa18ef4dad5f172d0e',100.0,1.779031141462507e+09,1,'2023-01-03T12:27:34Z',NULL,NULL,NULL,'["Software Engineering", "Version Control", "Distributed VCS"]','["[COMMUNITY-TOOL]"]','["docs/git.md"]','["git.md"]','{}','{"gh_stars": 4, "gh_pushed": "2023-01-03T12:27:34Z", "gh_license": "N/A", "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:23.129070+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Playtika/testcontainers-spring-boot','testcontainers-spring-boot 🌟','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','6b1de1f1975806dd7d20766df714ba8586e0c6ca623ef75222537e7302ab56dc',100.0,1779032455.89641,0,'2026-05-17T17:40:55.896410+02:00',NULL,NULL,NULL,'[]','[]','["docs/java_frameworks.md", "docs/qa.md"]','[]','{}','{"duplicate_of": "https://github.com/PlaytikaOSS/testcontainers-spring-boot", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:23.782074+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/PlaytikaOSS/testcontainers-spring-boot','testcontainers-spring-boot 🌟','','2025',5,'A powerful open-source library that automates the lifecycle of Docker containers (PostgreSQL, Kafka, Redis) during JUnit test execution. It eliminates the need for shared database environments and mock frameworks, leading to high-fidelity integration tests. Today, this tool is universally recognized as a best-practice asset for CI/CD test suites across the Spring ecosystem.','Java','Library','Intermediate',0,'online','manual','32e228a0e653f153405793a48735c56293110687582775b12fd8e22da14c239c',100.0,1.77913049495672202e+09,1,'2026-06-14T04:50:08Z',NULL,NULL,NULL,'["Developer Experience", "Testing", "Integration Testing"]','["[DE FACTO STANDARD]"]','["docs/java_frameworks.md", "docs/qa.md"]','["java_frameworks.md", "qa.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-14T04:50:08Z", "gh_stars": 876, "gh_open_issues_30d": 38, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:24.542374+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Portshift/Kubei','Kubei 🌟','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','974f97dbec8aae433d1984e1ab2c41ce8519c60daacde65a2ec9a205684afda8',100.0,1.77903180072363901e+09,0,'2026-05-17T17:30:00.723639+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:25.218621+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Portshift/kubei','**Kubei**','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','974f97dbec8aae433d1984e1ab2c41ce8519c60daacde65a2ec9a205684afda8',100.0,1.77903001551521706e+09,0,'2026-05-17T17:00:15.515217+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"duplicate_of": "https://github.com/Portshift/Kubei", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:25.874115+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Praqma/helmsman','Helmsman: Helm Charts as Code 🌟','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','0f9d002d358ff471ce700abf16c261b6e563b0c25e1bbd45e240b9786e4a446b',100.0,1.77903205502643895e+09,0,'2026-05-17T17:34:15.026439+02:00',NULL,NULL,NULL,'[]','[]','["docs/helm.md"]','[]','{}','{"duplicate_of": "https://github.com/mkubaczyk/helmsman", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:26.524422+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/PrasadG193/kyaml2go','kyaml2go (Pronounced as camel2go 🐫) 🌟','','2024',5,'A code generator that converts static Kubernetes YAML configurations into functional client-go API syntax. Highly valuable for operator developers seeking to minimize manual client-go boilerplate code.','Go','Developer Tool','Intermediate',0,'online','manual','de3d8afc3d78ec62976c4c3894d4b2c21b403deb07fbf10082e0e4aafab733bf',100.0,1779031980.10928,1,'2021-11-09T11:31:04Z',NULL,NULL,NULL,'["Cloud Native & K8s", "Kubernetes API", "Code Generators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-client-libraries.md"]','["kubernetes-client-libraries.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2021-11-09T11:31:04Z", "gh_stars": 283, "gh_open_issues_30d": 4, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:27.245276+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Pscheidl/kubectl-explorer','Pscheidl/kubexplorer','','2021',1,'A lightweight, Rust-powered kubectl plugin styled like standard directory structure tree views. It allows developers to browse native Custom Resource Definitions (CRDs) and explore system schemas directly from their terminal.','Rust','CLI Tool','Low',0,'online','manual','52a47f8db982bb0f3baab72bd1b634e53e73672e27c0c09a8f376233ae822179',100.0,1.77913049499560189e+09,1,'2025-05-17T13:37:47Z',NULL,NULL,NULL,'["Developer Experience", "CLI Tools", "Cluster Discovery"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-05-17T13:37:47Z", "gh_stars": 61, "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:27.979144+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Pscheidl/kubexplorer','Pscheidl/kubexplorer','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','b562806c87a82618b3ca395fe614657ebb1b39f49aafd47797ee2838adf193b7',100.0,1.77903394814071798e+09,0,'2026-05-17T18:05:48.140718+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"duplicate_of": "https://github.com/Pscheidl/kubectl-explorer", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:28.612355+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/PyGithub/PyGithub','PyGithub 🌟','','2026',5,'A fully featured, object-oriented Python library designed to interact with the complete GitHub REST API v3 and GitHub Enterprise instances. Simplifies execution of automated repository operations, pull request management, security vulnerability reviews, and release deployment pipelines directly via Python applications.','Python','Library','Intermediate',0,'online','manual','2498211a8c67c5f675ec93e06ad44db7328be57d7eade3d3dae7ad8caa413438',100.0,1.77903013295484399e+09,1,'2026-06-12T09:31:14Z',NULL,NULL,NULL,'["Software Engineering", "API Integration", "GitHub Automation"]','["[DE FACTO STANDARD]"]','["docs/python.md"]','["python.md"]','{}','{"gh_license": "LGPL-3.0", "gh_pushed": "2026-06-12T09:31:14Z", "gh_stars": 7724, "gh_open_issues_30d": 396, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:34:29.354034+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/PyratLabs/ansible-role-k3s','github.com/PyratLabs/ansible-role-k3s 🌟','','2024',3,'Highly structured, modular Ansible role tailored for deploying K3s. Implements fine-grained host configuration and robust systemd lifecycle management over target K3s nodes.','YAML','github_repo','Intermediate',0,'online','manual','b90681d777b1b3fcf2f50b7a3c656e03e3cd10cbeed2564138e41ed412e7a864',100.0,1.77903179404259705e+09,1,'2026-05-17T14:22:22Z',NULL,NULL,NULL,'["Cloud Native & Orchestration", "Kubernetes", "Bootstrap & Cluster Ops"]','["[COMMUNITY-TOOL]"]','["docs/ansible.md"]','["ansible.md"]','{}','{"gh_license": "BSD-3-Clause", "gh_pushed": "2026-05-17T14:22:22Z", "gh_stars": 713, "gh_open_issues_30d": 3, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:30.120361+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Qovery/Torii','github.com/Qovery/Torii','','2024',1,'Torii is an open-source developer portal construction kit designed by Qovery. It provides customizable building blocks to easily curate, expose, and manage developer-facing interfaces, bridging complex infrastructure with human-readable operational catalogs.','TypeScript','Open Source Project','Intermediate',1,'online','manual','8f40d5792c2432c16743de893b3e78fd4875d95005edfac3dd7d407267b886ae',100.0,1.77903159215211701e+09,1,'2024-07-25T18:54:23Z',NULL,NULL,NULL,'["Platform Engineering", "IDP Tooling", "Developer Portals"]','["[COMMUNITY-TOOL]"]','["docs/devops.md"]','["devops.md"]','{}','{"gh_license": "GPL-3.0", "gh_pushed": "2024-07-25T18:54:23Z", "gh_stars": 178, "gh_open_issues_30d": 6, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:30.832105+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Qovery/engine','Qovery/engine: Qovery Engine 🌟','','2024',4,'Qovery Engine is a high-performance Rust-based library designed to provision and deploy applications on Kubernetes-based cloud infrastructure (AWS, GCP, Azure). Serving as the abstraction layer beneath the Qovery PaaS, it handles DNS, load balancers, database instances, and secure ingress configurations. It provides a developer-centric alternative to raw Helm or Terraform code.','Rust','Library','High',0,'online','manual','f8388e431919cbf792c57f9c55e77c67f2a3188d9dbd2d9042f99b469e94c405',100.0,1.77903378534738397e+09,1,'2026-06-12T12:57:05Z',NULL,NULL,NULL,'["Application Delivery", "Platform-as-a-Service", "Internal Developer Platforms"]','["[ENTERPRISE-STABLE]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "GPL-3.0", "gh_pushed": "2026-06-12T12:57:05Z", "gh_stars": 2446, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:31.565843+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Qovery/pleco','Qovery/pleco','','2024',2,'Pleco is an automated garbage collection utility that monitors cloud providers and Kubernetes clusters to delete stale, expired, or orphaned resources (such as EBS volumes, load balancers, and namespaces). It is widely utilized in dynamic test-environment setups to avoid unnecessary infrastructure expenses.','Go','CLI Tool','Medium',0,'online','manual','26703e33d15988bb18f88f699631753b77bbc01a3ae6c528138740edd0806343',100.0,1.77903445678252196e+09,1,'2026-05-19T15:01:33Z',NULL,NULL,NULL,'["Operations", "Garbage Collection", "Resource Cleanup"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-05-19T15:01:33Z", "gh_stars": 228, "gh_open_issues_30d": 3, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:32.322715+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Quentin-M/etcd-cloud-operator','Quentin-M/etcd-cloud-operator','','2022',5,'An early framework designed to coordinate etcd state engines in dynamic environments. Modern production setups have moved towards official cloud-provider tooling or alternative operators.','Go','Operator','Advanced',0,'online','manual','c035bbca5b1621abcf8db7fc9c70ce275fffafe66b882095112839ceb4e0e4b5',100.0,1.77903331409543704e+09,1,'2025-09-26T22:32:53Z',NULL,NULL,NULL,'["Infrastructure", "Control Plane", "etcd Coordination", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-09-26T22:32:53Z", "gh_stars": 234, "gh_open_issues_30d": 11, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:33.068682+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Radware/radware-ansible','Radware/radware-ansible: Radware Ansible Collection','','2023',1,'Specialized Ansible Content Collection optimized for provisioning and managing Radware networking nodes, load balancers, and cloud security suites programmatically.','Python','github_repo','Advanced',0,'online','manual','78e7074d642934692a21e143639f97f29f0fb05a756f551f9fcaf3073db61e3f',100.0,1.77902924347749304e+09,1,'2023-09-27T07:01:49Z',NULL,NULL,NULL,'["Automation & Orchestration", "Ansible Ecosystem", "Collections"]','["[COMMUNITY-TOOL]"]','["docs/ansible.md"]','["ansible.md"]','{}','{"gh_license": "GPL-3.0", "gh_pushed": "2023-09-27T07:01:49Z", "gh_stars": 10, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:33.793900+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Ramilito/kubediff','Ramilito/kubediff ⭐','','2023',1,'Kubediff is an operational helper designed to compare local structural Kubernetes resource configurations against running runtime instances. It acts as an validation sanity checker before executing apply commands, mitigating unintentional production configuration drifts.','Go','CLI Tool','Intermediate',0,'online','manual','1f0c6d67036c78fcc64323475433be29fb1db5472ef07e364334d49d6bb9ccc8',100.0,1.77903450004998588e+09,1,'2026-01-27T23:05:20Z',NULL,NULL,NULL,'["Operations", "Resource Management", "Configuration Auditing"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-01-27T23:05:20Z", "gh_stars": 185, "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:34.490611+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Ramilito/kubesess','Ramilito/kubesess','','2026',5,'A multi-session context manager that isolates Kubernetes session configs within split terminal tabs. Unlike default global switches, this Rust utility guarantees engineers can safely run separate commands targeting different zones and clusters simultaneously without cross-cluster command contamination.','Rust','Tool','Intermediate',0,'online','manual','d2a4d8e731cd0408d6a4f848093e6c4f8e92c9d3b876c9babafca131910ea0d8',100.0,1.77903078819058108e+09,1,'2026-03-19T04:43:36Z',NULL,NULL,NULL,'["Operations", "Session Management", "Context Isolation"]','["[DE FACTO STANDARD]"]','["docs/kubernetes.md"]','["kubernetes.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-03-19T04:43:36Z", "gh_stars": 284, "gh_open_issues_30d": 4, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:35.187592+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Reaimua/AWS-CLI-Uploader-Project','github.com/Reaimua/AWS-CLI-Uploader-Project','','2024',0,'An educational repository containing custom scripts to automate file uploads to AWS S3 using raw AWS CLI calls. It is highly useful for junior developers learning API interactions, basic credential handling, and bucket policy permissions. Ideal as a simple reference base for shell scripting tutorials.','Shell','Repository','Beginner',0,'online','manual','d6159322d5eec32bc80e42fded054344b3be2c5785ac27ed74b1236e42380286',100.0,1779031808.41419,1,'2023-12-31T00:50:14Z',NULL,NULL,NULL,'["Cloud Platform", "AWS Infrastructure", "Storage Management"]','["[COMMUNITY-TOOL]"]','["docs/aws-tools-scripts.md"]','["aws-tools-scripts.md"]','{}','{"gh_stars": 1, "gh_pushed": "2023-12-31T00:50:14Z", "gh_license": "N/A", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:35.905503+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/ReallyLiri/kubescout','ReallyLiri/kubescout: Kube-Scout','','2021',2,'An event diagnostic utility that scans logs and cluster events to track down crashed pods and network failures. It features custom search syntax rules, allowing developers to filter alert noise.','Go','Diagnostic Agent','Intermediate',0,'online','manual','7846df0f9ad649d46e56fd856924400a4dafcfbefbc4c73825775adf74079c81',100.0,1.77903286971479606e+09,1,'2021-12-09T12:28:28Z',NULL,NULL,NULL,'["Observability & Performance", "Real-Time Monitoring", "Diagnostics"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2021-12-09T12:28:28Z", "gh_stars": 126, "gh_open_issues_30d": 8, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:36.608015+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/RedisLabs/redis-enterprise-k8s-docs','RedisLabs/redis-enterprise-k8s-docs: Deploying Redis Enterprise on Kubernetes','','2024',0,'Technical deployment documentation for organizing enterprise-grade Redis caches and document databases inside Kubernetes. Explains cluster layouts, memory configurations, security profiles, and automatic scaling capabilities.','HTML','Documentation','Intermediate',0,'online','manual','865451a522ca6b5112829fa9c02bcccd6767e74846035c5fe45ea49acf1e756f',100.0,1.77902947888322901e+09,1,'2026-06-17T19:44:05Z',NULL,NULL,NULL,'["Cloud Native", "Kubernetes Operators", "Redis"]','["[COMMUNITY-TOOL]"]','["docs/databases.md"]','["databases.md"]','{}','{"gh_stars": 170, "gh_pushed": "2026-06-17T19:44:05Z", "gh_license": "N/A", "gh_open_issues_30d": 76, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:34:37.338883+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Rested/portfall','Portfall: A desktop k8s port-forwarding portal for easy access to all your cluster UIs 🌟','','2024',5,'Portfall is a modern desktop application for managing Kubernetes port-forwarding configurations. Offers a convenient visual portal that eliminates repetitive manual CLI port-forward multiplexing during local service integrations.','JavaScript','Desktop Tool','Beginner',0,'online','manual','2d2e13ac904f4024effb4f4239dc0fb19196825668a1349e3b79c146360b84ae',100.0,1.7791304949686439e+09,1,'2023-03-06T17:30:12Z',NULL,NULL,NULL,'["Infrastructure & Platform", "Kubernetes Tooling", "Developer Experience"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2023-03-06T17:30:12Z", "gh_stars": 127, "gh_open_issues_30d": 19, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:38.042306+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Retzork/terraform-journey/tree/main/11%20Multi%20Region%20Zero%20Trust%20Architecture','Terraform Azure Multi-Region Zero-Trust Architecture','Production-grade multi-region hub-and-spoke infrastructure deployment utilizing Front Door and Private Link.','2026',4,'An enterprise-grade architectural blueprint that implements a secure, multi-region (Southeast Asia and East Asia) hub-and-spoke network topology on Microsoft Azure. Engineered entirely through Terraform, it features integrated Azure Front Door Premium, Private Link Services, and Private Endpoints to ensure all traffic remains isolated from the public internet. It leverages custom Azure Policies to enforce private IP compliance on compute resources and implements automated SQL Auto-Failover Group resolution with cross-region DNS routing validation.','en','GitHub Repository','Advanced',0,'online','automatic','733c0b04f2cd47cabbe494748f623825382d2e5b046f4db48ac2ec41c3bf70b4',NULL,1.780352148493891e+09,0,'2026-06-02T00:15:48.493891+02:00',NULL,NULL,NULL,'["Cloud Architecture", "Azure", "Zero Trust", "Infrastructure as Code", "Terraform"]','["ENTERPRISE-STABLE", "GUIDE"]','[]','[]','{}','{"category": "azure", "reputation_status": "Vetted", "reputation_summary": "Highly vetted implementation of Microsoft Azure cloud architecture focusing on Hub-and-Spoke topology with strict private isolation.", "social_preview_url": "https://opengraph.githubassets.com/6d97e4b0bd8701041ce03a36a135a664b7fda8cb510574131b9870023e0d9129/Retzork/terraform-journey", "source_provenance": "X.com (nubenetes)", "suggested_new_category": "azure-iac", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:38.808405+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/RoseSecurity/Terramaid','==github.com/RoseSecurity/Terramaid==','','2023',1,'Terramaid auto-generates structured markdown document files by translating HCL topologies and complex dependency trees into Mermaid.js format. This allows systems teams to embed auto-updating, declarative system models within active Git code bases. It prevents outdated repository diagrams by tying documentation directly to code pipelines.','Go','Documentation Tool','Intermediate',0,'online','manual','fdc1002c98d4a4eabbea5d2e2738cb29925fd2ee6ead97800782b5781fe3ca40',100.0,1.77903375793716096e+09,1,'2026-06-11T23:35:21Z',NULL,NULL,NULL,'["Infrastructure as Code", "Visualization", "Documentation Generation"]','["[COMMUNITY-TOOL]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T23:35:21Z", "gh_stars": 5, "gh_open_issues_30d": 6, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:39.519589+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/SAP-archive/kubernetes-deployment-orchestrator','github: Kubernetes Deployment Orchestrator','','2021',1,'An archived, experimental orchestrator developed by SAP to coordinate complex Helm releases and dependency chains across large multi-tenant landscapes. Kept strictly as a historic design blueprint for modular platform workflows.','Go','CLI Tool','Advanced',0,'online','manual','cb51adc9ec040511c16e1fc898babebbe009035d419fbaf76c5bb3661d6397d5',100.0,1.77913049501123905e+09,1,'2023-03-01T11:37:12Z',NULL,NULL,NULL,'["Platform Engineering", "Kubernetes GitOps & Packaging", "Orchestration Utilities"]','["[EMERGING]", "[LEGACY]"]','["docs/helm.md"]','["helm.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-03-01T11:37:12Z", "gh_stars": 11, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:40.232476+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/SAP/jenkins-library',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','b34245c60382e5fd68cee735a78fce12fae57bd37f797de410022f099c425202',100.0,1.77903283533721494e+09,0,'2026-05-17T17:47:15.337215+02:00',NULL,NULL,NULL,'[]','[]','["docs/jenkins.md"]','[]','{}','{"gh_open_issues_30d": 61, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:34:40.984217+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/SAP/kubernetes-deployment-orchestrator','github: Kubernetes Deployment Orchestrator','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','198ce0a4229f9eccf84208128bb1f0022b948d731cce276e1a1e8064971f6342',100.0,1779032361.61413,0,'2026-05-17T17:39:21.614130+02:00',NULL,NULL,NULL,'[]','[]','["docs/helm.md"]','[]','{}','{"duplicate_of": "https://github.com/SAP-archive/kubernetes-deployment-orchestrator", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:41.639072+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Salaboy/from-monolith-to-k8s','Salaboy/From Monolith to K8s','','2023',3,'A comprehensive practical blueprint mapping out the refactoring of monolithic architectures to Kubernetes-native services. Demonstrates key modernization steps including structural separation of services, data partitioning, and ingress configuration. This project is highly referenceable as a hands-on pedagogical resource for architectural transitions.','Java','Repository','Advanced',1,'online','manual','f4ad402920e19debc9fb733d9d0e70d0d427045add322ecea22a7dcf704f31ff',100.0,1.77903366384366107e+09,1,'2023-07-17T07:50:39Z',NULL,NULL,NULL,'["Cloud Native Architecture", "Microservices Migration", "Case Study"]','["[COMMUNITY-TOOL]"]','["docs/demos.md", "docs/java_frameworks.md"]','["java_frameworks.md", "demos.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-07-17T07:50:39Z", "gh_stars": 354, "gh_open_issues_30d": 14, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:42.344118+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Saniewski/mongo-express-docker-extension','github.com/Saniewski/mongo-express-docker-extension','','2023',2,'A specialized Docker Desktop extension embedding Mongo Express tools into local engineering control panels. Streamlines administrative database actions, collection querying, and sandbox testing workflows.','TypeScript','repository','Intermediate',0,'online','manual','288d3f0cd2afa37afc6758f8e08d95ccce6680251f08d4be4b16b29ee1fbce6a',100.0,1.77902935660802388e+09,1,'2025-08-03T07:21:23Z',NULL,NULL,NULL,'["Containers", "Developer Tooling", "Database Extensions"]','["[COMMUNITY-TOOL]"]','["docs/docker.md"]','["docker.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2025-08-03T07:21:23Z", "gh_stars": 11, "gh_open_issues_30d": 18, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:43.059565+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Shopify/kubeaudit','==github.com/Shopify/kubeaudit== 🌟🌟','','2023',4,'Shopify''s kubeaudit is a popular open-source tool targeting configuration analysis. Curators note its ability to audit running clusters or local manifests for root execution or privilege escalations. *Live Grounding (2026)*: The repository is archived/read-only, but its audit logic remains highly influential for policy structures.','Go','Repository','Intermediate',0,'online','manual','cc93106d19fc62264e4d57a74eba66432df37e6cb71ef2e73dd92cf1256d7dc2',100.0,1.77903258355871796e+09,1,'2024-08-21T18:48:27Z',NULL,NULL,NULL,'["Security", "Vulnerability Assessment", "Policy Enforcement"]','["[ENTERPRISE-STABLE]", "[LEGACY]"]','["docs/kubernetes-security.md"]','["kubernetes-security.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2024-08-21T18:48:27Z", "gh_stars": 1937, "gh_open_issues_30d": 47, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:43.794855+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/SigNoz/signoz','==SigNoz: Open source Application Performance Monitoring (APM) & Observability'' tool== 🌟','','2026',5,'A massive open-source APM and observability platform natively integrated with OpenTelemetry. Tracks telemetry, trace spans, metrics, and application logs in a unified, high-performance UI backed by ClickHouse. Widely recognized as a major open-source competitor to Datadog.','Go','Service','High',1,'online','manual','f2efb326383937b515d50315f2cef61e5c9eeef9e8ce161513a8b320e802936e',100.0,1.77903213500170588e+09,1,'2026-06-14T09:36:14Z',NULL,NULL,NULL,'["Observability", "APM & Metrics", "Observability Platform"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md", "docs/monitoring.md"]','["kubernetes-tools.md", "monitoring.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-14T09:36:14Z", "gh_stars": 27334, "gh_open_issues_30d": 1518, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:34:44.521435+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/SimonTheLeg/konf-go','github.com/SimonTheLeg/konf-go','','2026',2,'Konf-go is a high-performance, lightweight kubeconfig manager written in Go, built to handle split config setups across hundreds of remote environments. It allows platform engineers to switch context, set default namespaces, and isolate config files without encountering slow latency. Its minimalist design is ideal for developers running terminal-based workspaces.','Go','CLI Tool','Beginner',0,'online','manual','6deaff9471dda21db30f9454efb5785d63b603fe367c0f2e2e961a649884dc0b',100.0,1.779030803551584e+09,1,'2025-03-15T19:19:18Z',NULL,NULL,NULL,'["Operations", "Context Management", "Local Development"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-03-15T19:19:18Z", "gh_stars": 180, "gh_open_issues_30d": 9, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:45.220920+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/SkalskiP/top-cvpr-2023-papers','github.com/SkalskiP/top-cvpr-2023-papers','','2023',5,'A curated reference hub detailing top-performing papers and breakthroughs from CVPR 2023. Synthesizes vital engineering advancements across object detection, visual language models, zero-shot segmentation libraries, and advanced neural representations.','English','Repository','Advanced',0,'online','manual','87b301d568f4cd4ef05b1ebdb66f71848b0fe9e270161c4ade2caebca047080f',100.0,1.77903408481230402e+09,1,'2026-04-15T11:20:09Z',NULL,NULL,NULL,'["Computer Vision", "Deep Learning Research", "CVPR"]','["[DE FACTO STANDARD]"]','["docs/ai.md"]','["ai.md"]','{}','{"gh_license": "CC0-1.0", "gh_pushed": "2026-04-15T11:20:09Z", "gh_stars": 647, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:45.930629+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Skarlso/crd-to-sample-yaml','github.com/Skarlso/crd-to-sample-yaml','','2025',1,'A specialized CLI tool designed to parse complex Kubernetes Custom Resource Definitions (CRDs) and automatically generate fully structured sample YAML configurations. It is highly beneficial for platform developers wanting to generate quick, accurate documentation.','Go','CLI Tool / Library','Intermediate',0,'online','manual','4552d618f2b5a0e6220c306beae3f65243503fe93f19299cc7bc1236758a1761',100.0,1.77903153832006907e+09,1,'2026-06-09T07:00:13Z',NULL,NULL,NULL,'["Development", "Custom Resources", "YAML Generation"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-09T07:00:13Z", "gh_stars": 194, "gh_open_issues_30d": 8, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:46.640861+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Skyvern-ai/Skyvern','Skyvern','','2025',5,'Curator Insight: An AI-powered web browser automation agent designed to extract data and execute workflows on complex interfaces. Live Grounding: Translates plain-text instructions into resilient selenium-style interactions, dynamically adapting to DOM mutations and bypassing rigid selector patterns.','Python','Software','Advanced',0,'online','manual','8b4c78dae5d739cfef66496fd42be77abef34afff8f2af4a8173b90a200d2c5e',100.0,1.77902946676824498e+09,1,'2026-06-13T20:14:18Z',NULL,NULL,NULL,'["AI Engineering", "AI Agents", "Web Automation"]','["[DE FACTO STANDARD]"]','["docs/ai-agents-mcp.md"]','["ai-agents-mcp.md"]','{}','{"gh_license": "AGPL-3.0", "gh_pushed": "2026-06-13T20:14:18Z", "gh_stars": 21899, "gh_open_issues_30d": 170, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:34:47.354924+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/SparebankenVest/azure-key-vault-to-kubernetes','Azure Key Vault to Kubernetes','','2023',5,'The underlying GitHub repository for the `akv2k8s` project. Features Kubernetes Custom Resource Definitions (CRDs) like `AzureKeyVaultSecret` that run-loop to synchronize Azure credentials into physical Kubernetes secrets. Useful for architectures requiring strict backward compatibility with native Kubernetes secret bindings.','Go','Codebase','Advanced',0,'online','manual','135e9f8ac4bce72f2b4d186b8a1ef710288c2633b25dea25b52a8515aa2d2e62',100.0,1.77903314099700307e+09,1,'2026-06-10T06:30:31Z',NULL,NULL,NULL,'["Security", "Kubernetes Security", "Azure Integrations"]','["[DE FACTO STANDARD]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-10T06:30:31Z", "gh_stars": 452, "gh_open_issues_30d": 96, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:34:48.092581+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/SquadcastHub/awesome-sre-tools','SquadcastHub/awesome-sre-tools','','2026',3,'A structured index mapping tools for alert routing, synthetic checking, chaos validation, on-call scheduling, and postmortem generation. Ideal for configuring automated operational responses and reducing MTTR.','Markdown','Awesome List','Intermediate',1,'online','manual','01a69f479a0f80f0bbb8ad4b14088f1df9b56bfbed0e300acd1eb99e807d914a',100.0,1.7790303610473349e+09,1,'2026-05-13T10:06:49Z',NULL,NULL,NULL,'["Infrastructure & Operations", "Site Reliability Engineering", "Incident Management Tools"]','["[COMMUNITY-TOOL]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "CC-BY-4.0", "gh_pushed": "2026-05-13T10:06:49Z", "gh_stars": 1462, "is_special": true, "gh_open_issues_30d": 13, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:48.855009+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/StackStorm','github.com/StackStorm','','2025',0,'Central repositories for the StackStorm platform containing internal event loops, action runners, rules-engine components, pack loaders, and comprehensive infrastructure orchestration drivers.','Python','Repository','Advanced',1,'online','manual','3f7ccfa19d22625be2d9b7cd3c7580f3ece6a9933c47cbd90ca9e80a756023e8',100.0,1.77903169699430608e+09,1,'2026-05-17T17:28:16.994306+02:00',NULL,NULL,NULL,'["DevOps", "Event-Driven Automation", "StackStorm"]','["[COMMUNITY-TOOL]"]','["docs/stackstorm.md"]','["stackstorm.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/StarpTech/k-andy','StarpTech/k-andy','','2021',2,'A consolidated project featuring curated Kubernetes deployment manifests and Helm configurations. Highlights patterns for bootstrapping monitoring stacks, storage drivers, and load-balancer integration with localized container configurations.','YAML','Repository','Intermediate',0,'online','manual','8028ee6f6d7bcd322f3b910996e2dfadb122caa55f7e520478ec1998cbb5fa18',100.0,1.77903379540551304e+09,1,'2022-08-26T11:42:32Z',NULL,NULL,NULL,'["Infrastructure as Code", "Kubernetes Management", "Infrastructure Blueprints"]','["[COMMUNITY-TOOL]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2022-08-26T11:42:32Z", "gh_stars": 157}');
INSERT INTO "resources" VALUES('https://github.com/Stono/kconmon','kmoncon','','2021',5,'A connection monitoring tool that tests internal and external cluster connectivity paths actively from the inside out. Dispatches continuous diagnostics metrics to trace latency, DNS resolution, and structural network failures across namespaces.','Node.js','Daemon','Intermediate',1,'online','manual','ddda947b53bf609166ee99149783bd488b2d33de7136b1c726d31f9ab0832238',100.0,1.77903449787452888e+09,1,'2024-03-26T18:13:32Z',NULL,NULL,NULL,'["Observability", "Cluster Monitoring", "Connectivity Checkers"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2024-03-26T18:13:32Z", "gh_stars": 287}');
INSERT INTO "resources" VALUES('https://github.com/SymbioticLab/Oobleck','github.com/SymbioticLab/Oobleck: Oobleck - Resilient Distributed Training'' Framework','','2024',2,'An open-source distributed training framework designed with native fault-tolerant characteristics. It mitigates expensive spot-instance preemption delays by dynamically and rapidly reorganizing parallel communication pipelines on-the-fly.','Python','Repository','Advanced',0,'online','manual','bb79fc1207725deae4ac4dfe99d1e9e94646f089545fa094170bc11fe5f89c2c',100.0,1.77903371428138589e+09,1,'2024-04-11T00:16:29Z',NULL,NULL,NULL,'["Machine Learning", "Distributed Training", "Fault Tolerance"]','["[COMMUNITY-TOOL]"]','["docs/mlops.md"]','["mlops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-04-11T00:16:29Z", "gh_stars": 100}');
INSERT INTO "resources" VALUES('https://github.com/TabularisDB/tabularis/blob/main/README.es.md','Tabularis: Open Source Desktop Client for Modern Databases with AI and MCP'' Integration','','2024',5,'An open-source desktop database client featuring Model Context Protocol (MCP) integrations. This compliance allows local LLMs to safely query, analyze, and update database schemas within strict user security boundaries.','Spanish','Repository','Intermediate',0,'online','manual','2fd2ed828f549425a756e5baa4d9e141e580901bb931bd5b128ea5f64b95ef7d',100.0,1.77903002123663091e+09,1,'2026-06-11T09:30:32Z',NULL,NULL,NULL,'["Software Engineering", "Database Management", "Model Context Protocol"]','["[DE FACTO STANDARD]"]','["docs/ai.md", "docs/databases.md", "docs/kubernetes-tools.md"]','["ai.md", "databases.md", "kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T09:30:32Z", "gh_stars": 2422}');
INSERT INTO "resources" VALUES('https://github.com/TerraHubCorp/terraform-google-automation-demo','Terraform Automation Demo using Google Cloud Provider','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','5d416772b5e31660626504b602f168033275d84d843c8d1038929f42a7699feb',100.0,1.77903315857390689e+09,0,'2026-05-17T17:52:38.573907+02:00',NULL,NULL,NULL,'[]','[]','["docs/demos.md"]','[]','{}','{"duplicate_of": "https://github.com/tfxor/terraform-google-automation-demo"}');
INSERT INTO "resources" VALUES('https://github.com/TheJambo/awesome-testing','Awesome Testing','','2026',5,'A highly practical directory highlighting testing paradigms, dynamic scanning modules, and manual/automated testing resources. Focuses on QA educational resources as well as modern test design techniques. Helps teams build scalable integration test harnesses within cloud workflows.','N/A','Repository','Beginner',0,'online','manual','4062ce50038ba4c743409acf34e287f9c89b47ae354cd679f7ac8fecc5b8acd2',100.0,1.77903065377558898e+09,1,'2026-06-11T23:34:02Z',NULL,NULL,NULL,'["Software Quality", "Testing", "QA"]','["[DE FACTO STANDARD]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "CC0-1.0", "gh_pushed": "2026-06-11T23:34:02Z", "gh_stars": 2289, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/TheYkk/synator','Synator Kubernetes Secret and ConfigMap synchronizer 🌟','','2022',2,'An operator designed to automatically synchronize Secrets and ConfigMaps across multiple Kubernetes namespaces. It listens for resource updates tagged with specific annotations and pushes changes cluster-wide, eliminating operational overhead.','Python','Operator','Intermediate',1,'online','manual','7b5fd02ea60b8513386203f3d14c32181ac7ae917998e2ab6ee7df1320f21c5c',100.0,1779031302.74327,1,'2024-01-16T12:30:42Z',NULL,NULL,NULL,'["Security & Identity", "Configuration Management", "Sync Controllers"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2024-01-16T12:30:42Z", "gh_stars": 117}');
INSERT INTO "resources" VALUES('https://github.com/Thiht/smocker','Smocker (server mock) is a simple and efficient HTTP mock server','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','fb4cb099148f737393a4c3e8baa1bbdc2306c96e276c2453da62b48784781fca',100.0,1.77903192815747809e+09,0,'2026-05-17T17:32:08.157478+02:00',NULL,NULL,NULL,'[]','[]','["docs/testops.md"]','[]','{}','{"duplicate_of": "https://github.com/smocker-dev/smocker"}');
INSERT INTO "resources" VALUES('https://github.com/TrackMaven/getting-started-with-drf-angular/tree/part-2','Part 2 Supplementary Code','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','a45c1b5a401a34bb5cdad3a04ab5c3560fb0e84a78796dcd4514d4b44e27a7ca',100.0,1.77903182749679803e+09,1,'2026-05-17T17:30:27.496798+02:00',NULL,NULL,NULL,'[]','[]','["docs/python.md"]','[]','{}','{}');
INSERT INTO "resources" VALUES('https://github.com/Trendyol/kink','Trendyol/kink','','2021',2,'KinK (Kubernetes in KinD) facilitates running KinD (Kubernetes in Docker) clusters directly inside existing Kubernetes environments. It is ideal for nested testing topologies, advanced operators, and ephemeral CI/CD platforms.','Go','Testing Utility','Advanced',0,'online','manual','3fa87e5b5f9c29897a36a31ab467825539bc7ac0d098011a2eefb908715b407f',100.0,1779029111.29616,1,'2025-09-25T13:15:32Z',NULL,NULL,NULL,'["Development & Testing", "Cluster-in-Cluster", "Kubernetes in Kubernetes"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-09-25T13:15:32Z", "gh_stars": 383}');
INSERT INTO "resources" VALUES('https://github.com/Trendyol/kubectl-view-webhook','kubectl-view-webhook 🌟','','2023',5,'A high-utility kubectl plugin created to list, audit, and visualize Mutating and Validating Admission Webhooks across clusters. It simplifies debugging of webhooks by outlining exactly which API endpoints are called during cluster operations. Widely adopted by platform operators tracing webhook performance bottle-necks.','Go','CLI Plugin','Low',0,'online','manual','ec25b6a93a8a7bede199d669bbe05f0a168d6201da15746d739843d60e1fdd21',100.0,1.77903053909479498e+09,1,'2023-02-17T19:37:35Z',NULL,NULL,NULL,'["Operations", "Command Line Tools", "Webhook Visualization"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-02-17T19:37:35Z", "gh_stars": 108}');
INSERT INTO "resources" VALUES('https://github.com/Trolley-MGMT/trolleymgmt','github.com/Trolley-MGMT/trolleymgmt','','2023',5,'Trolley-MGMT is a control plane assistant designed to coordinate multi-cluster ingress routing and traffic mapping. It simplifies workload migrations and network path resolution across physical boundaries. It offers a lightweight model for traffic management without full mesh overhead.','Go','Controller','Advanced',0,'online','manual','d45c38de299f761f5ca847cff638c0b0aa16385c7ad32baed1ee998211cfc9d1',100.0,1.77903447727763104e+09,1,'2023-09-20T13:29:58Z',NULL,NULL,NULL,'["Network & Connectivity", "Multi-Cluster Routing", "Traffic Engineering"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-09-20T13:29:58Z", "gh_stars": 113}');
INSERT INTO "resources" VALUES('https://github.com/Tronde/ansible-role-rhel-patchmanagement','Tronde/ansible-role-rhel-patchmanagement','','2023',2,'A community-contributed Ansible role designed to streamline patch management workflows across Red Hat Enterprise Linux (RHEL) architectures. Enables system updates, security errata auditing, and automated reboot coordination.','YAML','Role','Intermediate',0,'online','manual','4514ee147f14dcb5ce787276dcd932645364041d9d6cfedb8be11d13b6c8ce4a',100.0,1.77902971525625801e+09,1,'2022-08-17T09:45:19Z',NULL,NULL,NULL,'["Infrastructure as Code", "Ansible", "System Patching"]','["[COMMUNITY-TOOL]"]','["docs/ansible.md"]','["ansible.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2022-08-17T09:45:19Z", "gh_stars": 75}');
INSERT INTO "resources" VALUES('https://github.com/UnderGreen/ansible-prometheus-node-exporter','github.com/UnderGreen/ansible-prometheus-node-exporter','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','267c4a5a22b8f13e0dd4d841f28bc792623b0e71ce2d0d52ff65594e9557af40',100.0,1779030605.59223,1,'2026-05-17T17:10:05.592230+02:00',NULL,NULL,NULL,'[]','[]','["docs/prometheus.md"]','[]','{}','{"gh_license": "GPL-2.0"}');
INSERT INTO "resources" VALUES('https://github.com/Unitech/pm2','PM2','','2026',5,'An industry-standard production process manager for Node.js workloads. Despite the rise of Kubernetes-native process management, PM2 remains the preferred daemon for bare-metal Node.js apps, VM-based services, and IoT microservices running at the edge in 2026.','JavaScript','Repository','Beginner',1,'online','manual','475da0c52dd00c9a32421d48794c494e6a4433d27fc1094d97e7e7d0a9e999c4',100.0,1.77903303755152797e+09,1,'2026-05-21T09:14:07Z',NULL,NULL,NULL,'["Development", "Runtime", "Node.js"]','["[DE FACTO STANDARD]"]','["docs/monitoring.md"]','["monitoring.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-05-21T09:14:07Z", "gh_stars": 43210}');
INSERT INTO "resources" VALUES('https://github.com/VictoriaMetrics/operator','VictoriaMetrics/operator','','2024',5,'Coordinates components of VictoriaMetrics (including VMCluster and VMAgent). It manages complex metrics scraping rules and automates long-term TSDB storage scaling.','Go','Operator','Advanced',0,'online','manual','2d4789b290a170c9730e66d1a451dca9696340d3fb570a83ec97e5c2065352f3',100.0,1.77903302531226801e+09,1,'2026-06-14T07:05:30Z',NULL,NULL,NULL,'["Observability", "Metrics", "TimeSeries Databases", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-14T07:05:30Z", "gh_stars": 566}');
INSERT INTO "resources" VALUES('https://github.com/Vigneshwari-08/Server_Log-Analyzer-Intrusion-Detector','Server Log Analyzer and Intrusion Detector','A Python-based log analysis tool designed to parse server logs and detect security anomalies/intrusions.','2023',4,'Server Log Analyzer and Intrusion Detector is a security utility designed to ingest and parse server log files to identify suspicious behavior, brute-force patterns, and malicious activities. Leveraging customizable regular expression filters and Python-based parser logic, the tool maps security threats, generates analytical summaries, and flags potential security intrusions. This represents a lightweight, extensible script for automating manual security review workflows in staging or small-scale host setups.','English','Repository','Intermediate',0,'online','automatic','a43045c01ffddec417eaf59ffcaf69e4b396a52288a3504236613b00abe14b0d',NULL,1.7803520036898539e+09,0,'2026-06-02T00:13:23.689854+02:00',NULL,NULL,NULL,'["Security", "Log Analysis", "Intrusion Detection"]','["[COMMUNITY-TOOL]", "[GUIDE]"]','[]','[]','{}','{"category": "devsecops", "reputation_status": "Vetted", "reputation_summary": "A lightweight, community-oriented utility used primarily for educational security projects or small hosting servers to check patterns of unauthorized access.", "social_preview_url": "https://opengraph.githubassets.com/4644e9f6708ce656bb8601f280246206a37cfcb5f4781d70bfb6afbbe6d2787c/Vigneshwari-08/Server_Log-Analyzer-Intrusion-Detector", "source_provenance": "X.com (nubenetes)", "suggested_new_category": ""}');
INSERT INTO "resources" VALUES('https://github.com/VikParuchuri/surya','github.com/VikParuchuri/surya','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','1bcfe1599f12fbc0f1c286bcae888e415e4a4ca273920893162374e77c0dafa1',100.0,1.779032228106817e+09,0,'2026-05-17T17:37:08.106817+02:00',NULL,NULL,NULL,'[]','[]','["docs/mlops.md"]','[]','{}','{"duplicate_of": "https://github.com/datalab-to/surya"}');
INSERT INTO "resources" VALUES('https://github.com/Wilfred/difftastic','==github.com/Wilfred/difftastic==','','2021',5,'Difftastic is a structural diff tool that compares source files based on their abstract syntax trees (ASTs). For platform teams, it filters out noise like formatting shifts in Kubernetes manifests and highlights genuine semantic changes. It dramatically increases review speeds for complex changes.','Rust','CLI Tool','Intermediate',0,'online','manual','4d74d1860ada6c88910ee8233af26ab96593491adbf0fc1fe0babbdd2d894227',100.0,1.77903068341413497e+09,1,'2026-06-12T21:38:09Z',NULL,NULL,NULL,'["GitOps & Delivery", "Configuration Management", "Developer Productivity"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-12T21:38:09Z", "gh_stars": 25487}');
INSERT INTO "resources" VALUES('https://github.com/William-Yeh/ansible-prometheus','github.com/William-Yeh/ansible-prometheus','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','0af505c06542722a2ed175962d2a7db86448f9885e230047684d5c4b88d02b52',100.0,1.77903295307397198e+09,1,'2026-05-17T17:49:13.073972+02:00',NULL,NULL,NULL,'[]','[]','["docs/prometheus.md"]','[]','{}','{"gh_license": "MIT"}');
INSERT INTO "resources" VALUES('https://github.com/XI-lab/PyExPool','Python Multi-Process Execution Pool','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','fab939ac4014af479885a8ef4424fbe5c02e011461b5675af52924e0029de292',100.0,1.77903421792122697e+09,0,'2026-05-17T18:10:17.921227+02:00',NULL,NULL,NULL,'[]','[]','["docs/python.md"]','[]','{}','{"duplicate_of": "https://github.com/eXascaleInfolab/PyExPool"}');
INSERT INTO "resources" VALUES('https://github.com/XingangPan/DragGAN','github.com/XingangPan/DragGAN','','2023',5,'An interactive GAN-based image manipulation system. Users drag specific control points of an image to dynamically alter object dimensions, poses, and facial structures.','English','Repository','Advanced',0,'online','manual','fab022b2fe0509e5278ad44feab31ba191e4418eb31ed1bd711d28bcf167db08',100.0,1779029629.12279,1,'2024-05-18T17:51:40Z',NULL,NULL,NULL,'["Computer Vision", "Deep Learning Research", "Generative AI"]','["[DE FACTO STANDARD]"]','["docs/ai.md"]','["ai.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2024-05-18T17:51:40Z", "gh_stars": 35825}');
INSERT INTO "resources" VALUES('https://github.com/XtratusCloud/terraform-provider-azureipam','Terraform Provider for Azure IPAM','','2024',5,'Custom open-source Terraform provider built to automate cloud IP address allocation directly from centralized Azure IPAM solutions. Ensures smooth networking configuration inside containerized setups.','Go','Repository','Advanced',0,'online','manual','fef93304fb0712339d6419f8667f224c0f1def83a862253dff0d4f763f37686d',100.0,1.77903019978273105e+09,1,'2024-09-21T06:31:41Z',NULL,NULL,NULL,'["Infrastructure as Code", "Terraform Providers", "Azure IPAM"]','["[DE FACTO STANDARD]"]','["docs/azure.md", "docs/iac.md", "docs/terraform.md"]','["azure.md", "iac.md", "terraform.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-09-21T06:31:41Z", "gh_stars": 10}');
INSERT INTO "resources" VALUES('https://github.com/XuehaiPan/nvitop','==github.com/XuehaiPan/nvitop== 🌟','','2024',4,'An interactive, terminal-based GPU monitoring tool that acts as a modern replacement for nvidia-smi. It provides real-time tracking of GPU resource consumption, memory configurations, process owners, and historical usage diagrams directly in the shell.','Python','Repository','Beginner',0,'online','manual','4072dada8ec4fc2bb58f1e44395a93a2e0622ffbad6870ddf4d65c930df1d094',100.0,1.77903333951961898e+09,1,'2026-05-25T13:47:09Z',NULL,NULL,NULL,'["Infrastructure", "GPU Monitoring", "Command Line Tools"]','["[ENTERPRISE-STABLE]"]','["docs/mlops.md"]','["mlops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-05-25T13:47:09Z", "gh_stars": 6957}');
INSERT INTO "resources" VALUES('https://github.com/YannickRe/msgraph-utility-scripts','YannickRe/msgraph-utility-scripts','','2023',2,'A public repository compiling specialized utility files designed to interact with MS Graph endpoints. Facilitates typical administrator chores like account auditing and system migration tasks.','PowerShell','GitHub Repository','Intermediate',0,'online','manual','3f290e857fcc6afc146a55c2ff426e8ea4bb4b378964975b7e05992740bb4bbf',100.0,1.7790313934104371e+09,1,'2021-05-27T06:29:15Z',NULL,NULL,NULL,'["Identity and Access", "Microsoft Graph API", "Utility Scripts", "Automation Resources"]','["[COMMUNITY-TOOL]"]','["docs/azure.md"]','["azure.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2021-05-27T06:29:15Z", "gh_stars": 8}');
INSERT INTO "resources" VALUES('https://github.com/a8m/golang-cheat-sheet','github.com: golang-cheat-sheet','','2025',0,'A high-density Go reference database. It details Go core syntaxes, standard library definitions, channels, interface rules, and concurrency patterns to accelerate systems-level software development.','Go','Cheat Sheet','Advanced',0,'online','manual','fa235c920c2a052cbdc6ec594a298ac0f6f1bcc878eae3571214762df19c2ec1',100.0,1.77903208079353189e+09,1,'2023-11-08T10:46:16Z',NULL,NULL,NULL,'["Software Engineering", "Languages", "Go"]','["[ENTERPRISE-STABLE]"]','["docs/cheatsheets.md", "docs/golang.md"]','["golang.md", "cheatsheets.md"]','{}','{"gh_stars": 8800, "gh_pushed": "2023-11-08T10:46:16Z", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/aabouzaid/kubech','kubech (kubectl change)','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','11ed16e65ddcf82ef74baf50412897b3a6289b43d554b81516f5144f6391e7a7',100.0,1.77903139352439689e+09,0,'2026-05-17T17:23:13.524397+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"duplicate_of": "https://github.com/DevOpsHiveHQ/kubech"}');
INSERT INTO "resources" VALUES('https://github.com/aalmiray/q-cli','aalmiray/q-cli','','2020',1,'An early community command-line interface helper for bootstrapping and managing Quarkus projects. While the official Quarkus CLI eventually integrated these capabilities, this repository represents a pivotal step in Quarkus DX history.','Java','Repository','Beginner',0,'online','manual','30248eeb96ffad2fb930bf0fe36a0d4da972f64119691940f2c5c16b4c573681',100.0,1779030019.49551,1,'2022-11-02T16:43:54Z',NULL,NULL,NULL,'["Developer Tools", "Quarkus CLI", "Local Development"]','["[COMMUNITY-TOOL]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2022-11-02T16:43:54Z", "gh_stars": 11}');
INSERT INTO "resources" VALUES('https://github.com/aarondl/sqlboiler','volatiletech/sqlboiler','','2025',4,'Curator Insight frames SQLBoiler as a database-first generator tool producing type-safe Go ORM code from database schemas. Live Grounding confirms its widespread production usage where performance and strict static typing are preferred over runtime-reflective ORMs like GORM.','English','Repository','Advanced',0,'online','manual','fe922b04a8f76d728e527c3e1619705c5676ba8dca4d29ebadfd32c716dba516',100.0,1.77913049498287796e+09,1,'2026-06-08T22:47:58Z',NULL,NULL,NULL,'["Database", "ORM", "Go Libraries"]','["[ENTERPRISE-STABLE]"]','["docs/golang.md"]','["golang.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-08T22:47:58Z", "gh_stars": 6990}');
INSERT INTO "resources" VALUES('https://github.com/abahmed/kwatch','==abahmed/kwatch==','','2021',3,'A real-time error monitor and alert router that monitors Kubernetes logs and pod events. When crash loops occur, it streams exact logs and statuses to systems like Slack, Teams, or custom webhooks.','Go','Kubernetes Operator','Intermediate',1,'online','manual','701ef11432421abc27ce038312f4098feb632c5d4e16e811e756b8336ab061b4',100.0,1.77903046235415601e+09,1,'2026-06-14T10:00:44Z',NULL,NULL,NULL,'["Observability & Performance", "Real-Time Monitoring", "Error Alerting"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-14T10:00:44Z", "gh_stars": 1010}');
INSERT INTO "resources" VALUES('https://github.com/abessifi/ansible-sqlplus','github.com/abessifi/ansible-sqlplus','','2021',2,'A lightweight community-focused Ansible module enabling seamless SQL*Plus shell operations within automated tasks. It allows DBAs to execute SQL and PL/SQL scripts without writing complex shell wrappers. It serves as an ad-hoc query execution tool for classic on-premises database systems.','Python','tool','intermediate',0,'online','manual','25b254c33750830b281c2fa6649b74eb2a90efd5966bee568a9cdc4c4a98ed65',100.0,1.77903413958544302e+09,1,'2019-03-20T06:57:44Z',NULL,NULL,NULL,'["Infrastructure as Code", "Ansible", "Database Deployment"]','["[COMMUNITY-TOOL]"]','["docs/ansible.md"]','["ansible.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2019-03-20T06:57:44Z", "gh_stars": 1}');
INSERT INTO "resources" VALUES('https://github.com/abhirockzz/kubexpose-operator','abhirockzz/kubexpose-operator','','2021',0,'An experimental Go-based operator designed to automatically create Ingress resources or load balancers for annotated services. Designed as a learning showcase for Kubebuilder workflows, this project is archived in 2026 but remains a valuable reference for custom ingress generation patterns.','Go','Kubernetes Operator','Medium',0,'online','manual','af604f168ab50f3712a4d5e6e0edc26a37919202353108225cfa8adad87f1ad9',100.0,1.78173604678917288e+09,1,'2026-06-18T00:40:46.789173+02:00',NULL,NULL,NULL,'["Networking", "Operator", "Expose Service"]','["[EMERGING]", "[LEGACY]"]','["docs/kubernetes-operators-controllers.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "kubernetes-operators-controllers.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/abhishek-ch/around-dataengineering','github: A very Long never ending Learning around Data Engineering & Machine'' Learning','','2023',2,'A comprehensive curated repository documenting data engineering pipelines, distributed computing principles, and machine learning foundations. It aggregates core concepts of large-scale data systems, covering ingest-to-model-delivery workflows. Essential for developers transitioning from traditional software engineering to data-intensive systems.','Python','Repository','Intermediate',0,'online','manual','f930ab3635d81634c313246122368bc66abc84911c6b1c41982bf56250b05273',100.0,1.7817360914302349e+09,1,'2026-06-18T00:41:31.430235+02:00',NULL,NULL,NULL,'["Data Engineering", "Learning Roadmap", "Machine Learning"]','["[COMMUNITY-TOOL]"]','["docs/mlops.md", "docs/other-awesome-lists.md"]','["mlops.md", "other-awesome-lists.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/aca/go-kubectx','go-kubectx','','2022',0,'A high-performance, Go-native alternative port of the traditional kubectx script. Focuses on speed and execution efficiency when searching and switching between hundreds of active Kubernetes cluster profiles.','Go','CLI Tool','Beginner',0,'online','manual','be952c70d70097b957944cda76e72020789653233dc2985806989e52416675c2',100.0,1.78173604674044108e+09,1,'2026-06-18T00:40:46.740441+02:00',NULL,NULL,NULL,'["Developer Experience", "CLI Utilities", "Context Management"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/acantril/learn-cantrill-io-labs','github.com/acantril/learn-cantrill-io-labs','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','3e6603ced2648ecd72569d6c06c2883e6124acc1ad1af3c4162355af79b0a829',100.0,1.779031389407485e+09,1,'2026-05-17T17:23:09.407485+02:00',NULL,NULL,NULL,'[]','[]','["docs/aws-training.md"]','[]','{}','{"gh_license": "MIT"}');
INSERT INTO "resources" VALUES('https://github.com/acidonper/jump-app-docs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','f743c3f06eb6de0347c96663c2485b27061d6c694090c1dfdb7d910abdb7228f',100.0,1.77902993938969707e+09,0,'2026-05-17T16:58:59.389697+02:00',NULL,NULL,NULL,'[]','[]','["docs/demos.md"]','[]','{}','{}');
INSERT INTO "resources" VALUES('https://github.com/acidonper/jump-app-gitops',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','9df86ddeab85d5e49fe8e68c05013e8ca8ba59b65df2f3b91abb618d1f6d6f1f',100.0,1.77903024906080794e+09,0,'2026-05-17T17:04:09.060808+02:00',NULL,NULL,NULL,'[]','[]','["docs/demos.md"]','[]','{}','{}');
INSERT INTO "resources" VALUES('https://github.com/acorn-io/acorn','acorn-io/acorn','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','1606eafe22401d318436f235433ded3b934cfa77ab978a922eb40436d02db510',100.0,1.77903308893226289e+09,0,'2026-05-17T17:51:28.932263+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"duplicate_of": "https://github.com/obot-platform/obot"}');
INSERT INTO "resources" VALUES('https://github.com/actions-runner-controller/actions-runner-controller','actions-runner-controller 🌟','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','e0b81792621a3f351f640bbf07601f3cbc5efdefbb09a7cdce88ae3ced404fdf',100.0,1.77903093210913896e+09,0,'2026-05-17T17:15:32.109139+02:00',NULL,NULL,NULL,'[]','[]','["docs/git.md"]','[]','{}','{"duplicate_of": "https://github.com/actions/actions-runner-controller"}');
INSERT INTO "resources" VALUES('https://github.com/actions/actions-runner-controller','github.com/actions/actions-runner-controller 🌟','','2020',5,'Official Kubernetes operator designed to manage self-hosted GitHub Actions runner infrastructure dynamically. Integrates natively with Horizontal Pod Autoscaler (HPA) targets to scale runner deployments in response to webhook event metrics.','Go','Repository','Advanced',1,'online','manual','e0b81792621a3f351f640bbf07601f3cbc5efdefbb09a7cdce88ae3ced404fdf',100.0,1.77903365856200289e+09,1,'2026-06-12T23:13:55Z',NULL,NULL,NULL,'["CI/CD Pipeline", "Kubernetes & Containers", "Self-Hosted Infrastructure"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["git.md", "jenkins-alternatives.md", "kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T23:13:55Z", "gh_stars": 6298}');
INSERT INTO "resources" VALUES('https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet','Markdown Cheat Sheet 4','','2026',5,'One of the most starred and utilized Markdown references on GitHub. Curator Insight emphasizes its extreme offline utility. Live Grounding validates its legacy status as the primary standard for formatting across modern source code platforms.','Markdown','Cheat Sheet','Beginner',0,'online','manual','ba965aba47f46c891f98b4125d49af98b9dbc1aba0abd75215f289ea8d8600c8',100.0,1.77903296915447211e+09,1,'2025-08-22T00:21:50Z',NULL,NULL,NULL,'["Software Development", "Documentation Tools", "Markdown"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/cheatsheets.md", "docs/mkdocs.md"]','["mkdocs.md", "cheatsheets.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2025-08-22T00:21:50Z", "gh_stars": 60214}');
INSERT INTO "resources" VALUES('https://github.com/adaptant-labs/k8s-auto-labeller','Kubernetes Node Auto Labeller','','2020',5,'An automated labeling controller designed to tag Kubernetes nodes dynamically based on custom configurations or hardware discoveries. In production, this allows platform engineers to target hardware accelerators (GPUs, ASICs) with specific workload nodeSelectors. Live evaluation shows low active maintenance, as many teams transitioned to Node Feature Discovery (NFD) or Cluster API capabilities.','Go','Operator','Medium',0,'online','manual','24ec81ac9e8ac36b38e924eda1e90e1616919f7f8406b3879700f8e30a4c7f49',100.0,1.77903275467909502e+09,1,'2020-11-16T19:46:39Z',NULL,NULL,NULL,'["Infrastructure", "Node Provisioning", "Labeling & Automation"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2020-11-16T19:46:39Z", "gh_stars": 8}');
INSERT INTO "resources" VALUES('https://github.com/adaptant-labs/k8s-dt-node-labeller','k8s-dt-node-labeller','','2023',5,'A specialized controller designed to label nodes dynamically based on Device Tree specifications. It enables hardware-aware scheduling by analyzing local physical attributes and exposing them as standard Kubernetes selector labels.','Go','Controller','Advanced',0,'online','manual','e864fe7a23aefaf57fe5bf2eb54ab294e360ce4bb83bade4c7b3461f8b980026',100.0,1.77903108539346408e+09,1,'2020-11-17T21:12:14Z',NULL,NULL,NULL,'["Infrastructure", "Node Management", "Hardware Classification"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2020-11-17T21:12:14Z", "gh_stars": 17}');
INSERT INTO "resources" VALUES('https://github.com/adaptant-labs/k8s-node-label-monitor','k8s-node-label-monitor: Kubernetes Node Label Monitor provides a custom'' Kubernetes controller for monitoring and notifying changes in the label states of Kubernetes nodes (labels added, deleted, or updated), and can be run either node-local or cluster-wide','','2023',3,'A custom controller built to monitor label states on Kubernetes node resources. It dispatches notifications on label updates, additions, or deletions, maintaining configuration trust across larger clusters.','Go','Controller','Intermediate',1,'online','manual','6a8f69c637c8effae9484ef69f8807bfe4539e079283db28f6fac8f416dc0674',100.0,1.77903357976588606e+09,1,'2021-02-09T11:00:49Z',NULL,NULL,NULL,'["Infrastructure", "Node Management", "Auditing & Compliance"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2021-02-09T11:00:49Z", "gh_stars": 3}');
INSERT INTO "resources" VALUES('https://github.com/admindroid-community/powershell-scripts','github.com/admindroid-community/powershell-scripts: PowerShell Scripts for'' Microsoft 365 Management, Reporting, and Auditing','','2024',0,'A collection of administrative scripts designed for auditing active users, licensing allocations, and configuration status within Microsoft 365 tenants.','PowerShell','GitHub Repository','Intermediate',0,'online','manual','2792ab510a7b130b5c3144c10f0acc5bed874b21df177c1abcf3dcda3c930100',100.0,1.78173587976624393e+09,1,'2026-06-18T00:37:59.766244+02:00',NULL,NULL,NULL,'["Identity and Access", "Microsoft 365", "Auditing & Reporting", "Administration"]','["[COMMUNITY-TOOL]"]','["docs/azure.md"]','["azure.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/adriannovegil/awesome-observability','github.com/adriannovegil/awesome-observability: Awesome Observability 🌟','','2026',2,'A highly structured catalog mapping telemetry collection systems, including OpenTelemetry exporters, Prometheus metric architectures, Grafana monitoring boards, and continuous system profiling dashboards.','Markdown','Awesome List','Advanced',1,'online','manual','05b5afe1463a41fa204fac02ec29a2aca3890d4a9f0a527f8a892cec2de520e6',100.0,1.77903397716117405e+09,1,'2026-05-11T11:58:36Z',NULL,NULL,NULL,'["Cloud Native", "Observability", "Telemetry and Metrics"]','["[COMMUNITY-TOOL]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "CC0-1.0", "gh_pushed": "2026-05-11T11:58:36Z", "gh_stars": 636, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/aelsabbahy/goss','aelsabbahy/goss','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','b2a6e2ded5a8d1eac440ffd247a8f8c9983b6614838f8a9d3be544f2fde6df12',100.0,1.77903022906840491e+09,0,'2026-05-17T17:03:49.068405+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"duplicate_of": "https://github.com/goss-org/goss"}');
INSERT INTO "resources" VALUES('https://github.com/affaan-m/ECC','ECC - The Agent Harness Performance Optimization System','A professional performance harness providing modular skills, memory optimizations, and security scanning for advanced AI coding assistants.','2026',4,'This repository provides a performance optimization harness designed for agentic environments like Claude Code and Cursor. It implements persistent semantic memory, structured natural-language ''skills'' as parameters, and execution safeguards via the AgentShield scanner. It aims to reduce token consumption and eliminate redundant instructions, transforming fragile prompting patterns into reproducible development infrastructure.','en','Repository','Advanced',0,'online','automatic','a68b20559e76cc4d181a84ba6031061ed34e6d3863a6d155e8b07540ac542e55',NULL,1.78035257155632305e+09,0,'2026-05-31T06:45:42Z',NULL,NULL,NULL,'["Artificial Intelligence", "AI Agents", "Model Context Protocol", "Harness Performance Optimization"]','["[EMERGING]", "[COMMUNITY-TOOL]"]','[]','[]','{}','{"category": "ai-agents-mcp", "gh_license": "MIT", "gh_pushed": "2026-05-31T06:45:42Z", "gh_stars": 202119, "reputation_status": "Vetted", "reputation_summary": "Highly regarded emerging system optimizing terminal agent runtime states, featuring zero reported vulnerabilities outside its documented patches.", "social_preview_url": "https://opengraph.githubassets.com/9d755758b9c50919c393f44e8fa1910cd7813f12349332f5d66f232c640154c1/affaan-m/ECC", "source_provenance": "X.com (nubenetes)", "suggested_new_category": "agent-performance"}');
INSERT INTO "resources" VALUES('https://github.com/ahas-sigs/kube-ebpf-exporter','kube-ebpf-exporter 🌟','','2022',5,'A Prometheus-compatible exporter that translates system events captured via custom eBPF programs into actionable metrics. This allows platform engineers to trace low-level syscalls, file system latency, and network performance with minimal overhead. The project represents a growing shift toward kernel-level observability.','Go','Exporter','High',0,'online','manual','ffbd284277e0f0a2a7affc010aacea050871b3cbae526f63bd22a32b7c9f5f6b',100.0,1779029884.0295,1,'2021-05-13T05:50:56Z',NULL,NULL,NULL,'["Observability", "Performance & Kernel", "eBPF Monitoring"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2021-05-13T05:50:56Z", "gh_stars": 55}');
INSERT INTO "resources" VALUES('https://github.com/ahmetb/kubectl-aliases','ahmetb/kubectl-aliases','','2026',5,'An automated system that generates systematic shell aliases for ''kubectl'', significantly enhancing engineering productivity. It minimizes operational friction by programmatic expansion of over 800 permutations of flags and subcommands, allowing administrators to interface with Kubernetes clusters using succinct shorthand sequences.','Shell','Repository','Intermediate',0,'online','manual','310aec75dce6ba83e1bbaaca8e248da167c2c480d64337a9d4cc86aeff1eb8ed',100.0,1.77903357979749488e+09,1,'2025-05-11T17:04:45Z',NULL,NULL,NULL,'["Cloud Native", "Kubernetes", "CLI & Debugging"]','["[DE FACTO STANDARD]"]','["docs/kubectl-commands.md"]','["kubectl-commands.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-05-11T17:04:45Z", "gh_stars": 3691}');
INSERT INTO "resources" VALUES('https://github.com/ahmetb/kubectl-foreach','github.com/ahmetb/kubectl-foreach: kubectl foreach ⭐','','2025',1,'kubectl-foreach is a highly efficient plugin that runs kubectl commands across multiple contexts, namespaces, or resources in parallel. It handles asynchronous command execution and presents grouped terminal output, drastically optimizing multi-cluster administrative operations.','Go','CLI Plugin','Intermediate',0,'online','manual','a348bd4f6024b67b9755bdcaa928abf3ca154c05263cca86ea1a898ecf30758a',100.0,1.77903442507151508e+09,1,'2026-06-08T22:54:07Z',NULL,NULL,NULL,'["Operations", "CLI Tooling", "Multi-resource Execution"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-08T22:54:07Z", "gh_stars": 489}');
INSERT INTO "resources" VALUES('https://github.com/ahmetb/kubectl-tree','kubectl-tree','','2025',5,'A crucial kubectl plugin that queries Kubernetes APIs to visually construct and present the ownership tree of API objects via ownerReferences. Crucial for tracing the lineage of ReplicaSets, Pods, Deployments, and Custom Resources (CRDs) in active namespaces.','Go','CLI Plugin','Intermediate',0,'online','manual','a4af8c68f8ba51a9398b292e4551dd81243192c570df44497c92264404ecbc5c',100.0,1779033415.98258,1,'2026-05-18T01:49:07Z',NULL,NULL,NULL,'["Developer Experience", "CLI Utilities", "Object Relationships"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-05-18T01:49:07Z", "gh_stars": 3386}');
INSERT INTO "resources" VALUES('https://github.com/ahmetb/kubectx','==kubectx + kubens: : Power tools for kubectl==🌟🌟','','2026',5,'Highly optimized command-line utilities for switching context configurations and namespaces inside kubectl. Indispensable for multi-cluster environments, they radically optimize developer productivity and prevent accidental target execution via clear interactive lists.','Go','CLI Tool','Beginner',0,'online','manual','39b78501f9b3e9898481b8ef40f8b2a1d81c840109d2fa2ad117564edb65d584',100.0,1.77903144259843802e+09,1,'2026-05-15T15:43:00Z',NULL,NULL,NULL,'["Developer Experience", "CLI Utilities", "Context Management"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-05-15T15:43:00Z", "gh_stars": 19807}');
INSERT INTO "resources" VALUES('https://github.com/ahmetb/kubernetes-network-policy-recipes','==ahmetb/kubernetes-network-policy-recipes== 🌟','','2021',5,'The premier open-source repository for reusable NetworkPolicy templates. Provides validated configuration files to handle common cloud-native security patterns.','YAML','Repository','Intermediate',1,'online','manual','0fc77e7ecc41f1b0736d3aaf88a7a6ffbddf4068bbaa1b4f92d12a70246e65e2',100.0,1.77903228283465099e+09,1,'2025-02-07T08:38:37Z',NULL,NULL,NULL,'["Networking", "Security", "Recipes"]','["[DE FACTO STANDARD]"]','["docs/demos.md", "docs/kubernetes-networking.md"]','["kubernetes-networking.md", "demos.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-02-07T08:38:37Z", "gh_stars": 6144}');
INSERT INTO "resources" VALUES('https://github.com/aidansteele/secretsctx','aidansteele/secretsctx','','2022',5,'A Go-based runtime library designed to inject dynamic secrets from external storage layers directly into context-aware serverless pipelines. By managing runtime secret validation outside main configuration structures, it significantly reduces code complexity.','Go','Library','Advanced',1,'online','manual','a9d1ecfb1a2e0682c6a852e19c1ffe4a86af289893571144fc1306f8d40927e2',100.0,1.7817358777612729e+09,1,'2026-06-18T00:37:57.761273+02:00',NULL,NULL,NULL,'["Security & Governance", "Secret Management", "Go Runtime"]','["[DE FACTO STANDARD]"]','["docs/aws-serverless.md"]','["aws-serverless.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/aimhubio/aim','github.com/aimhubio/aim','','2024',4,'Aim is an open-source, highly responsive experiment tracking and visualization dashboard for machine learning. It provides a robust query language and a user-friendly UI to compare thousands of metrics, hyperparameters, and logs across deep learning runs.','Python','Repository','Intermediate',1,'online','manual','997d320ec7590772d2d44a8b638c1f424a50731d142f6cda3cae805aa5b305fb',100.0,1.77903367199525403e+09,1,'2026-06-13T20:26:46Z',NULL,NULL,NULL,'["MLOps", "Experiment Tracking", "Visualization"]','["[ENTERPRISE-STABLE]"]','["docs/mlops.md"]','["mlops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T20:26:46Z", "gh_stars": 6154}');
INSERT INTO "resources" VALUES('https://github.com/airwallex/k8s-pod-restart-info-collector','github.com/airwallex: k8s-pod-restart-info-collector','','2022',0,'An automated utility designed to capture and log state configuration, events, and logs instantly when a pod restarts, offering immediate post-mortem insights for ephemeral microservices.','Go','Tool','Intermediate',0,'online','manual','3e4e21d175049930d8f16e327994a22b47054e30aa250ad356667034e77895de',100.0,1781736057.34144,1,'2026-06-18T00:40:57.341440+02:00',NULL,NULL,NULL,'["Observability", "Debugging", "Automation"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-troubleshooting.md"]','["kubernetes-troubleshooting.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/ajayk/drifter','github.com/ajayk/drifter','','2021',5,'Drifter is a CLI utility designed to detect structural configuration drift across Kubernetes resources. By comparing live running cluster states against baseline templates, it identifies configuration changes. This tool provides lightweight validation for infrastructure consistency.','Go','CLI Tool','Intermediate',0,'online','manual','7e6917d7a7462342ffc27824d9e20008d937114fda3cf61353add05bc00193bf',100.0,1.77903318786063408e+09,1,'2024-01-09T17:41:36Z',NULL,NULL,NULL,'["GitOps & Delivery", "Configuration Management", "Drift Detection"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-01-09T17:41:36Z", "gh_stars": 17}');
INSERT INTO "resources" VALUES('https://github.com/ajmyyra/ambassador-auth-oidc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','ff59f529d8db417c89704bee344d50311ebfcc54186836e5265d3fb6c301965c',100.0,1.77903162533064794e+09,1,'2026-05-17T17:27:05.330648+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-security.md"]','[]','{}','{"gh_license": "MIT"}');
INSERT INTO "resources" VALUES('https://github.com/akuity/awesome-argo','akuity/awesome-argo 🌟','','2026',3,'A duplicate entry detailing the CNCF Argo ecosystem configurations. Outlines progressive application delivery strategies, canary deployments, declarative cluster state reconciliations, and custom Argo plugins.','Markdown','Awesome List','Advanced',1,'online','manual','4cfcb2323980bc80f403202b4611bc3b2dd06b3d8dda2c07d39412a509e54f89',100.0,1.7790314068804109e+09,1,'2026-02-28T03:02:12Z',NULL,NULL,NULL,'["Cloud Native", "GitOps", "Argo Project Ecosystem"]','["[COMMUNITY-TOOL]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-02-28T03:02:12Z", "gh_stars": 2449, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/akuity/kargo','==github.com/akuity/kargo==','','2023',5,'Kargo is a GitOps-native application promotion engine that coordinates software releases across staging, pre-production, and production. Operating as a Kubernetes controller, it manages promotion state sequences dynamically via custom resources. It simplifies Git manipulation during deployment rollouts.','Go','GitOps Controller','Advanced',0,'online','manual','ebf41a4d95c3859a0afbdad795500f43901217ee56051ce957b11ffaa90529ee',100.0,1.77903343630711698e+09,1,'2026-06-14T05:29:29Z',NULL,NULL,NULL,'["GitOps & Delivery", "Application Promotion", "Lifecycle Management"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-14T05:29:29Z", "gh_stars": 3350}');
INSERT INTO "resources" VALUES('https://github.com/akullpp/awesome-java','Awesome Java 🌟','','2026',5,'A premier directory of validated Java frameworks, high-performance serialization libraries, and microservices engines like Spring Boot, Quarkus, and Micronaut. Essential for legacy modernization projects and enterprise-grade distributed systems. Remains a foundational handbook for enterprise JVM optimization.','Java','Repository','Intermediate',1,'online','manual','812519e1d1f39879872200f2cd381725b275fc4c3a6108bec333cdc778654a7b',100.0,1779031410.80023,1,'2026-04-12T12:40:14Z',NULL,NULL,NULL,'["Programming Languages", "Java", "Resources"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-04-12T12:40:14Z", "gh_stars": 48210, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/alcideio/advisor','Alcide Advisor: an agentless service for Kubernetes audit and compliance'' that''s built to ensure a frictionless and secured DevSecOps workflow','','2026',0,'Alcide Advisor is an agentless security tool originally engineered to validate Kubernetes configurations, workloads, and network rules against common vulnerabilities. Since the acquisition of Alcide, the repository has been archived and is no longer under active maintenance. It is primarily referenced as a historical model for static manifest parsing and rules-driven auditing.','Go','Static Analyzer','Intermediate',0,'online','manual','477a1f69dee0048b2f273002fb0ba196a9ff38474a0f11298171945860b9de9b',100.0,1.78173604700207591e+09,1,'2026-06-18T00:40:47.002076+02:00',NULL,NULL,NULL,'["Security", "Audit & Compliance", "Static Analysis"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/alcideio/rbac-tool','==github.com/alcideio/rbac-tool==','','2025',3,'RBAC Tool is a powerful suite designed to simplify, audit, and generate Kubernetes Role-Based Access Control policies. It includes policy analysis commands, visual dependency graphs, and lookup capabilities to quickly ensure compliance with the least privilege security model.','Go','CLI / Visual Analyzer','Advanced',0,'online','manual','c8448727bac561737be07944f0ac776fb84063cafeabccdd3fdcebbd63aa30ab',100.0,1.779032817928272e+09,1,'2025-02-13T20:57:41Z',NULL,NULL,NULL,'["Security", "Access Control", "RBAC Audit"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-02-13T20:57:41Z", "gh_stars": 1077}');
INSERT INTO "resources" VALUES('https://github.com/alcideio/skan','sKan','','2020',2,'sKan (by Alcide) was an early static analysis tool for scanning configuration files and Helm charts to discover security vulnerabilities. It has since been archived, with modern platforms choosing robust, active alternatives such as Checkov.','Go','CLI Scanner','Simple',0,'online','manual','0d4218db4fc62d51f1e3a8c89cd6b2e2eed5e40cd648213bf00d979511444948',100.0,1779031901.12451,1,'2023-03-03T16:29:28Z',NULL,NULL,NULL,'["Security & Identity", "Compliance & Auditing", "Static Code Analysis"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-03-03T16:29:28Z", "gh_stars": 204}');
INSERT INTO "resources" VALUES('https://github.com/alexdzyoba/ansible-jmx-exporter','github.com/alexdzyoba/ansible-jmx-exporter','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','00179b8c10f6a85e83cb33a2c17eac2a8351b034c75c06cd87e9b731ba98df60',100.0,1.779030091492558e+09,1,'2026-05-17T17:01:31.492558+02:00',NULL,NULL,NULL,'[]','[]','["docs/prometheus.md"]','[]','{}','{"gh_license": "MIT"}');
INSERT INTO "resources" VALUES('https://github.com/alexellis/k3sup','**k3sup (said ''ketchup'')**','','2026',4,'An utility by Alex Ellis using SSH to provision K3s directly from local machines. It sets up secure, direct API configurations, bridges cluster nodes instantly, and configures target servers for operational readiness.','Go','Tool','Intermediate',0,'online','manual','d47d1c0f36ca75f93fc3b56082ac640b6aaacc77c2294cde2f50f69e80b06665',100.0,1.77903203728995704e+09,1,'2026-03-05T11:13:15Z',NULL,NULL,NULL,'["Edge & IoT", "Cluster Provisioning", "SSH Bootstrapping"]','["[ENTERPRISE-STABLE]"]','["docs/matrix-table.md", "docs/rancher.md"]','["rancher.md", "matrix-table.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-03-05T11:13:15Z", "gh_stars": 7383}');
INSERT INTO "resources" VALUES('https://github.com/alexellis/registry-creds','registry-creds','','2023',5,'Automatically syncs image pull credentials across diverse namespaces from registry platforms like ECR, GCR, and Docker Hub. It solves multi-tenant credential sharing securely without requiring manual duplications.','Go','Operator','Medium',0,'online','manual','c98b4b125f09915c117c9fc31b1fb47b55b3ed10bba3571831ebbb24fcd19084',100.0,1.7790292432515521e+09,1,'2024-12-21T13:24:00Z',NULL,NULL,NULL,'["Security", "Secrets Management", "Registry Authentication", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2024-12-21T13:24:00Z", "gh_stars": 350}');
INSERT INTO "resources" VALUES('https://github.com/alexellis/run-job','==github.com/alexellis/run-job==','','2020',3,'A developer-oriented utility written in Go to quickly trigger Kubernetes Jobs, track execution statuses, and stream execution logs directly to stdout. Simplifies local workflow testing and diagnostic debugging.','Go','Repository','Intermediate',0,'online','manual','15c4fd11e7ae38960f3112fa9957f3c4449d2f2dd58a635ef9f0c9877b25ba88',100.0,1.77903450255100798e+09,1,'2024-08-13T22:32:56Z',NULL,NULL,NULL,'["Workloads", "Batch Jobs", "Tooling"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md", "docs/kubernetes.md"]','["kubernetes-tools.md", "kubernetes.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2024-08-13T22:32:56Z", "gh_stars": 211}');
INSERT INTO "resources" VALUES('https://github.com/aliesbelik/awesome-jmeter','Awesome JMeter','','2026',5,'A structured list of plugins, performance test plans, and reporting scripts designed to optimize Apache JMeter pipelines. Essential for load testing web services, gRPC endpoints, and databases under intense scale constraints. Acts as an excellent resource for performance engineering teams targeting resource bottlenecks.','Java','Repository','Intermediate',0,'online','manual','d126061c974412126edf2a91603124c2a05f2a984e2dded6cd7e51725d0b907f',100.0,1.77903340073237299e+09,1,'2026-05-05T22:22:40Z',NULL,NULL,NULL,'["Software Quality", "Testing", "JMeter"]','["[DE FACTO STANDARD]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "CC-BY-4.0", "gh_pushed": "2026-05-05T22:22:40Z", "gh_stars": 790, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/allure-framework/allure2','Allure Report 🌟','','2023',4,'A flexible, multi-language test report tool providing clean hierarchical representation of execution steps, attachments, and historical telemetry. Integrates with standard test runners across modern ecosystems.','Java','Tool','Intermediate',0,'online','manual','904874589c38dac686cfef5beed2a33eed33234405307bfd4478b46057c0924e',100.0,1.77903361006848788e+09,1,'2026-06-12T22:09:34Z',NULL,NULL,NULL,'["Software Engineering", "Testing", "Reporting"]','["[ENTERPRISE-STABLE]"]','["docs/qa.md"]','["qa.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T22:09:34Z", "gh_stars": 5422}');
INSERT INTO "resources" VALUES('https://github.com/amazon-archives/aws-training-demo','github.com/aws-samples/aws-training-demo','','2020',5,'Archived AWS training demonstration repository. Grounding verification confirms this repository is formally archived by Amazon, meaning it should be treated purely as an architectural reference rather than a base for production provisioning templates.','JavaScript','Repository','Basic',0,'online','manual','12ba405003f66717af427558892ecba6fc404c7a89e92fe1583a35c32d7cbee7',100.0,1.7791304949535911e+09,1,'2019-04-09T21:26:39Z',NULL,NULL,NULL,'["Public Cloud Providers", "AWS", "Training Archives"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2019-04-09T21:26:39Z", "gh_stars": 128}');
INSERT INTO "resources" VALUES('https://github.com/amazon-archives/aws-waf-sample','AWS WAF sample rules','','2024',5,'A historical repository containing sample AWS WAF rule sets and templates. Note: This repository is now officially archived by AWS. Contemporary deployment architectures rely on AWS Managed Rules or centralized configurations managed through AWS Firewall Manager rather than maintaining customized version-one JSON rules.','JSON','Repository','Intermediate',0,'online','manual','ddea1ea4fcf5f9a5fc9a8369dd1679d8d2742aac6828d7ed28b950d09abcd140',100.0,1.77913049495059299e+09,1,'2020-01-09T08:11:23Z',NULL,NULL,NULL,'["Security & Identity", "Network Security", "Web Application Protection"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/aws-security.md"]','["aws-security.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2020-01-09T08:11:23Z", "gh_stars": 511}');
INSERT INTO "resources" VALUES('https://github.com/amelbakry/kubernetes-active-passive','Kubernetes Active Passive Applications','','2021',0,'A reference architecture guiding the implementation of Active-Passive configurations within multi-region Kubernetes topologies. Provides template setups for handling state synchronization and global traffic failovers.','Go','Templates','Advanced',0,'online','manual','bf79c301fff4e55aa4ac515fcf282e6bf1ac6795640e5b21b135d27cfc6c44c6',100.0,1.78173604679029488e+09,1,'2026-06-18T00:40:46.790295+02:00',NULL,NULL,NULL,'["Reliability", "Architectural Patterns", "Disaster Recovery"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/amitmavgupta/azure-terraform','github.com/amitmavgupta/azure-terraform','','2022',2,'A centralized repository of common Azure resource templates compiled using Terraform. Serves as a useful playground for setting up App Services, Cosmos DB, and Virtual Networks.','HCL','Repository','Beginner',0,'online','manual','77ad6a6af303e04c458fc78a1c7a75d7e28681a7a88f5589b612cfac3a1e4bc2',100.0,1.77903138213229393e+09,1,'2025-05-24T07:01:55Z',NULL,NULL,NULL,'["Infrastructure as Code", "Azure", "Templates"]','["[COMMUNITY-TOOL]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2025-05-24T07:01:55Z", "gh_stars": 29}');
INSERT INTO "resources" VALUES('https://github.com/anchore/grype','grype: a vulnerability scanner for container images and filesystems','','2025',5,'A vulnerability scanner for container images and filesystems, renowned for its speed, minimal footprint, and ease of CI/CD integration. It supports multiple vulnerability sources and outputs structured data compatible with enterprise DevSecOps tools. Through 2026, it stands as the industry standard tool for shift-left image security.','Go','CLI Tool','Medium',0,'online','manual','457d117ce39ba93b09de80026a3d67a203e6a39b8511306889f032c360d1c6f9',100.0,1.77903447725039792e+09,1,'2026-06-12T15:56:32Z',NULL,NULL,NULL,'["Security", "Vulnerability Scanning", "Container Images"]','["[DE FACTO STANDARD]"]','["docs/devsecops.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "devsecops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T15:56:32Z", "gh_stars": 12400}');
INSERT INTO "resources" VALUES('https://github.com/anchore/syft','==anchore/syft==','','2021',5,'An advanced security tool engineered to generate detailed Software Bill of Materials (SBOM) from container images, file systems, and archives. Syft identifies package structures to track vulnerable subcomponents in modern supply chain governance.','Go','CLI Tool','Intermediate',0,'online','manual','db2fcf1ed1811ccd981eff91084d06e12e3cc79c9281dd6b8e36898d2efb90d2',100.0,1.77903040764475488e+09,1,'2026-06-12T13:29:25Z',NULL,NULL,NULL,'["Security & Compliance", "Supply Chain Security", "SBOM Generation"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T13:29:25Z", "gh_stars": 9106}');
INSERT INTO "resources" VALUES('https://github.com/anderseknert/awesome-opa','anderseknert/awesome-opa 🌟','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','74b59d9adc2bc20caea9b43eb1abb3db4a1ee3ccb4ec9a03f666cb0130112715',100.0,1.77902936725562906e+09,0,'2026-05-17T16:49:27.255629+02:00',NULL,NULL,NULL,'[]','[]','["docs/other-awesome-lists.md"]','[]','{}','{"duplicate_of": "https://github.com/open-policy-agent/awesome-opa"}');
INSERT INTO "resources" VALUES('https://github.com/andreazorzetto/yh','yh - YAML Highlighter','','2022',4,'A specialized, terminal-based syntax highlighter designed explicitly for YAML configurations. Unlike generic highlighters, yh identifies YAML indentation rules and formats outputs from standard pipelines. It is highly useful for reviewing massive Kubernetes manifests directly in terminals.','Go','tool','beginner',0,'online','manual','835328b68aa23ebad6c9e32970fe664b9b951d99213ca3069c6e3b3e012cf187',100.0,1.77903215328110909e+09,1,'2020-12-14T09:49:42Z',NULL,NULL,NULL,'["Configuration Management", "YAML Processing", "CLI Tools"]','["[ENTERPRISE-STABLE]"]','["docs/yaml.md"]','["data-and-advanced-analytics.md", "yaml.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2020-12-14T09:49:42Z", "gh_stars": 427, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/andredesousa/devops-best-practices','andredesousa/devops-best-practices','','2026',1,'An opinionated checklist detailing architectural best practices for logging formats, schema migrations, system health monitoring, and security setups. Helps engineering teams establish healthy container operational standards.','Markdown','Reference Guide','Intermediate',1,'online','manual','f62c1fb10bd804350b1cd6db1ca47e20316b90f9cc78502d5933c39895c42a37',100.0,1.77902967897616291e+09,1,'2022-02-23T20:29:58Z',NULL,NULL,NULL,'["Infrastructure & Operations", "DevOps & SRE Engineering", "Best Practices"]','["[COMMUNITY-TOOL]", "[GUIDE]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2022-02-23T20:29:58Z", "gh_stars": 53, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/andrewpuch/nagios_setup','github: Steps I used to install Nagios in the cloud','','2018',5,'A historical walkthrough illustrating legacy installations of the Nagios monitoring framework inside static virtual instances. Outlines core process definitions, alerting rules, and manual configuration management.','Shell','Repository','Intermediate',0,'online','manual','765dc175d742822fbc5de8766a7a18e7d73ee853aa9ea8d72e0be13162ae41f3',100.0,1.78173587621083688e+09,1,'2026-06-18T00:37:56.210837+02:00',NULL,NULL,NULL,'["Observability & Monitoring", "Legacy Systems", "Self-Hosted"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/aws-monitoring.md"]','["aws-monitoring.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/andrewstetsenko/tech-jobs-with-relocation','International Tech Job Search Handbook','','2026',5,'Curator Insight: An open-source global job search manual providing metadata on visa processes and relocation budgets. Live Grounding: Continues to be a vital community asset for tech professionals traversing global borders, offering real-time data on corporate immigration compliance and tax architectures.','en','GitHub Repository','Intermediate',0,'online','manual','7eda0472cae43870bede3742ed479d8829d1a4ded8fda5a2b5d147932a0aab92',100.0,1779032296.97062,1,'2026-03-19T14:04:47Z',NULL,NULL,NULL,'["Professional Practice", "Recruiting", "Resource Guides"]','["[DE FACTO STANDARD]"]','["docs/recruitment.md"]','["recruitment.md"]','{}','{"gh_license": "CC0-1.0", "gh_pushed": "2026-03-19T14:04:47Z", "gh_stars": 4427}');
INSERT INTO "resources" VALUES('https://github.com/anordal/shellharden/blob/master/how_to_do_things_safely_in_bash.md','github: Safe ways to do things in bash','','2026',5,'Serves as the authoritative style manual for compiling safe, error-free bash scripts. Maintained within the Shellharden project, it outlines rigorous quoting standards, expansion parameters, array handling, and variable declarations to prevent system exploits or unexpected command executions.','Bash','Developer Guide','Advanced',0,'online','manual','91ca4befc6835bd57a7f160db4e2eb0803d492455fa4818ac4ea1dd50c4d42a3',100.0,1.77903126683123397e+09,1,'2026-01-05T06:45:45Z',NULL,NULL,NULL,'["Linux", "Automation", "Bash Scripting"]','["[DE FACTO STANDARD]", "[GUIDE]"]','["docs/linux.md"]','["linux.md"]','{}','{"gh_license": "MPL-2.0", "gh_pushed": "2026-01-05T06:45:45Z", "gh_stars": 4784}');
INSERT INTO "resources" VALUES('https://github.com/StarpTech/k-andy','StarpTech/k-andy','','2021',2,'A consolidated project featuring curated Kubernetes deployment manifests and Helm configurations. Highlights patterns for bootstrapping monitoring stacks, storage drivers, and load-balancer integration with localized container configurations.','YAML','Repository','Intermediate',0,'online','manual','8028ee6f6d7bcd322f3b910996e2dfadb122caa55f7e520478ec1998cbb5fa18',100.0,1.77903379540551304e+09,1,'2022-08-26T11:42:32Z',NULL,NULL,NULL,'["Infrastructure as Code", "Kubernetes Management", "Infrastructure Blueprints"]','["[COMMUNITY-TOOL]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2022-08-26T11:42:32Z", "gh_stars": 157, "gh_open_issues_30d": 3, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:49.591635+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Stono/kconmon','kmoncon','','2021',5,'A connection monitoring tool that tests internal and external cluster connectivity paths actively from the inside out. Dispatches continuous diagnostics metrics to trace latency, DNS resolution, and structural network failures across namespaces.','Node.js','Daemon','Intermediate',1,'online','manual','ddda947b53bf609166ee99149783bd488b2d33de7136b1c726d31f9ab0832238',100.0,1.77903449787452888e+09,1,'2024-03-26T18:13:32Z',NULL,NULL,NULL,'["Observability", "Cluster Monitoring", "Connectivity Checkers"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2024-03-26T18:13:32Z", "gh_stars": 287, "gh_open_issues_30d": 5, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:50.324434+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/SymbioticLab/Oobleck','github.com/SymbioticLab/Oobleck: Oobleck - Resilient Distributed Training'' Framework','','2024',2,'An open-source distributed training framework designed with native fault-tolerant characteristics. It mitigates expensive spot-instance preemption delays by dynamically and rapidly reorganizing parallel communication pipelines on-the-fly.','Python','Repository','Advanced',0,'online','manual','bb79fc1207725deae4ac4dfe99d1e9e94646f089545fa094170bc11fe5f89c2c',100.0,1.77903371428138589e+09,1,'2024-04-11T00:16:29Z',NULL,NULL,NULL,'["Machine Learning", "Distributed Training", "Fault Tolerance"]','["[COMMUNITY-TOOL]"]','["docs/mlops.md"]','["mlops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-04-11T00:16:29Z", "gh_stars": 100, "gh_open_issues_30d": 3, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:51.054255+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/TabularisDB/tabularis/blob/main/README.es.md','Tabularis: Open Source Desktop Client for Modern Databases with AI and MCP'' Integration','','2024',5,'An open-source desktop database client featuring Model Context Protocol (MCP) integrations. This compliance allows local LLMs to safely query, analyze, and update database schemas within strict user security boundaries.','Spanish','Repository','Intermediate',0,'online','manual','2fd2ed828f549425a756e5baa4d9e141e580901bb931bd5b128ea5f64b95ef7d',100.0,1.77903002123663091e+09,1,'2026-06-11T09:30:32Z',NULL,NULL,NULL,'["Software Engineering", "Database Management", "Model Context Protocol"]','["[DE FACTO STANDARD]"]','["docs/ai.md", "docs/databases.md", "docs/kubernetes-tools.md"]','["ai.md", "databases.md", "kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T09:30:32Z", "gh_stars": 2422, "gh_open_issues_30d": 70, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:34:51.809223+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/TerraHubCorp/terraform-google-automation-demo','Terraform Automation Demo using Google Cloud Provider','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','5d416772b5e31660626504b602f168033275d84d843c8d1038929f42a7699feb',100.0,1.77903315857390689e+09,0,'2026-05-17T17:52:38.573907+02:00',NULL,NULL,NULL,'[]','[]','["docs/demos.md"]','[]','{}','{"duplicate_of": "https://github.com/tfxor/terraform-google-automation-demo", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:52.468108+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/TheJambo/awesome-testing','Awesome Testing','','2026',5,'A highly practical directory highlighting testing paradigms, dynamic scanning modules, and manual/automated testing resources. Focuses on QA educational resources as well as modern test design techniques. Helps teams build scalable integration test harnesses within cloud workflows.','N/A','Repository','Beginner',0,'online','manual','4062ce50038ba4c743409acf34e287f9c89b47ae354cd679f7ac8fecc5b8acd2',100.0,1.77903065377558898e+09,1,'2026-06-11T23:34:02Z',NULL,NULL,NULL,'["Software Quality", "Testing", "QA"]','["[DE FACTO STANDARD]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "CC0-1.0", "gh_pushed": "2026-06-11T23:34:02Z", "gh_stars": 2289, "is_special": true, "gh_open_issues_30d": 4, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:53.170986+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/TheYkk/synator','Synator Kubernetes Secret and ConfigMap synchronizer 🌟','','2022',2,'An operator designed to automatically synchronize Secrets and ConfigMaps across multiple Kubernetes namespaces. It listens for resource updates tagged with specific annotations and pushes changes cluster-wide, eliminating operational overhead.','Python','Operator','Intermediate',1,'online','manual','7b5fd02ea60b8513386203f3d14c32181ac7ae917998e2ab6ee7df1320f21c5c',100.0,1779031302.74327,1,'2024-01-16T12:30:42Z',NULL,NULL,NULL,'["Security & Identity", "Configuration Management", "Sync Controllers"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2024-01-16T12:30:42Z", "gh_stars": 117, "gh_open_issues_30d": 5, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:53.896890+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Thiht/smocker','Smocker (server mock) is a simple and efficient HTTP mock server','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','fb4cb099148f737393a4c3e8baa1bbdc2306c96e276c2453da62b48784781fca',100.0,1.77903192815747809e+09,0,'2026-05-17T17:32:08.157478+02:00',NULL,NULL,NULL,'[]','[]','["docs/testops.md"]','[]','{}','{"duplicate_of": "https://github.com/smocker-dev/smocker", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:34:54.546992+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/TrackMaven/getting-started-with-drf-angular/tree/part-2','Part 2 Supplementary Code','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','a45c1b5a401a34bb5cdad3a04ab5c3560fb0e84a78796dcd4514d4b44e27a7ca',100.0,1.77903182749679803e+09,1,'2026-05-17T17:30:27.496798+02:00',NULL,NULL,NULL,'[]','[]','["docs/python.md"]','[]','{}','{"gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:55.277309+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Trendyol/kink','Trendyol/kink','','2021',2,'KinK (Kubernetes in KinD) facilitates running KinD (Kubernetes in Docker) clusters directly inside existing Kubernetes environments. It is ideal for nested testing topologies, advanced operators, and ephemeral CI/CD platforms.','Go','Testing Utility','Advanced',0,'online','manual','3fa87e5b5f9c29897a36a31ab467825539bc7ac0d098011a2eefb908715b407f',100.0,1779029111.29616,1,'2025-09-25T13:15:32Z',NULL,NULL,NULL,'["Development & Testing", "Cluster-in-Cluster", "Kubernetes in Kubernetes"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-09-25T13:15:32Z", "gh_stars": 383, "gh_open_issues_30d": 20, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:34:56.024034+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Trendyol/kubectl-view-webhook','kubectl-view-webhook 🌟','','2023',5,'A high-utility kubectl plugin created to list, audit, and visualize Mutating and Validating Admission Webhooks across clusters. It simplifies debugging of webhooks by outlining exactly which API endpoints are called during cluster operations. Widely adopted by platform operators tracing webhook performance bottle-necks.','Go','CLI Plugin','Low',0,'online','manual','ec25b6a93a8a7bede199d669bbe05f0a168d6201da15746d739843d60e1fdd21',100.0,1.77903053909479498e+09,1,'2023-02-17T19:37:35Z',NULL,NULL,NULL,'["Operations", "Command Line Tools", "Webhook Visualization"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-02-17T19:37:35Z", "gh_stars": 108, "gh_open_issues_30d": 4, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:56.754644+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Trolley-MGMT/trolleymgmt','github.com/Trolley-MGMT/trolleymgmt','','2023',5,'Trolley-MGMT is a control plane assistant designed to coordinate multi-cluster ingress routing and traffic mapping. It simplifies workload migrations and network path resolution across physical boundaries. It offers a lightweight model for traffic management without full mesh overhead.','Go','Controller','Advanced',0,'online','manual','d45c38de299f761f5ca847cff638c0b0aa16385c7ad32baed1ee998211cfc9d1',100.0,1.77903447727763104e+09,1,'2023-09-20T13:29:58Z',NULL,NULL,NULL,'["Network & Connectivity", "Multi-Cluster Routing", "Traffic Engineering"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-09-20T13:29:58Z", "gh_stars": 113, "gh_open_issues_30d": 7, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:57.493909+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Tronde/ansible-role-rhel-patchmanagement','Tronde/ansible-role-rhel-patchmanagement','','2023',2,'A community-contributed Ansible role designed to streamline patch management workflows across Red Hat Enterprise Linux (RHEL) architectures. Enables system updates, security errata auditing, and automated reboot coordination.','YAML','Role','Intermediate',0,'online','manual','4514ee147f14dcb5ce787276dcd932645364041d9d6cfedb8be11d13b6c8ce4a',100.0,1.77902971525625801e+09,1,'2022-08-17T09:45:19Z',NULL,NULL,NULL,'["Infrastructure as Code", "Ansible", "System Patching"]','["[COMMUNITY-TOOL]"]','["docs/ansible.md"]','["ansible.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2022-08-17T09:45:19Z", "gh_stars": 75, "gh_open_issues_30d": 2, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:58.206176+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/UnderGreen/ansible-prometheus-node-exporter','github.com/UnderGreen/ansible-prometheus-node-exporter','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','267c4a5a22b8f13e0dd4d841f28bc792623b0e71ce2d0d52ff65594e9557af40',100.0,1779030605.59223,1,'2026-05-17T17:10:05.592230+02:00',NULL,NULL,NULL,'[]','[]','["docs/prometheus.md"]','[]','{}','{"gh_license": "GPL-2.0", "gh_open_issues_30d": 7, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:34:58.901293+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Unitech/pm2','PM2','','2026',5,'An industry-standard production process manager for Node.js workloads. Despite the rise of Kubernetes-native process management, PM2 remains the preferred daemon for bare-metal Node.js apps, VM-based services, and IoT microservices running at the edge in 2026.','JavaScript','Repository','Beginner',1,'online','manual','475da0c52dd00c9a32421d48794c494e6a4433d27fc1094d97e7e7d0a9e999c4',100.0,1.77903303755152797e+09,1,'2026-05-21T09:14:07Z',NULL,NULL,NULL,'["Development", "Runtime", "Node.js"]','["[DE FACTO STANDARD]"]','["docs/monitoring.md"]','["monitoring.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-05-21T09:14:07Z", "gh_stars": 43210, "gh_open_issues_30d": 1084, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:34:59.628982+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/VictoriaMetrics/operator','VictoriaMetrics/operator','','2024',5,'Coordinates components of VictoriaMetrics (including VMCluster and VMAgent). It manages complex metrics scraping rules and automates long-term TSDB storage scaling.','Go','Operator','Advanced',0,'online','manual','2d4789b290a170c9730e66d1a451dca9696340d3fb570a83ec97e5c2065352f3',100.0,1.77903302531226801e+09,1,'2026-06-14T07:05:30Z',NULL,NULL,NULL,'["Observability", "Metrics", "TimeSeries Databases", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-14T07:05:30Z", "gh_stars": 566, "gh_open_issues_30d": 35, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:35:00.383409+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Vigneshwari-08/Server_Log-Analyzer-Intrusion-Detector','Server Log Analyzer and Intrusion Detector','A Python-based log analysis tool designed to parse server logs and detect security anomalies/intrusions.','2023',4,'Server Log Analyzer and Intrusion Detector is a security utility designed to ingest and parse server log files to identify suspicious behavior, brute-force patterns, and malicious activities. Leveraging customizable regular expression filters and Python-based parser logic, the tool maps security threats, generates analytical summaries, and flags potential security intrusions. This represents a lightweight, extensible script for automating manual security review workflows in staging or small-scale host setups.','English','Repository','Intermediate',0,'online','automatic','a43045c01ffddec417eaf59ffcaf69e4b396a52288a3504236613b00abe14b0d',NULL,1.7803520036898539e+09,0,'2026-06-02T00:13:23.689854+02:00',NULL,NULL,NULL,'["Security", "Log Analysis", "Intrusion Detection"]','["[COMMUNITY-TOOL]", "[GUIDE]"]','[]','[]','{}','{"category": "devsecops", "reputation_status": "Vetted", "reputation_summary": "A lightweight, community-oriented utility used primarily for educational security projects or small hosting servers to check patterns of unauthorized access.", "social_preview_url": "https://opengraph.githubassets.com/4644e9f6708ce656bb8601f280246206a37cfcb5f4781d70bfb6afbbe6d2787c/Vigneshwari-08/Server_Log-Analyzer-Intrusion-Detector", "source_provenance": "X.com (nubenetes)", "suggested_new_category": "", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:01.106515+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/VikParuchuri/surya','github.com/VikParuchuri/surya','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','1bcfe1599f12fbc0f1c286bcae888e415e4a4ca273920893162374e77c0dafa1',100.0,1.779032228106817e+09,0,'2026-05-17T17:37:08.106817+02:00',NULL,NULL,NULL,'[]','[]','["docs/mlops.md"]','[]','{}','{"duplicate_of": "https://github.com/datalab-to/surya", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:01.767316+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/Wilfred/difftastic','==github.com/Wilfred/difftastic==','','2021',5,'Difftastic is a structural diff tool that compares source files based on their abstract syntax trees (ASTs). For platform teams, it filters out noise like formatting shifts in Kubernetes manifests and highlights genuine semantic changes. It dramatically increases review speeds for complex changes.','Rust','CLI Tool','Intermediate',0,'online','manual','4d74d1860ada6c88910ee8233af26ab96593491adbf0fc1fe0babbdd2d894227',100.0,1.77903068341413497e+09,1,'2026-06-12T21:38:09Z',NULL,NULL,NULL,'["GitOps & Delivery", "Configuration Management", "Developer Productivity"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-12T21:38:09Z", "gh_stars": 25487, "gh_open_issues_30d": 280, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:35:02.472507+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/William-Yeh/ansible-prometheus','github.com/William-Yeh/ansible-prometheus','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','0af505c06542722a2ed175962d2a7db86448f9885e230047684d5c4b88d02b52',100.0,1.77903295307397198e+09,1,'2026-05-17T17:49:13.073972+02:00',NULL,NULL,NULL,'[]','[]','["docs/prometheus.md"]','[]','{}','{"gh_license": "MIT", "gh_open_issues_30d": 12, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:35:03.229263+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/XI-lab/PyExPool','Python Multi-Process Execution Pool','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','fab939ac4014af479885a8ef4424fbe5c02e011461b5675af52924e0029de292',100.0,1.77903421792122697e+09,0,'2026-05-17T18:10:17.921227+02:00',NULL,NULL,NULL,'[]','[]','["docs/python.md"]','[]','{}','{"duplicate_of": "https://github.com/eXascaleInfolab/PyExPool", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:03.887686+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/XingangPan/DragGAN','github.com/XingangPan/DragGAN','','2023',5,'An interactive GAN-based image manipulation system. Users drag specific control points of an image to dynamically alter object dimensions, poses, and facial structures.','English','Repository','Advanced',0,'online','manual','fab022b2fe0509e5278ad44feab31ba191e4418eb31ed1bd711d28bcf167db08',100.0,1779029629.12279,1,'2024-05-18T17:51:40Z',NULL,NULL,NULL,'["Computer Vision", "Deep Learning Research", "Generative AI"]','["[DE FACTO STANDARD]"]','["docs/ai.md"]','["ai.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2024-05-18T17:51:40Z", "gh_stars": 35825, "gh_open_issues_30d": 153, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:35:04.628291+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/XtratusCloud/terraform-provider-azureipam','Terraform Provider for Azure IPAM','','2024',5,'Custom open-source Terraform provider built to automate cloud IP address allocation directly from centralized Azure IPAM solutions. Ensures smooth networking configuration inside containerized setups.','Go','Repository','Advanced',0,'online','manual','fef93304fb0712339d6419f8667f224c0f1def83a862253dff0d4f763f37686d',100.0,1.77903019978273105e+09,1,'2024-09-21T06:31:41Z',NULL,NULL,NULL,'["Infrastructure as Code", "Terraform Providers", "Azure IPAM"]','["[DE FACTO STANDARD]"]','["docs/azure.md", "docs/iac.md", "docs/terraform.md"]','["azure.md", "iac.md", "terraform.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-09-21T06:31:41Z", "gh_stars": 10, "gh_open_issues_30d": 6, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:05.379034+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/XuehaiPan/nvitop','==github.com/XuehaiPan/nvitop== 🌟','','2024',4,'An interactive, terminal-based GPU monitoring tool that acts as a modern replacement for nvidia-smi. It provides real-time tracking of GPU resource consumption, memory configurations, process owners, and historical usage diagrams directly in the shell.','Python','Repository','Beginner',0,'online','manual','4072dada8ec4fc2bb58f1e44395a93a2e0622ffbad6870ddf4d65c930df1d094',100.0,1.77903333951961898e+09,1,'2026-05-25T13:47:09Z',NULL,NULL,NULL,'["Infrastructure", "GPU Monitoring", "Command Line Tools"]','["[ENTERPRISE-STABLE]"]','["docs/mlops.md"]','["mlops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-05-25T13:47:09Z", "gh_stars": 6957, "gh_open_issues_30d": 19, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:35:06.104833+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/YannickRe/msgraph-utility-scripts','YannickRe/msgraph-utility-scripts','','2023',2,'A public repository compiling specialized utility files designed to interact with MS Graph endpoints. Facilitates typical administrator chores like account auditing and system migration tasks.','PowerShell','GitHub Repository','Intermediate',0,'online','manual','3f290e857fcc6afc146a55c2ff426e8ea4bb4b378964975b7e05992740bb4bbf',100.0,1.7790313934104371e+09,1,'2021-05-27T06:29:15Z',NULL,NULL,NULL,'["Identity and Access", "Microsoft Graph API", "Utility Scripts", "Automation Resources"]','["[COMMUNITY-TOOL]"]','["docs/azure.md"]','["azure.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2021-05-27T06:29:15Z", "gh_stars": 8, "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:06.838881+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/a8m/golang-cheat-sheet','github.com: golang-cheat-sheet','','2025',0,'A high-density Go reference database. It details Go core syntaxes, standard library definitions, channels, interface rules, and concurrency patterns to accelerate systems-level software development.','Go','Cheat Sheet','Advanced',0,'online','manual','fa235c920c2a052cbdc6ec594a298ac0f6f1bcc878eae3571214762df19c2ec1',100.0,1.77903208079353189e+09,1,'2023-11-08T10:46:16Z',NULL,NULL,NULL,'["Software Engineering", "Languages", "Go"]','["[ENTERPRISE-STABLE]"]','["docs/cheatsheets.md", "docs/golang.md"]','["golang.md", "cheatsheets.md"]','{}','{"gh_stars": 8800, "gh_pushed": "2023-11-08T10:46:16Z", "gh_license": "N/A", "gh_open_issues_30d": 24, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:35:07.549364+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aabouzaid/kubech','kubech (kubectl change)','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','11ed16e65ddcf82ef74baf50412897b3a6289b43d554b81516f5144f6391e7a7',100.0,1.77903139352439689e+09,0,'2026-05-17T17:23:13.524397+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"duplicate_of": "https://github.com/DevOpsHiveHQ/kubech", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:08.210234+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aalmiray/q-cli','aalmiray/q-cli','','2020',1,'An early community command-line interface helper for bootstrapping and managing Quarkus projects. While the official Quarkus CLI eventually integrated these capabilities, this repository represents a pivotal step in Quarkus DX history.','Java','Repository','Beginner',0,'online','manual','30248eeb96ffad2fb930bf0fe36a0d4da972f64119691940f2c5c16b4c573681',100.0,1779030019.49551,1,'2022-11-02T16:43:54Z',NULL,NULL,NULL,'["Developer Tools", "Quarkus CLI", "Local Development"]','["[COMMUNITY-TOOL]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2022-11-02T16:43:54Z", "gh_stars": 11, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:08.940439+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aarondl/sqlboiler','volatiletech/sqlboiler','','2025',4,'Curator Insight frames SQLBoiler as a database-first generator tool producing type-safe Go ORM code from database schemas. Live Grounding confirms its widespread production usage where performance and strict static typing are preferred over runtime-reflective ORMs like GORM.','English','Repository','Advanced',0,'online','manual','fe922b04a8f76d728e527c3e1619705c5676ba8dca4d29ebadfd32c716dba516',100.0,1.77913049498287796e+09,1,'2026-06-08T22:47:58Z',NULL,NULL,NULL,'["Database", "ORM", "Go Libraries"]','["[ENTERPRISE-STABLE]"]','["docs/golang.md"]','["golang.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-08T22:47:58Z", "gh_stars": 6990, "gh_open_issues_30d": 106, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:35:09.676905+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/abahmed/kwatch','==abahmed/kwatch==','','2021',3,'A real-time error monitor and alert router that monitors Kubernetes logs and pod events. When crash loops occur, it streams exact logs and statuses to systems like Slack, Teams, or custom webhooks.','Go','Kubernetes Operator','Intermediate',1,'online','manual','701ef11432421abc27ce038312f4098feb632c5d4e16e811e756b8336ab061b4',100.0,1.77903046235415601e+09,1,'2026-06-14T10:00:44Z',NULL,NULL,NULL,'["Observability & Performance", "Real-Time Monitoring", "Error Alerting"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-14T10:00:44Z", "gh_stars": 1010, "gh_open_issues_30d": 25, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:35:10.417345+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/abessifi/ansible-sqlplus','github.com/abessifi/ansible-sqlplus','','2021',2,'A lightweight community-focused Ansible module enabling seamless SQL*Plus shell operations within automated tasks. It allows DBAs to execute SQL and PL/SQL scripts without writing complex shell wrappers. It serves as an ad-hoc query execution tool for classic on-premises database systems.','Python','tool','intermediate',0,'online','manual','25b254c33750830b281c2fa6649b74eb2a90efd5966bee568a9cdc4c4a98ed65',100.0,1.77903413958544302e+09,1,'2019-03-20T06:57:44Z',NULL,NULL,NULL,'["Infrastructure as Code", "Ansible", "Database Deployment"]','["[COMMUNITY-TOOL]"]','["docs/ansible.md"]','["ansible.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2019-03-20T06:57:44Z", "gh_stars": 1, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:11.128800+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/abhirockzz/kubexpose-operator','abhirockzz/kubexpose-operator','','2021',0,'An experimental Go-based operator designed to automatically create Ingress resources or load balancers for annotated services. Designed as a learning showcase for Kubebuilder workflows, this project is archived in 2026 but remains a valuable reference for custom ingress generation patterns.','Go','Kubernetes Operator','Medium',0,'online','manual','af604f168ab50f3712a4d5e6e0edc26a37919202353108225cfa8adad87f1ad9',100.0,1.78173604678917288e+09,1,'2026-06-18T00:40:46.789173+02:00',NULL,NULL,NULL,'["Networking", "Operator", "Expose Service"]','["[EMERGING]", "[LEGACY]"]','["docs/kubernetes-operators-controllers.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "kubernetes-operators-controllers.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 3, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:11.882672+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/abhishek-ch/around-dataengineering','github: A very Long never ending Learning around Data Engineering & Machine'' Learning','','2023',2,'A comprehensive curated repository documenting data engineering pipelines, distributed computing principles, and machine learning foundations. It aggregates core concepts of large-scale data systems, covering ingest-to-model-delivery workflows. Essential for developers transitioning from traditional software engineering to data-intensive systems.','Python','Repository','Intermediate',0,'online','manual','f930ab3635d81634c313246122368bc66abc84911c6b1c41982bf56250b05273',100.0,1.7817360914302349e+09,1,'2026-06-18T00:41:31.430235+02:00',NULL,NULL,NULL,'["Data Engineering", "Learning Roadmap", "Machine Learning"]','["[COMMUNITY-TOOL]"]','["docs/mlops.md", "docs/other-awesome-lists.md"]','["mlops.md", "other-awesome-lists.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "is_special": true, "gh_open_issues_30d": 2, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:12.604973+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aca/go-kubectx','go-kubectx','','2022',0,'A high-performance, Go-native alternative port of the traditional kubectx script. Focuses on speed and execution efficiency when searching and switching between hundreds of active Kubernetes cluster profiles.','Go','CLI Tool','Beginner',0,'online','manual','be952c70d70097b957944cda76e72020789653233dc2985806989e52416675c2',100.0,1.78173604674044108e+09,1,'2026-06-18T00:40:46.740441+02:00',NULL,NULL,NULL,'["Developer Experience", "CLI Utilities", "Context Management"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 5, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:13.311406+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/acantril/learn-cantrill-io-labs','github.com/acantril/learn-cantrill-io-labs','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','3e6603ced2648ecd72569d6c06c2883e6124acc1ad1af3c4162355af79b0a829',100.0,1.779031389407485e+09,1,'2026-05-17T17:23:09.407485+02:00',NULL,NULL,NULL,'[]','[]','["docs/aws-training.md"]','[]','{}','{"gh_license": "MIT", "gh_open_issues_30d": 40, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:35:14.049259+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/acidonper/jump-app-docs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','f743c3f06eb6de0347c96663c2485b27061d6c694090c1dfdb7d910abdb7228f',100.0,1.77902993938969707e+09,0,'2026-05-17T16:58:59.389697+02:00',NULL,NULL,NULL,'[]','[]','["docs/demos.md"]','[]','{}','{"gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:14.753446+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/acidonper/jump-app-gitops',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','9df86ddeab85d5e49fe8e68c05013e8ca8ba59b65df2f3b91abb618d1f6d6f1f',100.0,1.77903024906080794e+09,0,'2026-05-17T17:04:09.060808+02:00',NULL,NULL,NULL,'[]','[]','["docs/demos.md"]','[]','{}','{"gh_open_issues_30d": 2, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:15.494869+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/acorn-io/acorn','acorn-io/acorn','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','1606eafe22401d318436f235433ded3b934cfa77ab978a922eb40436d02db510',100.0,1.77903308893226289e+09,0,'2026-05-17T17:51:28.932263+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"duplicate_of": "https://github.com/obot-platform/obot", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:16.143036+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/actions-runner-controller/actions-runner-controller','actions-runner-controller 🌟','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','e0b81792621a3f351f640bbf07601f3cbc5efdefbb09a7cdce88ae3ced404fdf',100.0,1.77903093210913896e+09,0,'2026-05-17T17:15:32.109139+02:00',NULL,NULL,NULL,'[]','[]','["docs/git.md"]','[]','{}','{"duplicate_of": "https://github.com/actions/actions-runner-controller", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:16.805935+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/actions/actions-runner-controller','github.com/actions/actions-runner-controller 🌟','','2020',5,'Official Kubernetes operator designed to manage self-hosted GitHub Actions runner infrastructure dynamically. Integrates natively with Horizontal Pod Autoscaler (HPA) targets to scale runner deployments in response to webhook event metrics.','Go','Repository','Advanced',1,'online','manual','e0b81792621a3f351f640bbf07601f3cbc5efdefbb09a7cdce88ae3ced404fdf',100.0,1.77903365856200289e+09,1,'2026-06-12T23:13:55Z',NULL,NULL,NULL,'["CI/CD Pipeline", "Kubernetes & Containers", "Self-Hosted Infrastructure"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["git.md", "jenkins-alternatives.md", "kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T23:13:55Z", "gh_stars": 6298, "gh_open_issues_30d": 365, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:35:17.557969+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet','Markdown Cheat Sheet 4','','2026',5,'One of the most starred and utilized Markdown references on GitHub. Curator Insight emphasizes its extreme offline utility. Live Grounding validates its legacy status as the primary standard for formatting across modern source code platforms.','Markdown','Cheat Sheet','Beginner',0,'online','manual','ba965aba47f46c891f98b4125d49af98b9dbc1aba0abd75215f289ea8d8600c8',100.0,1.77903296915447211e+09,1,'2025-08-22T00:21:50Z',NULL,NULL,NULL,'["Software Development", "Documentation Tools", "Markdown"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/cheatsheets.md", "docs/mkdocs.md"]','["mkdocs.md", "cheatsheets.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2025-08-22T00:21:50Z", "gh_stars": 60214, "gh_open_issues_30d": 318, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:35:18.282534+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/adaptant-labs/k8s-auto-labeller','Kubernetes Node Auto Labeller','','2020',5,'An automated labeling controller designed to tag Kubernetes nodes dynamically based on custom configurations or hardware discoveries. In production, this allows platform engineers to target hardware accelerators (GPUs, ASICs) with specific workload nodeSelectors. Live evaluation shows low active maintenance, as many teams transitioned to Node Feature Discovery (NFD) or Cluster API capabilities.','Go','Operator','Medium',0,'online','manual','24ec81ac9e8ac36b38e924eda1e90e1616919f7f8406b3879700f8e30a4c7f49',100.0,1.77903275467909502e+09,1,'2020-11-16T19:46:39Z',NULL,NULL,NULL,'["Infrastructure", "Node Provisioning", "Labeling & Automation"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2020-11-16T19:46:39Z", "gh_stars": 8, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:19.038296+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/adaptant-labs/k8s-dt-node-labeller','k8s-dt-node-labeller','','2023',5,'A specialized controller designed to label nodes dynamically based on Device Tree specifications. It enables hardware-aware scheduling by analyzing local physical attributes and exposing them as standard Kubernetes selector labels.','Go','Controller','Advanced',0,'online','manual','e864fe7a23aefaf57fe5bf2eb54ab294e360ce4bb83bade4c7b3461f8b980026',100.0,1.77903108539346408e+09,1,'2020-11-17T21:12:14Z',NULL,NULL,NULL,'["Infrastructure", "Node Management", "Hardware Classification"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2020-11-17T21:12:14Z", "gh_stars": 17, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:19.767453+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/adaptant-labs/k8s-node-label-monitor','k8s-node-label-monitor: Kubernetes Node Label Monitor provides a custom'' Kubernetes controller for monitoring and notifying changes in the label states of Kubernetes nodes (labels added, deleted, or updated), and can be run either node-local or cluster-wide','','2023',3,'A custom controller built to monitor label states on Kubernetes node resources. It dispatches notifications on label updates, additions, or deletions, maintaining configuration trust across larger clusters.','Go','Controller','Intermediate',1,'online','manual','6a8f69c637c8effae9484ef69f8807bfe4539e079283db28f6fac8f416dc0674',100.0,1.77903357976588606e+09,1,'2021-02-09T11:00:49Z',NULL,NULL,NULL,'["Infrastructure", "Node Management", "Auditing & Compliance"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2021-02-09T11:00:49Z", "gh_stars": 3, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:20.552707+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/admindroid-community/powershell-scripts','github.com/admindroid-community/powershell-scripts: PowerShell Scripts for'' Microsoft 365 Management, Reporting, and Auditing','','2024',0,'A collection of administrative scripts designed for auditing active users, licensing allocations, and configuration status within Microsoft 365 tenants.','PowerShell','GitHub Repository','Intermediate',0,'online','manual','2792ab510a7b130b5c3144c10f0acc5bed874b21df177c1abcf3dcda3c930100',100.0,1.78173587976624393e+09,1,'2026-06-18T00:37:59.766244+02:00',NULL,NULL,NULL,'["Identity and Access", "Microsoft 365", "Auditing & Reporting", "Administration"]','["[COMMUNITY-TOOL]"]','["docs/azure.md"]','["azure.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:21.271850+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/adriannovegil/awesome-observability','github.com/adriannovegil/awesome-observability: Awesome Observability 🌟','','2026',2,'A highly structured catalog mapping telemetry collection systems, including OpenTelemetry exporters, Prometheus metric architectures, Grafana monitoring boards, and continuous system profiling dashboards.','Markdown','Awesome List','Advanced',1,'online','manual','05b5afe1463a41fa204fac02ec29a2aca3890d4a9f0a527f8a892cec2de520e6',100.0,1.77903397716117405e+09,1,'2026-05-11T11:58:36Z',NULL,NULL,NULL,'["Cloud Native", "Observability", "Telemetry and Metrics"]','["[COMMUNITY-TOOL]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "CC0-1.0", "gh_pushed": "2026-05-11T11:58:36Z", "gh_stars": 636, "is_special": true, "gh_open_issues_30d": 21, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:35:21.978160+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aelsabbahy/goss','aelsabbahy/goss','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','b2a6e2ded5a8d1eac440ffd247a8f8c9983b6614838f8a9d3be544f2fde6df12',100.0,1.77903022906840491e+09,0,'2026-05-17T17:03:49.068405+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"duplicate_of": "https://github.com/goss-org/goss", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:22.623239+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/affaan-m/ECC','ECC - The Agent Harness Performance Optimization System','A professional performance harness providing modular skills, memory optimizations, and security scanning for advanced AI coding assistants.','2026',4,'This repository provides a performance optimization harness designed for agentic environments like Claude Code and Cursor. It implements persistent semantic memory, structured natural-language ''skills'' as parameters, and execution safeguards via the AgentShield scanner. It aims to reduce token consumption and eliminate redundant instructions, transforming fragile prompting patterns into reproducible development infrastructure.','en','Repository','Advanced',0,'online','automatic','a68b20559e76cc4d181a84ba6031061ed34e6d3863a6d155e8b07540ac542e55',NULL,1.78035257155632305e+09,0,'2026-05-31T06:45:42Z',NULL,NULL,NULL,'["Artificial Intelligence", "AI Agents", "Model Context Protocol", "Harness Performance Optimization"]','["[EMERGING]", "[COMMUNITY-TOOL]"]','[]','[]','{}','{"category": "ai-agents-mcp", "gh_license": "MIT", "gh_pushed": "2026-05-31T06:45:42Z", "gh_stars": 202119, "reputation_status": "Vetted", "reputation_summary": "Highly regarded emerging system optimizing terminal agent runtime states, featuring zero reported vulnerabilities outside its documented patches.", "social_preview_url": "https://opengraph.githubassets.com/9d755758b9c50919c393f44e8fa1910cd7813f12349332f5d66f232c640154c1/affaan-m/ECC", "source_provenance": "X.com (nubenetes)", "suggested_new_category": "agent-performance", "gh_open_issues_30d": 48, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:35:23.362287+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/ahas-sigs/kube-ebpf-exporter','kube-ebpf-exporter 🌟','','2022',5,'A Prometheus-compatible exporter that translates system events captured via custom eBPF programs into actionable metrics. This allows platform engineers to trace low-level syscalls, file system latency, and network performance with minimal overhead. The project represents a growing shift toward kernel-level observability.','Go','Exporter','High',0,'online','manual','ffbd284277e0f0a2a7affc010aacea050871b3cbae526f63bd22a32b7c9f5f6b',100.0,1779029884.0295,1,'2021-05-13T05:50:56Z',NULL,NULL,NULL,'["Observability", "Performance & Kernel", "eBPF Monitoring"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2021-05-13T05:50:56Z", "gh_stars": 55, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:24.103867+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/ahmetb/kubectl-aliases','ahmetb/kubectl-aliases','','2026',5,'An automated system that generates systematic shell aliases for ''kubectl'', significantly enhancing engineering productivity. It minimizes operational friction by programmatic expansion of over 800 permutations of flags and subcommands, allowing administrators to interface with Kubernetes clusters using succinct shorthand sequences.','Shell','Repository','Intermediate',0,'online','manual','310aec75dce6ba83e1bbaaca8e248da167c2c480d64337a9d4cc86aeff1eb8ed',100.0,1.77903357979749488e+09,1,'2025-05-11T17:04:45Z',NULL,NULL,NULL,'["Cloud Native", "Kubernetes", "CLI & Debugging"]','["[DE FACTO STANDARD]"]','["docs/kubectl-commands.md"]','["kubectl-commands.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-05-11T17:04:45Z", "gh_stars": 3691, "gh_open_issues_30d": 3, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:24.823345+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/ahmetb/kubectl-foreach','github.com/ahmetb/kubectl-foreach: kubectl foreach ⭐','','2025',1,'kubectl-foreach is a highly efficient plugin that runs kubectl commands across multiple contexts, namespaces, or resources in parallel. It handles asynchronous command execution and presents grouped terminal output, drastically optimizing multi-cluster administrative operations.','Go','CLI Plugin','Intermediate',0,'online','manual','a348bd4f6024b67b9755bdcaa928abf3ca154c05263cca86ea1a898ecf30758a',100.0,1.77903442507151508e+09,1,'2026-06-08T22:54:07Z',NULL,NULL,NULL,'["Operations", "CLI Tooling", "Multi-resource Execution"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-08T22:54:07Z", "gh_stars": 489, "gh_open_issues_30d": 7, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:25.528808+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/ahmetb/kubectl-tree','kubectl-tree','','2025',5,'A crucial kubectl plugin that queries Kubernetes APIs to visually construct and present the ownership tree of API objects via ownerReferences. Crucial for tracing the lineage of ReplicaSets, Pods, Deployments, and Custom Resources (CRDs) in active namespaces.','Go','CLI Plugin','Intermediate',0,'online','manual','a4af8c68f8ba51a9398b292e4551dd81243192c570df44497c92264404ecbc5c',100.0,1779033415.98258,1,'2026-05-18T01:49:07Z',NULL,NULL,NULL,'["Developer Experience", "CLI Utilities", "Object Relationships"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-05-18T01:49:07Z", "gh_stars": 3386, "gh_open_issues_30d": 15, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:35:26.233064+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/ahmetb/kubectx','==kubectx + kubens: : Power tools for kubectl==🌟🌟','','2026',5,'Highly optimized command-line utilities for switching context configurations and namespaces inside kubectl. Indispensable for multi-cluster environments, they radically optimize developer productivity and prevent accidental target execution via clear interactive lists.','Go','CLI Tool','Beginner',0,'online','manual','39b78501f9b3e9898481b8ef40f8b2a1d81c840109d2fa2ad117564edb65d584',100.0,1.77903144259843802e+09,1,'2026-05-15T15:43:00Z',NULL,NULL,NULL,'["Developer Experience", "CLI Utilities", "Context Management"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-05-15T15:43:00Z", "gh_stars": 19807, "gh_open_issues_30d": 42, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:35:26.959190+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/ahmetb/kubernetes-network-policy-recipes','==ahmetb/kubernetes-network-policy-recipes== 🌟','','2021',5,'The premier open-source repository for reusable NetworkPolicy templates. Provides validated configuration files to handle common cloud-native security patterns.','YAML','Repository','Intermediate',1,'online','manual','0fc77e7ecc41f1b0736d3aaf88a7a6ffbddf4068bbaa1b4f92d12a70246e65e2',100.0,1.77903228283465099e+09,1,'2025-02-07T08:38:37Z',NULL,NULL,NULL,'["Networking", "Security", "Recipes"]','["[DE FACTO STANDARD]"]','["docs/demos.md", "docs/kubernetes-networking.md"]','["kubernetes-networking.md", "demos.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-02-07T08:38:37Z", "gh_stars": 6144, "gh_open_issues_30d": 5, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:27.758443+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aidansteele/secretsctx','aidansteele/secretsctx','','2022',5,'A Go-based runtime library designed to inject dynamic secrets from external storage layers directly into context-aware serverless pipelines. By managing runtime secret validation outside main configuration structures, it significantly reduces code complexity.','Go','Library','Advanced',1,'online','manual','a9d1ecfb1a2e0682c6a852e19c1ffe4a86af289893571144fc1306f8d40927e2',100.0,1.7817358777612729e+09,1,'2026-06-18T00:37:57.761273+02:00',NULL,NULL,NULL,'["Security & Governance", "Secret Management", "Go Runtime"]','["[DE FACTO STANDARD]"]','["docs/aws-serverless.md"]','["aws-serverless.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:28.460337+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aimhubio/aim','github.com/aimhubio/aim','','2024',4,'Aim is an open-source, highly responsive experiment tracking and visualization dashboard for machine learning. It provides a robust query language and a user-friendly UI to compare thousands of metrics, hyperparameters, and logs across deep learning runs.','Python','Repository','Intermediate',1,'online','manual','997d320ec7590772d2d44a8b638c1f424a50731d142f6cda3cae805aa5b305fb',100.0,1.77903367199525403e+09,1,'2026-06-13T20:26:46Z',NULL,NULL,NULL,'["MLOps", "Experiment Tracking", "Visualization"]','["[ENTERPRISE-STABLE]"]','["docs/mlops.md"]','["mlops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T20:26:46Z", "gh_stars": 6154, "gh_open_issues_30d": 463, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:35:29.165420+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/airwallex/k8s-pod-restart-info-collector','github.com/airwallex: k8s-pod-restart-info-collector','','2022',0,'An automated utility designed to capture and log state configuration, events, and logs instantly when a pod restarts, offering immediate post-mortem insights for ephemeral microservices.','Go','Tool','Intermediate',0,'online','manual','3e4e21d175049930d8f16e327994a22b47054e30aa250ad356667034e77895de',100.0,1781736057.34144,1,'2026-06-18T00:40:57.341440+02:00',NULL,NULL,NULL,'["Observability", "Debugging", "Automation"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-troubleshooting.md"]','["kubernetes-troubleshooting.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 18, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:35:29.910353+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/ajayk/drifter','github.com/ajayk/drifter','','2021',5,'Drifter is a CLI utility designed to detect structural configuration drift across Kubernetes resources. By comparing live running cluster states against baseline templates, it identifies configuration changes. This tool provides lightweight validation for infrastructure consistency.','Go','CLI Tool','Intermediate',0,'online','manual','7e6917d7a7462342ffc27824d9e20008d937114fda3cf61353add05bc00193bf',100.0,1.77903318786063408e+09,1,'2024-01-09T17:41:36Z',NULL,NULL,NULL,'["GitOps & Delivery", "Configuration Management", "Drift Detection"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-01-09T17:41:36Z", "gh_stars": 17, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:30.648873+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/ajmyyra/ambassador-auth-oidc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','ff59f529d8db417c89704bee344d50311ebfcc54186836e5265d3fb6c301965c',100.0,1.77903162533064794e+09,1,'2026-05-17T17:27:05.330648+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-security.md"]','[]','{}','{"gh_license": "MIT", "gh_open_issues_30d": 7, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:31.404290+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/akuity/awesome-argo','akuity/awesome-argo 🌟','','2026',3,'A duplicate entry detailing the CNCF Argo ecosystem configurations. Outlines progressive application delivery strategies, canary deployments, declarative cluster state reconciliations, and custom Argo plugins.','Markdown','Awesome List','Advanced',1,'online','manual','4cfcb2323980bc80f403202b4611bc3b2dd06b3d8dda2c07d39412a509e54f89',100.0,1.7790314068804109e+09,1,'2026-02-28T03:02:12Z',NULL,NULL,NULL,'["Cloud Native", "GitOps", "Argo Project Ecosystem"]','["[COMMUNITY-TOOL]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-02-28T03:02:12Z", "gh_stars": 2449, "is_special": true, "gh_open_issues_30d": 2, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:32.168231+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/akuity/kargo','==github.com/akuity/kargo==','','2023',5,'Kargo is a GitOps-native application promotion engine that coordinates software releases across staging, pre-production, and production. Operating as a Kubernetes controller, it manages promotion state sequences dynamically via custom resources. It simplifies Git manipulation during deployment rollouts.','Go','GitOps Controller','Advanced',0,'online','manual','ebf41a4d95c3859a0afbdad795500f43901217ee56051ce957b11ffaa90529ee',100.0,1.77903343630711698e+09,1,'2026-06-14T05:29:29Z',NULL,NULL,NULL,'["GitOps & Delivery", "Application Promotion", "Lifecycle Management"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-14T05:29:29Z", "gh_stars": 3350, "gh_open_issues_30d": 191, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:35:32.909316+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/akullpp/awesome-java','Awesome Java 🌟','','2026',5,'A premier directory of validated Java frameworks, high-performance serialization libraries, and microservices engines like Spring Boot, Quarkus, and Micronaut. Essential for legacy modernization projects and enterprise-grade distributed systems. Remains a foundational handbook for enterprise JVM optimization.','Java','Repository','Intermediate',1,'online','manual','812519e1d1f39879872200f2cd381725b275fc4c3a6108bec333cdc778654a7b',100.0,1779031410.80023,1,'2026-04-12T12:40:14Z',NULL,NULL,NULL,'["Programming Languages", "Java", "Resources"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-04-12T12:40:14Z", "gh_stars": 48210, "is_special": true, "gh_open_issues_30d": 28, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:35:33.662542+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/alcideio/advisor','Alcide Advisor: an agentless service for Kubernetes audit and compliance'' that''s built to ensure a frictionless and secured DevSecOps workflow','','2026',0,'Alcide Advisor is an agentless security tool originally engineered to validate Kubernetes configurations, workloads, and network rules against common vulnerabilities. Since the acquisition of Alcide, the repository has been archived and is no longer under active maintenance. It is primarily referenced as a historical model for static manifest parsing and rules-driven auditing.','Go','Static Analyzer','Intermediate',0,'online','manual','477a1f69dee0048b2f273002fb0ba196a9ff38474a0f11298171945860b9de9b',100.0,1.78173604700207591e+09,1,'2026-06-18T00:40:47.002076+02:00',NULL,NULL,NULL,'["Security", "Audit & Compliance", "Static Analysis"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:34.426212+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/alcideio/rbac-tool','==github.com/alcideio/rbac-tool==','','2025',3,'RBAC Tool is a powerful suite designed to simplify, audit, and generate Kubernetes Role-Based Access Control policies. It includes policy analysis commands, visual dependency graphs, and lookup capabilities to quickly ensure compliance with the least privilege security model.','Go','CLI / Visual Analyzer','Advanced',0,'online','manual','c8448727bac561737be07944f0ac776fb84063cafeabccdd3fdcebbd63aa30ab',100.0,1.779032817928272e+09,1,'2025-02-13T20:57:41Z',NULL,NULL,NULL,'["Security", "Access Control", "RBAC Audit"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-02-13T20:57:41Z", "gh_stars": 1077, "gh_open_issues_30d": 12, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:35:35.180306+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/alcideio/skan','sKan','','2020',2,'sKan (by Alcide) was an early static analysis tool for scanning configuration files and Helm charts to discover security vulnerabilities. It has since been archived, with modern platforms choosing robust, active alternatives such as Checkov.','Go','CLI Scanner','Simple',0,'online','manual','0d4218db4fc62d51f1e3a8c89cd6b2e2eed5e40cd648213bf00d979511444948',100.0,1779031901.12451,1,'2023-03-03T16:29:28Z',NULL,NULL,NULL,'["Security & Identity", "Compliance & Auditing", "Static Code Analysis"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-03-03T16:29:28Z", "gh_stars": 204, "gh_open_issues_30d": 7, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:35.919842+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/alexdzyoba/ansible-jmx-exporter','github.com/alexdzyoba/ansible-jmx-exporter','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','00179b8c10f6a85e83cb33a2c17eac2a8351b034c75c06cd87e9b731ba98df60',100.0,1.779030091492558e+09,1,'2026-05-17T17:01:31.492558+02:00',NULL,NULL,NULL,'[]','[]','["docs/prometheus.md"]','[]','{}','{"gh_license": "MIT", "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:36.648762+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/alexellis/k3sup','**k3sup (said ''ketchup'')**','','2026',4,'An utility by Alex Ellis using SSH to provision K3s directly from local machines. It sets up secure, direct API configurations, bridges cluster nodes instantly, and configures target servers for operational readiness.','Go','Tool','Intermediate',0,'online','manual','d47d1c0f36ca75f93fc3b56082ac640b6aaacc77c2294cde2f50f69e80b06665',100.0,1.77903203728995704e+09,1,'2026-03-05T11:13:15Z',NULL,NULL,NULL,'["Edge & IoT", "Cluster Provisioning", "SSH Bootstrapping"]','["[ENTERPRISE-STABLE]"]','["docs/matrix-table.md", "docs/rancher.md"]','["rancher.md", "matrix-table.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-03-05T11:13:15Z", "gh_stars": 7383, "gh_open_issues_30d": 29, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:35:37.375460+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/alexellis/registry-creds','registry-creds','','2023',5,'Automatically syncs image pull credentials across diverse namespaces from registry platforms like ECR, GCR, and Docker Hub. It solves multi-tenant credential sharing securely without requiring manual duplications.','Go','Operator','Medium',0,'online','manual','c98b4b125f09915c117c9fc31b1fb47b55b3ed10bba3571831ebbb24fcd19084',100.0,1.7790292432515521e+09,1,'2024-12-21T13:24:00Z',NULL,NULL,NULL,'["Security", "Secrets Management", "Registry Authentication", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2024-12-21T13:24:00Z", "gh_stars": 350, "gh_open_issues_30d": 5, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:38.092118+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/alexellis/run-job','==github.com/alexellis/run-job==','','2020',3,'A developer-oriented utility written in Go to quickly trigger Kubernetes Jobs, track execution statuses, and stream execution logs directly to stdout. Simplifies local workflow testing and diagnostic debugging.','Go','Repository','Intermediate',0,'online','manual','15c4fd11e7ae38960f3112fa9957f3c4449d2f2dd58a635ef9f0c9877b25ba88',100.0,1.77903450255100798e+09,1,'2024-08-13T22:32:56Z',NULL,NULL,NULL,'["Workloads", "Batch Jobs", "Tooling"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md", "docs/kubernetes.md"]','["kubernetes-tools.md", "kubernetes.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2024-08-13T22:32:56Z", "gh_stars": 211, "gh_open_issues_30d": 9, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:38.832389+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aliesbelik/awesome-jmeter','Awesome JMeter','','2026',5,'A structured list of plugins, performance test plans, and reporting scripts designed to optimize Apache JMeter pipelines. Essential for load testing web services, gRPC endpoints, and databases under intense scale constraints. Acts as an excellent resource for performance engineering teams targeting resource bottlenecks.','Java','Repository','Intermediate',0,'online','manual','d126061c974412126edf2a91603124c2a05f2a984e2dded6cd7e51725d0b907f',100.0,1.77903340073237299e+09,1,'2026-05-05T22:22:40Z',NULL,NULL,NULL,'["Software Quality", "Testing", "JMeter"]','["[DE FACTO STANDARD]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "CC-BY-4.0", "gh_pushed": "2026-05-05T22:22:40Z", "gh_stars": 790, "is_special": true, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:39.530906+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/allure-framework/allure2','Allure Report 🌟','','2023',4,'A flexible, multi-language test report tool providing clean hierarchical representation of execution steps, attachments, and historical telemetry. Integrates with standard test runners across modern ecosystems.','Java','Tool','Intermediate',0,'online','manual','904874589c38dac686cfef5beed2a33eed33234405307bfd4478b46057c0924e',100.0,1.77903361006848788e+09,1,'2026-06-12T22:09:34Z',NULL,NULL,NULL,'["Software Engineering", "Testing", "Reporting"]','["[ENTERPRISE-STABLE]"]','["docs/qa.md"]','["qa.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T22:09:34Z", "gh_stars": 5422, "gh_open_issues_30d": 96, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:35:40.276802+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/amazon-archives/aws-training-demo','github.com/aws-samples/aws-training-demo','','2020',5,'Archived AWS training demonstration repository. Grounding verification confirms this repository is formally archived by Amazon, meaning it should be treated purely as an architectural reference rather than a base for production provisioning templates.','JavaScript','Repository','Basic',0,'online','manual','12ba405003f66717af427558892ecba6fc404c7a89e92fe1583a35c32d7cbee7',100.0,1.7791304949535911e+09,1,'2019-04-09T21:26:39Z',NULL,NULL,NULL,'["Public Cloud Providers", "AWS", "Training Archives"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2019-04-09T21:26:39Z", "gh_stars": 128, "gh_open_issues_30d": 2, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:41.018819+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/amazon-archives/aws-waf-sample','AWS WAF sample rules','','2024',5,'A historical repository containing sample AWS WAF rule sets and templates. Note: This repository is now officially archived by AWS. Contemporary deployment architectures rely on AWS Managed Rules or centralized configurations managed through AWS Firewall Manager rather than maintaining customized version-one JSON rules.','JSON','Repository','Intermediate',0,'online','manual','ddea1ea4fcf5f9a5fc9a8369dd1679d8d2742aac6828d7ed28b950d09abcd140',100.0,1.77913049495059299e+09,1,'2020-01-09T08:11:23Z',NULL,NULL,NULL,'["Security & Identity", "Network Security", "Web Application Protection"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/aws-security.md"]','["aws-security.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2020-01-09T08:11:23Z", "gh_stars": 511, "gh_open_issues_30d": 31, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:35:41.730367+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/amelbakry/kubernetes-active-passive','Kubernetes Active Passive Applications','','2021',0,'A reference architecture guiding the implementation of Active-Passive configurations within multi-region Kubernetes topologies. Provides template setups for handling state synchronization and global traffic failovers.','Go','Templates','Advanced',0,'online','manual','bf79c301fff4e55aa4ac515fcf282e6bf1ac6795640e5b21b135d27cfc6c44c6',100.0,1.78173604679029488e+09,1,'2026-06-18T00:40:46.790295+02:00',NULL,NULL,NULL,'["Reliability", "Architectural Patterns", "Disaster Recovery"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:42.446217+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/amitmavgupta/azure-terraform','github.com/amitmavgupta/azure-terraform','','2022',2,'A centralized repository of common Azure resource templates compiled using Terraform. Serves as a useful playground for setting up App Services, Cosmos DB, and Virtual Networks.','HCL','Repository','Beginner',0,'online','manual','77ad6a6af303e04c458fc78a1c7a75d7e28681a7a88f5589b612cfac3a1e4bc2',100.0,1.77903138213229393e+09,1,'2025-05-24T07:01:55Z',NULL,NULL,NULL,'["Infrastructure as Code", "Azure", "Templates"]','["[COMMUNITY-TOOL]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2025-05-24T07:01:55Z", "gh_stars": 29, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:43.157250+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/anchore/grype','grype: a vulnerability scanner for container images and filesystems','','2025',5,'A vulnerability scanner for container images and filesystems, renowned for its speed, minimal footprint, and ease of CI/CD integration. It supports multiple vulnerability sources and outputs structured data compatible with enterprise DevSecOps tools. Through 2026, it stands as the industry standard tool for shift-left image security.','Go','CLI Tool','Medium',0,'online','manual','457d117ce39ba93b09de80026a3d67a203e6a39b8511306889f032c360d1c6f9',100.0,1.77903447725039792e+09,1,'2026-06-12T15:56:32Z',NULL,NULL,NULL,'["Security", "Vulnerability Scanning", "Container Images"]','["[DE FACTO STANDARD]"]','["docs/devsecops.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "devsecops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T15:56:32Z", "gh_stars": 12400, "gh_open_issues_30d": 371, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:35:43.880727+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/anchore/syft','==anchore/syft==','','2021',5,'An advanced security tool engineered to generate detailed Software Bill of Materials (SBOM) from container images, file systems, and archives. Syft identifies package structures to track vulnerable subcomponents in modern supply chain governance.','Go','CLI Tool','Intermediate',0,'online','manual','db2fcf1ed1811ccd981eff91084d06e12e3cc79c9281dd6b8e36898d2efb90d2',100.0,1.77903040764475488e+09,1,'2026-06-12T13:29:25Z',NULL,NULL,NULL,'["Security & Compliance", "Supply Chain Security", "SBOM Generation"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T13:29:25Z", "gh_stars": 9106, "gh_open_issues_30d": 613, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:35:44.597223+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/anderseknert/awesome-opa','anderseknert/awesome-opa 🌟','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','74b59d9adc2bc20caea9b43eb1abb3db4a1ee3ccb4ec9a03f666cb0130112715',100.0,1.77902936725562906e+09,0,'2026-05-17T16:49:27.255629+02:00',NULL,NULL,NULL,'[]','[]','["docs/other-awesome-lists.md"]','[]','{}','{"duplicate_of": "https://github.com/open-policy-agent/awesome-opa", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:45.260299+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/andreazorzetto/yh','yh - YAML Highlighter','','2022',4,'A specialized, terminal-based syntax highlighter designed explicitly for YAML configurations. Unlike generic highlighters, yh identifies YAML indentation rules and formats outputs from standard pipelines. It is highly useful for reviewing massive Kubernetes manifests directly in terminals.','Go','tool','beginner',0,'online','manual','835328b68aa23ebad6c9e32970fe664b9b951d99213ca3069c6e3b3e012cf187',100.0,1.77903215328110909e+09,1,'2020-12-14T09:49:42Z',NULL,NULL,NULL,'["Configuration Management", "YAML Processing", "CLI Tools"]','["[ENTERPRISE-STABLE]"]','["docs/yaml.md"]','["data-and-advanced-analytics.md", "yaml.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2020-12-14T09:49:42Z", "gh_stars": 427, "is_special": true, "gh_open_issues_30d": 9, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:45.986835+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/andredesousa/devops-best-practices','andredesousa/devops-best-practices','','2026',1,'An opinionated checklist detailing architectural best practices for logging formats, schema migrations, system health monitoring, and security setups. Helps engineering teams establish healthy container operational standards.','Markdown','Reference Guide','Intermediate',1,'online','manual','f62c1fb10bd804350b1cd6db1ca47e20316b90f9cc78502d5933c39895c42a37',100.0,1.77902967897616291e+09,1,'2022-02-23T20:29:58Z',NULL,NULL,NULL,'["Infrastructure & Operations", "DevOps & SRE Engineering", "Best Practices"]','["[COMMUNITY-TOOL]", "[GUIDE]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2022-02-23T20:29:58Z", "gh_stars": 53, "is_special": true, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:46.708660+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/andrewpuch/nagios_setup','github: Steps I used to install Nagios in the cloud','','2018',5,'A historical walkthrough illustrating legacy installations of the Nagios monitoring framework inside static virtual instances. Outlines core process definitions, alerting rules, and manual configuration management.','Shell','Repository','Intermediate',0,'online','manual','765dc175d742822fbc5de8766a7a18e7d73ee853aa9ea8d72e0be13162ae41f3',100.0,1.78173587621083688e+09,1,'2026-06-18T00:37:56.210837+02:00',NULL,NULL,NULL,'["Observability & Monitoring", "Legacy Systems", "Self-Hosted"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/aws-monitoring.md"]','["aws-monitoring.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:47.407484+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/andrewstetsenko/tech-jobs-with-relocation','International Tech Job Search Handbook','','2026',5,'Curator Insight: An open-source global job search manual providing metadata on visa processes and relocation budgets. Live Grounding: Continues to be a vital community asset for tech professionals traversing global borders, offering real-time data on corporate immigration compliance and tax architectures.','en','GitHub Repository','Intermediate',0,'online','manual','7eda0472cae43870bede3742ed479d8829d1a4ded8fda5a2b5d147932a0aab92',100.0,1779032296.97062,1,'2026-03-19T14:04:47Z',NULL,NULL,NULL,'["Professional Practice", "Recruiting", "Resource Guides"]','["[DE FACTO STANDARD]"]','["docs/recruitment.md"]','["recruitment.md"]','{}','{"gh_license": "CC0-1.0", "gh_pushed": "2026-03-19T14:04:47Z", "gh_stars": 4427, "gh_open_issues_30d": 11, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:35:48.122023+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/anordal/shellharden/blob/master/how_to_do_things_safely_in_bash.md','github: Safe ways to do things in bash','','2026',5,'Serves as the authoritative style manual for compiling safe, error-free bash scripts. Maintained within the Shellharden project, it outlines rigorous quoting standards, expansion parameters, array handling, and variable declarations to prevent system exploits or unexpected command executions.','Bash','Developer Guide','Advanced',0,'online','manual','91ca4befc6835bd57a7f160db4e2eb0803d492455fa4818ac4ea1dd50c4d42a3',100.0,1.77903126683123397e+09,1,'2026-01-05T06:45:45Z',NULL,NULL,NULL,'["Linux", "Automation", "Bash Scripting"]','["[DE FACTO STANDARD]", "[GUIDE]"]','["docs/linux.md"]','["linux.md"]','{}','{"gh_license": "MPL-2.0", "gh_pushed": "2026-01-05T06:45:45Z", "gh_stars": 4784, "gh_open_issues_30d": 9, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:48.829594+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/ansible-collections','Ansible Collections 🌟','','2024',2,'Upstream GitHub organization containing certified and community Ansible Content Collections. Reflects the modern decentralized packaging model of the modern Ansible ecosystem.','Python','github_repo','Advanced',0,'online','manual','ac690db74143451d4c91e08cd4c35bf09d1e37cbc8afad7cd5503a9c5d6bf6e5',100.0,1.77902932314979791e+09,1,'2026-05-17T16:48:43.149798+02:00',NULL,NULL,NULL,'["Automation & Orchestration", "Ansible Ecosystem", "Collections"]','["[COMMUNITY-TOOL]"]','["docs/ansible.md"]','["ansible.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/ansible-collections/amazon.aws','Amazon AWS Collection 🌟','','2024',2,'The official Amazon Web Services Content Collection for Ansible. Provides production-ready modules for provisioning, updating, and de-provisioning EC2, VPC, S3, and RDS infrastructure assets.','Python','github_repo','Advanced',0,'online','manual','804fce1e8984f14dfa663281baa5c49908f5fbdc2cb9c315bf8810accca8f739',100.0,1779033759.72351,1,'2026-06-12T18:54:31Z',NULL,NULL,NULL,'["Automation & Orchestration", "Ansible Ecosystem", "Collections"]','["[COMMUNITY-TOOL]"]','["docs/ansible.md"]','["ansible.md"]','{}','{"gh_license": "GPL-3.0", "gh_pushed": "2026-06-12T18:54:31Z", "gh_stars": 388}');
INSERT INTO "resources" VALUES('https://github.com/ansible-community/awesome-ansible','==ansible-community/awesome-ansible: Awesome Ansible== 🌟🌟🌟','','2026',4,'The authoritative, community-managed repository of recommended Ansible tools, tutorials, extensions, and integration ecosystems. This acts as the premier catalog for discovery in modern automation workflows.','Markdown','Resource List','Beginner',0,'online','manual','a6d2538e3c6f7054fdc0b96563cc79781689be4289ad2df477cefddcdf223336',100.0,1779033845.09972,1,'2026-06-02T08:28:40Z',NULL,NULL,NULL,'["Infrastructure as Code", "Ansible", "Curated Lists"]','["[ENTERPRISE-STABLE]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md", "ansible.md"]','{}','{"gh_license": "CC0-1.0", "gh_pushed": "2026-06-02T08:28:40Z", "gh_stars": 1892, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/ansible/awx','AWX','','2026',5,'AWX serves as the open-source upstream project for Ansible Automation Platform/Tower. Written in Django and React, it provides a web-based user interface, REST API, and task engine to centrally manage Ansible inventories, credentials, playbooks, and scheduling in containerized environments.','Python','Source Code','Advanced',1,'online','manual','f3fbd9fc28591beaf0b721ceaa08a9c0e377084d6c766f7c2cac89bce3e914c1',100.0,1.77902929197604203e+09,1,'2026-06-12T18:32:08Z',NULL,NULL,NULL,'["Automation & Orchestration", "Configuration Management", "Ansible AWX"]','["[DE FACTO STANDARD]"]','["docs/ansible.md", "docs/about.md"]','["ansible.md", "about.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-12T18:32:08Z", "gh_stars": 15453}');
INSERT INTO "resources" VALUES('https://github.com/ansible/awx-operator','AWX Operator','','2026',4,'The AWX Operator is a cloud-native Kubernetes Operator designed to automate the deployment, lifecycle management, scaling, and upgrades of AWX. By leveraging Custom Resource Definitions (CRDs), it simplifies complex Postgres and web-app state management inside K8s.','Go','Source Code','Advanced',1,'online','manual','655a86e32bad792bf72866cdd9a55b87bfa5b5cf86eb6f5f21ff69e50139f5c4',100.0,1.77903059434158897e+09,1,'2026-06-10T18:54:39Z',NULL,NULL,NULL,'["Container Orchestration", "Kubernetes", "Operators"]','["[ENTERPRISE-STABLE]"]','["docs/ansible.md"]','["ansible.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-10T18:54:39Z", "gh_stars": 1487}');
INSERT INTO "resources" VALUES('https://github.com/ansible-collections/amazon.aws','Amazon AWS Collection 🌟','','2024',2,'The official Amazon Web Services Content Collection for Ansible. Provides production-ready modules for provisioning, updating, and de-provisioning EC2, VPC, S3, and RDS infrastructure assets.','Python','github_repo','Advanced',0,'online','manual','804fce1e8984f14dfa663281baa5c49908f5fbdc2cb9c315bf8810accca8f739',100.0,1779033759.72351,1,'2026-06-12T18:54:31Z',NULL,NULL,NULL,'["Automation & Orchestration", "Ansible Ecosystem", "Collections"]','["[COMMUNITY-TOOL]"]','["docs/ansible.md"]','["ansible.md"]','{}','{"gh_license": "GPL-3.0", "gh_pushed": "2026-06-12T18:54:31Z", "gh_stars": 388, "gh_open_issues_30d": 166, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:35:49.596395+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/ansible-community/awesome-ansible','==ansible-community/awesome-ansible: Awesome Ansible== 🌟🌟🌟','','2026',4,'The authoritative, community-managed repository of recommended Ansible tools, tutorials, extensions, and integration ecosystems. This acts as the premier catalog for discovery in modern automation workflows.','Markdown','Resource List','Beginner',0,'online','manual','a6d2538e3c6f7054fdc0b96563cc79781689be4289ad2df477cefddcdf223336',100.0,1779033845.09972,1,'2026-06-02T08:28:40Z',NULL,NULL,NULL,'["Infrastructure as Code", "Ansible", "Curated Lists"]','["[ENTERPRISE-STABLE]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md", "ansible.md"]','{}','{"gh_license": "CC0-1.0", "gh_pushed": "2026-06-02T08:28:40Z", "gh_stars": 1892, "is_special": true, "gh_open_issues_30d": 5, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:50.322895+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/ansible/awx','AWX','','2026',5,'AWX serves as the open-source upstream project for Ansible Automation Platform/Tower. Written in Django and React, it provides a web-based user interface, REST API, and task engine to centrally manage Ansible inventories, credentials, playbooks, and scheduling in containerized environments.','Python','Source Code','Advanced',1,'online','manual','f3fbd9fc28591beaf0b721ceaa08a9c0e377084d6c766f7c2cac89bce3e914c1',100.0,1.77902929197604203e+09,1,'2026-06-12T18:32:08Z',NULL,NULL,NULL,'["Automation & Orchestration", "Configuration Management", "Ansible AWX"]','["[DE FACTO STANDARD]"]','["docs/ansible.md", "docs/about.md"]','["ansible.md", "about.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-12T18:32:08Z", "gh_stars": 15453, "gh_open_issues_30d": 1845, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:35:51.053597+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/ansible/awx-operator','AWX Operator','','2026',4,'The AWX Operator is a cloud-native Kubernetes Operator designed to automate the deployment, lifecycle management, scaling, and upgrades of AWX. By leveraging Custom Resource Definitions (CRDs), it simplifies complex Postgres and web-app state management inside K8s.','Go','Source Code','Advanced',1,'online','manual','655a86e32bad792bf72866cdd9a55b87bfa5b5cf86eb6f5f21ff69e50139f5c4',100.0,1.77903059434158897e+09,1,'2026-06-10T18:54:39Z',NULL,NULL,NULL,'["Container Orchestration", "Kubernetes", "Operators"]','["[ENTERPRISE-STABLE]"]','["docs/ansible.md"]','["ansible.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-10T18:54:39Z", "gh_stars": 1487, "gh_open_issues_30d": 368, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:35:51.780856+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/ansistrano','Ansistrano','','2022',3,'An Ansible-based application deployment solution heavily inspired by Ruby''s Capistrano. It targets zero-downtime scripting setups using multi-release symlink rotations. While highly valuable for legacy monorepo VMs, it is mostly archived in modern cloud-native, containerized architectures.','YAML','tool','intermediate',1,'online','manual','11ba7b804a77cb7777c52f65813d4a0036691f24375ee6b5697ff7f64d55a614',100.0,1.77902911657714796e+09,1,'2026-05-17T16:45:16.577148+02:00',NULL,NULL,NULL,'["Infrastructure as Code", "Deployment Tools", "Application Deployment"]','["[LEGACY]"]','["docs/ansible.md"]','["ansible.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/anthonysterling/setec','Setec 🌟','','2018',1,'An early experimental tool for managing and injecting secrets into Kubernetes clusters. It represents early attempts to bridge external secrets engines with native pods, now entirely replaced by External Secrets Operator and HashiCorp Vault.','Go','Helper Utility','Intermediate',0,'online','manual','bc785d0adc1e9bd8f104e8a24809196609d0877dc5170691ccda7cb04f4a2756',100.0,1.77903430672577595e+09,1,'2021-02-27T17:05:49Z',NULL,NULL,NULL,'["Security & Identity", "Secrets Management", "Encryption"]','["[EMERGING]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2021-02-27T17:05:49Z", "gh_stars": 10}');
INSERT INTO "resources" VALUES('https://github.com/antonarhipov/awesome-apm','github.com/antonarhipov/awesome-apm: Awesome APM','','2021',0,'A curated catalog of application performance monitoring (APM) tools, open-source agents, telemetry protocols, and platform engines. It indexes distributed tracing setups, heap profiling engines, and instrumentation libraries across mainstream programming frameworks.','Markdown','curation','Intermediate',1,'online','manual','413d1bd8de0ced190ceb0b68ef29a300eb389bacc7855032bbe2917d6a005e00',100.0,1.78173610202003192e+09,1,'2026-06-18T00:41:42.020032+02:00',NULL,NULL,NULL,'["Observability & Monitoring", "Application Performance Monitoring", "APM Curated Resources"]','["[COMMUNITY-TOOL]"]','["docs/monitoring.md", "docs/other-awesome-lists.md"]','["monitoring.md", "other-awesome-lists.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/antonbabenko/terraform-best-practices','Terraform Best Practices','','2026',3,'A definitive guide detailing patterns and antipatterns for structural Terraform designs. Features industry-accepted guidelines on monorepo layout, variable validation, dynamic module injection, and drift remediation within production enterprise clouds.','Markdown','Guideline','Advanced',0,'online','manual','65e3df4f3d17318e100f3b42b6c37a2404da5e7320d0061db1805f5157ffbc32',100.0,1.77903367564279294e+09,1,'2026-03-20T14:40:58Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Infrastructure as Code", "Terraform Practices"]','["[COMMUNITY-TOOL]", "[GUIDE]"]','["docs/gitops.md", "docs/iac.md", "docs/terraform.md"]','["gitops.md", "iac.md", "terraform.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-03-20T14:40:58Z", "gh_stars": 2473}');
INSERT INTO "resources" VALUES('https://github.com/antonbabenko/terraform-skill','Terraform & OpenTofu Skill for AI Agents','','2026',4,'An open-source Model Context Protocol (MCP) skill set built for AI agents. Simplifies parsing, validating, and managing Terraform and OpenTofu infrastructure configurations through intelligent, context-aware LLM tool calls.','TypeScript','GitHub Repository','Advanced',0,'online','manual','36e23963ccfc640c56a9f901ea475f86260b9242e4403af694f058ea2dfc90ce',100.0,1.77903301998112893e+09,1,'2026-06-03T16:06:13Z',NULL,NULL,NULL,'["DevOps", "Infrastructure as Code", "AI Integration"]','["[ENTERPRISE-STABLE]"]','["docs/cicd.md", "docs/iac.md", "docs/terraform.md"]','["cicd.md", "iac.md", "terraform.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-03T16:06:13Z", "gh_stars": 2012}');
INSERT INTO "resources" VALUES('https://github.com/antonmedv/fx','fx','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','8fb21ceea1d4a73169b87bd5d6f0c5b16a4185020f9453634910dd33f481a68b',100.0,1779031107.4493,1,'2026-05-17T17:18:27.449300+02:00',NULL,NULL,NULL,'[]','[]','["docs/yaml.md"]','[]','{}','{"gh_license": "MIT", "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/antrea-io/antrea',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','6659111b06ffcfb4ef70584b0dbc5ca0ae90a94f7a20978c8920c73c1672b9b3',100.0,1779130495.02231,1,'2026-05-18T20:54:55.022310+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-networking.md"]','[]','{}','{"gh_license": "Apache-2.0"}');
INSERT INTO "resources" VALUES('https://github.com/apache/activemq-artemis','Apache Artemis JMeter','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','7bafd4c450f2999669094cbd6a4dc4e49e2c53f71d2775de69f46cff36bb586d',100.0,1.77903422959514307e+09,0,'2026-05-17T18:10:29.595143+02:00',NULL,NULL,NULL,'[]','[]','["docs/message-queue.md", "docs/prometheus.md"]','[]','{}','{"duplicate_of": "https://github.com/apache/artemis"}');
INSERT INTO "resources" VALUES('https://github.com/apache/apisix','apisix','','2026',5,'Apache APISIX is a high-performance, dynamic cloud-native API gateway built on Nginx and OpenResty. It provides dynamic routing, active health checking, security protection, and telemetry integration, utilizing etcd for state storage to achieve ultra-low latency configurations.','Lua','Software Project','Advanced',1,'online','manual','8c6b414af9df9cd042a76b844eceb101ecd137e839408a3c13da57cb8dc1b65f',100.0,1779031776.90444,1,'2026-06-12T08:48:42Z',NULL,NULL,NULL,'["Infrastructure", "API Gateway", "Cloud Native"]','["[DE FACTO STANDARD]"]','["docs/developerportals.md"]','["developerportals.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T08:48:42Z", "gh_stars": 16724}');
INSERT INTO "resources" VALUES('https://github.com/apache/artemis','Apache Artemis JMeter','','2024',5,'The official source repository for Apache ActiveMQ Artemis. Built with Netty, this broker delivers low-latency messaging, supports AMQP, MQTT, and STOMP, and provides an efficient data distribution engine for high-density architectures.','Java','Code','Advanced',0,'online','manual','8646dacdcbb342760a94a7b9edfa0baaaf9e2d19c62045277101cf7ad8b3c7c3',100.0,1.77913049498325896e+09,1,'2026-06-11T02:23:24Z',NULL,NULL,NULL,'["Infrastructure", "Message Brokers", "ActiveMQ"]','["[DE FACTO STANDARD]"]','["docs/message-queue.md", "docs/prometheus.md"]','["message-queue.md", "prometheus.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T02:23:24Z", "gh_stars": 1024}');
INSERT INTO "resources" VALUES('https://github.com/apache/dolphinscheduler','apache/dolphinscheduler: Apache DolphinScheduler 🌟','','2026',5,'Apache DolphinScheduler is a highly scalable, distributed workflow visualization scheduler tailored for modern big data and machine learning architectures on Kubernetes. It enables enterprise operators to manage complex data dependency DAGs via drag-and-drop interfaces and robust API control. Its native integration with containerized engines like Spark, Flink, and MapReduce makes it an enterprise favorite.','Java','Workload Scheduler','Advanced',1,'online','manual','c2f0762db448834bfcf83203a5dc5663c76e172ef4e5f6274eadc355959b9d56',100.0,1.77903422433378601e+09,1,'2026-06-12T09:08:43Z',NULL,NULL,NULL,'["Data Engineering", "Workload Scheduling", "Orchestration"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T09:08:43Z", "gh_stars": 14309}');
INSERT INTO "resources" VALUES('https://github.com/apache/maven-mvnd','apache/maven-mvnd','','2025',5,'Apache Maven Daemon repository. Drastically reduces compilation overhead by utilizing persistent background execution processes to store compiler hot-spots and plugin contexts.','Java','CLI Tool','Advanced',0,'online','manual','7a1913331d49bef22bf3d5dd69ac6a11d8a888359041509e65e546d3c179e086',100.0,1.77902916933326411e+09,1,'2026-06-12T20:38:35Z',NULL,NULL,NULL,'["Build Systems", "JVM Ecosystem", "Build Daemon Optimization"]','["[DE FACTO STANDARD]"]','["docs/maven-gradle.md"]','["maven-gradle.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T20:38:35Z", "gh_stars": 3428}');
INSERT INTO "resources" VALUES('https://github.com/apache/tomcat-jakartaee-migration','Apache Tomcat migration tool for Jakarta EE','','2021',2,'A command-line utility designed to automatically migrate legacy Java EE 8 web applications to modern Jakarta EE (9+) architectures. It translates package namespaces from `javax.*` to `jakarta.*` in binaries and source code.','Java','Repository','Intermediate',0,'online','manual','a0a6ed53f60d5854d820ec4c780437a3823a399432cc31e5e50616115878880d',100.0,1.77903430976997208e+09,1,'2026-06-09T08:55:54Z',NULL,NULL,NULL,'["Platform Engineering", "Application Servers", "Migration"]','["[LEGACY]"]','["docs/embedded-servlet-containers.md"]','["embedded-servlet-containers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-09T08:55:54Z", "gh_stars": 188}');
INSERT INTO "resources" VALUES('https://github.com/apicurio/apicurio-registry','**Apicurio** Registry','','2026',4,'Apicurio Registry is an open-source, high-performance centralized schema registry. It manages API contracts, OpenAPI designs, AsyncAPI definitions, Avro, and Protobuf structures, enforcing real-time payload validations over high-throughput microservice pipelines while offering direct Kubernetes operator integrations.','Java','Platform','Advanced',1,'online','manual','dce198241f8b915b16935880b17f4375418cd685fff7eebe5dfe89d1c13f8ced',100.0,1.77903082746442508e+09,1,'2026-06-13T18:07:51Z',NULL,NULL,NULL,'["Data Engineering", "Schema Registry", "Apicurio"]','["[ENTERPRISE-STABLE]"]','["docs/message-queue.md"]','["message-queue.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T18:07:51Z", "gh_stars": 814}');
INSERT INTO "resources" VALUES('https://github.com/apk8s/k3s-gitlab','k3s-gitlab','','2021',1,'An automation repository dedicated to bootstrapping a local K3s runtime optimized for orchestrating GitLab CI runners, streamlining testing of containerized microservices.','Shell','Tool','Intermediate',1,'online','manual','df6d24ee7760852189e0e1037f288289a4c8211339c135d0d10c1dcbfac3c641',100.0,1.78173615418975305e+09,1,'2026-06-18T00:42:34.189753+02:00',NULL,NULL,NULL,'["Edge & IoT", "CI/CD Integration", "GitLab Runners"]','["[COMMUNITY-TOOL]"]','["docs/rancher.md"]','["rancher.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/aporia-ai/kubesurvival','KubeSurvival 🌟','','2022',1,'A scanning utility that audits existing clusters to determine the absolute cheapest VM instance shapes capable of hosting current workloads. Ensures high-availability parameters and compute requirements are fully met before suggesting migration profiles.','Go','Tool','Intermediate',0,'online','manual','43f259cf3ad4224e8b23ecaa836fef2960fa800ebba377e97c913efae78486e4',100.0,1.77903135668368291e+09,1,'2021-11-03T09:30:26Z',NULL,NULL,NULL,'["Infrastructure Optimization", "Cost Management", "Tooling"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md", "docs/kubernetes.md"]','["kubernetes-tools.md", "kubernetes.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2021-11-03T09:30:26Z", "gh_stars": 187}');
INSERT INTO "resources" VALUES('https://github.com/aporia-ai/mlplatform-workshop','ML Platform Workshop','','2022',4,'A hands-on technical workshop repository showcasing the design of an end-to-end Machine Learning Platform. Demonstrates real-world integration of model registries, tracking servers, and deployment mechanisms under production-like conditions. Excellent educational resource for learning the architectural glue of modern MLOps frameworks.','Python','Repository','Intermediate',1,'online','manual','aaa796b6cedb8435a395ceffed9fa532074ccb7f09b344c218fcb5c35c0626b8',100.0,1.77903072113100695e+09,1,'2021-11-03T10:27:17Z',NULL,NULL,NULL,'["MLOps", "Workshops", "Infrastructure"]','["[ENTERPRISE-STABLE]"]','["docs/mlops.md"]','["mlops.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2021-11-03T10:27:17Z", "gh_stars": 445}');
INSERT INTO "resources" VALUES('https://github.com/app-sre/qontract-server','qontract','','2023',5,'An enterprise configuration server that leverages GraphQL to manage infrastructure states and reconcile multi-tenant declarations. Developed as part of App-SRE tooling, it facilitates continuous delivery by organizing configuration data. It continues to see specialized internal usage for large platform configurations.','Python','Service','High',1,'online','manual','a6bdddf51fc8fb9dba86f4e89b89beabbe6b3d2d40df356d8953d42a6b537a21',100.0,1779034229.54831,1,'2026-06-11T14:12:06Z',NULL,NULL,NULL,'["Application Delivery", "GitOps", "State Reconciliation"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T14:12:06Z", "gh_stars": 16}');
INSERT INTO "resources" VALUES('https://github.com/appscode/guard','Guard','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','1a240efe5fe437d91440ed2089957bf46e523435c4aca6ccc1655459fa09a320',100.0,1.77903156461361408e+09,0,'2026-05-17T17:26:04.613614+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{}');
INSERT INTO "resources" VALUES('https://github.com/appvia/cosign-keyless-admission-webhook','appvia/cosign-keyless-admission-webhook','','2021',1,'A specialized admission webhook enforcing keyless container signature checks inside Kubernetes. Using Sigstore Cosign under the hood, it denies unsigned or non-verified container runtimes from joining cluster namespaces.','Go','Admission Webhook','Advanced',1,'online','manual','8f78f9c06f02b7de0dc6c2a769337d84c565b18ce1da3eb14161a146aa8ab5b4',100.0,1.77903258924782395e+09,1,'2026-06-11T13:01:32Z',NULL,NULL,NULL,'["Security & Compliance", "Supply Chain Security", "Admission Control"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-11T13:01:32Z", "gh_stars": 24}');
INSERT INTO "resources" VALUES('https://github.com/appvia/kev','Kev','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','1df9e14bf0c7979328a89088b86ae8da55bf99130f93d2df25cac4f902b9bd64',100.0,1.77903302002182793e+09,0,'2026-05-17T17:50:20.021828+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{}');
INSERT INTO "resources" VALUES('https://github.com/appvia/krane','Krane 🌟','','2020',5,'Curator Insight: An open-source Kubernetes RBAC static analysis tool designed to identify risky roles, cluster roles, and broad resource access configurations. Live Grounding: The repository is archived and inactive for over 4 years. While the structural rules engine remains historically valuable, it does not support modern Kubernetes RBAC security vectors.','Ruby','Code Repository','Advanced',0,'online','manual','d7bc7f3f6ae5aea58e5b292f7ced0852bb07b49099998f036457b441d1c9baa0',100.0,1.77903198169386601e+09,1,'2026-02-13T15:57:57Z',NULL,NULL,NULL,'["Security", "Identity & Access", "RBAC", "Legacy Tools"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/kubernetes-security.md", "docs/kubernetes-tools.md"]','["kubernetes-security.md", "kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-02-13T15:57:57Z", "gh_stars": 740}');
INSERT INTO "resources" VALUES('https://github.com/appvia/tako','Kev','','2021',1,'A tool to orchestrate application deployments on Kubernetes using Docker Compose files. It templatizes deployments, allowing developers to scale their compose configurations across multiple target environments with environment-specific overrides.','Go','Developer Tool','Medium',0,'online','manual','377bd061da94b783c8f87c81929154f29bd4b8426e0a0b5d02934d2535c92176',100.0,1.77913049493064093e+09,1,'2026-01-22T20:30:49Z',NULL,NULL,NULL,'["Application Delivery", "Configuration Management", "Docker Compose Migration"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-01-22T20:30:49Z", "gh_stars": 72}');
INSERT INTO "resources" VALUES('https://github.com/aquasecurity/cloudsec-icons','aquasecurity/cloudsec-icons','','2021',1,'An open-source library of dedicated cybersecurity and DevSecOps icons created by Aqua Security. Empowers application security professionals to visually document threat boundaries, firewall parameters, and container compliance elements in systems architecture graphs.','None','Asset Pack','Beginner',0,'online','manual','d4917cbf5866a117245e65c3717323e6cbeab8a5bf0c58a6c41f599cceaa3fea',100.0,1.78173590081304907e+09,1,'2026-06-18T00:38:20.813049+02:00',NULL,NULL,NULL,'["Architecture & Visualization", "Design Assets", "Security"]','["[COMMUNITY-TOOL]"]','["docs/cloud-arch-diagrams.md"]','["cloud-arch-diagrams.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/aquasecurity/kube-bench','kube-bench 🌟','','2026',5,'The industry standard tool to check whether Kubernetes clusters are deployed securely according to the Center for Internet Security (CIS) benchmarks. Can be run inside container workloads or directly on node hosts, outputting detailed reports identifying API, TLS, and permissions vulnerabilities.','Go','Tool','Medium',0,'online','manual','3fc464887d8cd3fc871fc6d9d7bd51f9fb7ae23f35731c95073e40620fb71285',100.0,1.77903084917266702e+09,1,'2026-06-09T06:03:33Z',NULL,NULL,NULL,'["Networking & Security", "Security Compliance", "CIS Benchmarks"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-security.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "kubernetes-security.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-09T06:03:33Z", "gh_stars": 8078}');
INSERT INTO "resources" VALUES('https://github.com/aquasecurity/kube-hunter','kube-hunter 🌟','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','9104d2e020cd3963831a31761f037f16a536d2d44a303795855898e910f7ac30',100.0,1779034273.68148,1,'2026-05-17T18:11:13.681480+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-security.md"]','[]','{}','{"gh_license": "Apache-2.0"}');
INSERT INTO "resources" VALUES('https://github.com/aquasecurity/starboard','==aquasecurity/starboard==','','2026',3,'Starboard targets the unification of security scanners into a single, cohesive Kubernetes-native CRD interface. Live grounding in 2026 confirms that Starboard has been fully deprecated and integrated directly into the Trivy Operator framework. Platform teams should seek Trivy Operator for active development, utilizing Starboard''s original specification strictly as a reference architecture.','Go','Operator','Intermediate',0,'online','manual','1824480eb35ee63c28294f0bb908498a16193d16da45d577500706614f5aca74',100.0,1779031147.09103,1,'2026-06-10T12:05:58Z',NULL,NULL,NULL,'["Security", "Vulnerability Scanning", "Compliance"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-10T12:05:58Z", "gh_stars": 1375}');
INSERT INTO "resources" VALUES('https://github.com/aquasecurity/trivy','trivy','','2026',5,'Aqua Security''s Trivy is an exceptionally fast, highly versatile security scanner for containers, IaC configurations, and software vulnerabilities. Known for its streamlined caching, wide packaging-format support, and outstanding CI integration. It is universally adopted as a de facto container validation tool in secure software pipelines.','Go','Tool','Intermediate',1,'online','manual','b46c90d466ffbc02632e60e5e9ed5423398d0901907b7641944f45379ed783f8',100.0,1.7790302077501049e+09,1,'2026-06-11T14:52:49Z',NULL,NULL,NULL,'["Security", "Vulnerability Management", "Container Scanning"]','["[DE FACTO STANDARD]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T14:52:49Z", "gh_stars": 36431}');
INSERT INTO "resources" VALUES('https://github.com/argilla-io/argilla','rubrix','','2023',5,'Formerly Rubrix, Argilla is a premier open-source data curation platform designed for AI and LLM workflows. Enables continuous human-in-the-loop (HITL) fine-tuning cycles. It seamlessly integrates with Hugging Face, SpaCy, and LangChain, optimizing training data quality through iterative annotation, validation, and curation mechanisms.','Python','Repository','Intermediate',0,'online','manual','43a8d5613cb2f779fb3ed1a40fbc1eed35cddb7b216a7d13f8db6ba1a4d4776e',100.0,1.77913049502218198e+09,1,'2026-06-08T21:47:00Z',NULL,NULL,NULL,'["Data Engineering", "Data Labeling", "Human-In-The-Loop"]','["[DE FACTO STANDARD]"]','["docs/mlops.md"]','["mlops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-08T21:47:00Z", "gh_stars": 5002}');
INSERT INTO "resources" VALUES('https://github.com/argoproj-labs/applicationset','argoproj-labs/applicationset: Argo CD ApplicationSet Controller','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','736db94cb984f0c2e4e92a8c48893a99779cfe27b1f8a593684149d97cac0c43',100.0,1.77903147867143201e+09,0,'2026-05-17T17:24:38.671432+02:00',NULL,NULL,NULL,'[]','[]','["docs/argo.md"]','[]','{}','{"duplicate_of": "https://github.com/argoproj/applicationset"}');
INSERT INTO "resources" VALUES('https://github.com/argoproj-labs/argocd-autopilot','argoproj-labs/argocd-autopilot: Argo-CD Autopilot','','2023',5,'An official Argo project opinionated tool designed to structure, install, and update Argo CD setups automatically. Uses a clean directory structure separating infrastructure from application manifests, enabling rapid multi-project bootstrap with version tracking and disaster recovery features.','Go','Repository','Intermediate',0,'online','manual','9c244f562123e769bd994ba3a8941680a7a2fd0ec07951ef1cab31b7e49dc2b7',100.0,1.77903219839273095e+09,1,'2025-12-16T22:36:28Z',NULL,NULL,NULL,'["GitOps & CD", "ArgoCD", "Bootstrap Automation", "Autopilot"]','["[DE FACTO STANDARD]"]','["docs/argo.md"]','["argo.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-12-16T22:36:28Z", "gh_stars": 1121}');
INSERT INTO "resources" VALUES('https://github.com/argoproj-labs/argocd-vault-plugin','==argoproj-labs/argocd-vault-plugin==','','2023',5,'An indispensable Argo CD plugin built to inject secrets dynamically from HashiCorp Vault, AWS Secrets Manager, or GCP Secret Manager. Replaces custom templating hacks by decrypting and injecting secret values directly into workloads at synchronization time, ensuring zero plaintext secrets enter the Git repository.','Go','Repository','Advanced',0,'online','manual','bacdb3b79f20c82c07dcabd131068baa6a41a9fd000e0061f4269359f582cd5d',100.0,1.77903011977509808e+09,1,'2024-12-18T18:24:47Z',NULL,NULL,NULL,'["Platform Engineering", "Secret Management", "HashiCorp Vault", "ArgoCD Plugins"]','["[DE FACTO STANDARD]"]','["docs/argo.md"]','["argo.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-12-18T18:24:47Z", "gh_stars": 967}');
INSERT INTO "resources" VALUES('https://github.com/argoproj/applicationset','argoproj-labs/applicationset: Argo CD ApplicationSet Controller','','2023',5,'The standard orchestrator extending Argo CD to support multi-cluster application distribution templates. Processes multi-source configurations, automates environment scaling, and drastically reduces the maintenance overhead of managing distinct Application manifests.','Go','Repository','Advanced',0,'online','manual','a4962d083aae4c7fecf87cda492879952faf3d5a81cf1c576f031132e33342a8',100.0,1.77913049499330806e+09,1,'2024-07-15T18:06:39Z',NULL,NULL,NULL,'["GitOps & CD", "ArgoCD", "ApplicationSets"]','["[DE FACTO STANDARD]"]','["docs/argo.md"]','["argo.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-07-15T18:06:39Z", "gh_stars": 582}');
INSERT INTO "resources" VALUES('https://github.com/anthonysterling/setec','Setec 🌟','','2018',1,'An early experimental tool for managing and injecting secrets into Kubernetes clusters. It represents early attempts to bridge external secrets engines with native pods, now entirely replaced by External Secrets Operator and HashiCorp Vault.','Go','Helper Utility','Intermediate',0,'online','manual','bc785d0adc1e9bd8f104e8a24809196609d0877dc5170691ccda7cb04f4a2756',100.0,1.77903430672577595e+09,1,'2021-02-27T17:05:49Z',NULL,NULL,NULL,'["Security & Identity", "Secrets Management", "Encryption"]','["[EMERGING]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2021-02-27T17:05:49Z", "gh_stars": 10, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:52.478311+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/antonarhipov/awesome-apm','github.com/antonarhipov/awesome-apm: Awesome APM','','2021',0,'A curated catalog of application performance monitoring (APM) tools, open-source agents, telemetry protocols, and platform engines. It indexes distributed tracing setups, heap profiling engines, and instrumentation libraries across mainstream programming frameworks.','Markdown','curation','Intermediate',1,'online','manual','413d1bd8de0ced190ceb0b68ef29a300eb389bacc7855032bbe2917d6a005e00',100.0,1.78173610202003192e+09,1,'2026-06-18T00:41:42.020032+02:00',NULL,NULL,NULL,'["Observability & Monitoring", "Application Performance Monitoring", "APM Curated Resources"]','["[COMMUNITY-TOOL]"]','["docs/monitoring.md", "docs/other-awesome-lists.md"]','["monitoring.md", "other-awesome-lists.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "is_special": true, "gh_open_issues_30d": 3, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:35:53.201360+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/antonbabenko/terraform-best-practices','Terraform Best Practices','','2026',3,'A definitive guide detailing patterns and antipatterns for structural Terraform designs. Features industry-accepted guidelines on monorepo layout, variable validation, dynamic module injection, and drift remediation within production enterprise clouds.','Markdown','Guideline','Advanced',0,'online','manual','65e3df4f3d17318e100f3b42b6c37a2404da5e7320d0061db1805f5157ffbc32',100.0,1.77903367564279294e+09,1,'2026-03-20T14:40:58Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Infrastructure as Code", "Terraform Practices"]','["[COMMUNITY-TOOL]", "[GUIDE]"]','["docs/gitops.md", "docs/iac.md", "docs/terraform.md"]','["gitops.md", "iac.md", "terraform.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-03-20T14:40:58Z", "gh_stars": 2473, "gh_open_issues_30d": 15, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:35:53.913876+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/antonbabenko/terraform-skill','Terraform & OpenTofu Skill for AI Agents','','2026',4,'An open-source Model Context Protocol (MCP) skill set built for AI agents. Simplifies parsing, validating, and managing Terraform and OpenTofu infrastructure configurations through intelligent, context-aware LLM tool calls.','TypeScript','GitHub Repository','Advanced',0,'online','manual','36e23963ccfc640c56a9f901ea475f86260b9242e4403af694f058ea2dfc90ce',100.0,1.77903301998112893e+09,1,'2026-06-03T16:06:13Z',NULL,NULL,NULL,'["DevOps", "Infrastructure as Code", "AI Integration"]','["[ENTERPRISE-STABLE]"]','["docs/cicd.md", "docs/iac.md", "docs/terraform.md"]','["cicd.md", "iac.md", "terraform.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-03T16:06:13Z", "gh_stars": 2012, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:54.617223+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/antonmedv/fx','fx','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','8fb21ceea1d4a73169b87bd5d6f0c5b16a4185020f9453634910dd33f481a68b',100.0,1779031107.4493,1,'2026-05-17T17:18:27.449300+02:00',NULL,NULL,NULL,'[]','[]','["docs/yaml.md"]','[]','{}','{"gh_license": "MIT", "is_special": true, "gh_open_issues_30d": 23, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:35:55.327648+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/antrea-io/antrea',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','6659111b06ffcfb4ef70584b0dbc5ca0ae90a94f7a20978c8920c73c1672b9b3',100.0,1779130495.02231,1,'2026-05-18T20:54:55.022310+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-networking.md"]','[]','{}','{"gh_license": "Apache-2.0", "gh_open_issues_30d": 201, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:35:56.070958+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/apache/activemq-artemis','Apache Artemis JMeter','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','7bafd4c450f2999669094cbd6a4dc4e49e2c53f71d2775de69f46cff36bb586d',100.0,1.77903422959514307e+09,0,'2026-05-17T18:10:29.595143+02:00',NULL,NULL,NULL,'[]','[]','["docs/message-queue.md", "docs/prometheus.md"]','[]','{}','{"duplicate_of": "https://github.com/apache/artemis", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:35:56.738534+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/apache/apisix','apisix','','2026',5,'Apache APISIX is a high-performance, dynamic cloud-native API gateway built on Nginx and OpenResty. It provides dynamic routing, active health checking, security protection, and telemetry integration, utilizing etcd for state storage to achieve ultra-low latency configurations.','Lua','Software Project','Advanced',1,'online','manual','8c6b414af9df9cd042a76b844eceb101ecd137e839408a3c13da57cb8dc1b65f',100.0,1779031776.90444,1,'2026-06-12T08:48:42Z',NULL,NULL,NULL,'["Infrastructure", "API Gateway", "Cloud Native"]','["[DE FACTO STANDARD]"]','["docs/developerportals.md"]','["developerportals.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T08:48:42Z", "gh_stars": 16724, "gh_open_issues_30d": 270, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:35:57.469460+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/apache/artemis','Apache Artemis JMeter','','2024',5,'The official source repository for Apache ActiveMQ Artemis. Built with Netty, this broker delivers low-latency messaging, supports AMQP, MQTT, and STOMP, and provides an efficient data distribution engine for high-density architectures.','Java','Code','Advanced',0,'online','manual','8646dacdcbb342760a94a7b9edfa0baaaf9e2d19c62045277101cf7ad8b3c7c3',100.0,1.77913049498325896e+09,1,'2026-06-11T02:23:24Z',NULL,NULL,NULL,'["Infrastructure", "Message Brokers", "ActiveMQ"]','["[DE FACTO STANDARD]"]','["docs/message-queue.md", "docs/prometheus.md"]','["message-queue.md", "prometheus.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T02:23:24Z", "gh_stars": 1024, "gh_open_issues_30d": 18, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:35:58.218217+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/apache/dolphinscheduler','apache/dolphinscheduler: Apache DolphinScheduler 🌟','','2026',5,'Apache DolphinScheduler is a highly scalable, distributed workflow visualization scheduler tailored for modern big data and machine learning architectures on Kubernetes. It enables enterprise operators to manage complex data dependency DAGs via drag-and-drop interfaces and robust API control. Its native integration with containerized engines like Spark, Flink, and MapReduce makes it an enterprise favorite.','Java','Workload Scheduler','Advanced',1,'online','manual','c2f0762db448834bfcf83203a5dc5663c76e172ef4e5f6274eadc355959b9d56',100.0,1.77903422433378601e+09,1,'2026-06-12T09:08:43Z',NULL,NULL,NULL,'["Data Engineering", "Workload Scheduling", "Orchestration"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T09:08:43Z", "gh_stars": 14309, "gh_open_issues_30d": 122, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:35:59.021982+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/apache/maven-mvnd','apache/maven-mvnd','','2025',5,'Apache Maven Daemon repository. Drastically reduces compilation overhead by utilizing persistent background execution processes to store compiler hot-spots and plugin contexts.','Java','CLI Tool','Advanced',0,'online','manual','7a1913331d49bef22bf3d5dd69ac6a11d8a888359041509e65e546d3c179e086',100.0,1.77902916933326411e+09,1,'2026-06-12T20:38:35Z',NULL,NULL,NULL,'["Build Systems", "JVM Ecosystem", "Build Daemon Optimization"]','["[DE FACTO STANDARD]"]','["docs/maven-gradle.md"]','["maven-gradle.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T20:38:35Z", "gh_stars": 3428, "gh_open_issues_30d": 143, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:35:59.740584+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/apache/tomcat-jakartaee-migration','Apache Tomcat migration tool for Jakarta EE','','2021',2,'A command-line utility designed to automatically migrate legacy Java EE 8 web applications to modern Jakarta EE (9+) architectures. It translates package namespaces from `javax.*` to `jakarta.*` in binaries and source code.','Java','Repository','Intermediate',0,'online','manual','a0a6ed53f60d5854d820ec4c780437a3823a399432cc31e5e50616115878880d',100.0,1.77903430976997208e+09,1,'2026-06-09T08:55:54Z',NULL,NULL,NULL,'["Platform Engineering", "Application Servers", "Migration"]','["[LEGACY]"]','["docs/embedded-servlet-containers.md"]','["embedded-servlet-containers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-09T08:55:54Z", "gh_stars": 188, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:36:00.472199+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/apicurio/apicurio-registry','**Apicurio** Registry','','2026',4,'Apicurio Registry is an open-source, high-performance centralized schema registry. It manages API contracts, OpenAPI designs, AsyncAPI definitions, Avro, and Protobuf structures, enforcing real-time payload validations over high-throughput microservice pipelines while offering direct Kubernetes operator integrations.','Java','Platform','Advanced',1,'online','manual','dce198241f8b915b16935880b17f4375418cd685fff7eebe5dfe89d1c13f8ced',100.0,1.77903082746442508e+09,1,'2026-06-13T18:07:51Z',NULL,NULL,NULL,'["Data Engineering", "Schema Registry", "Apicurio"]','["[ENTERPRISE-STABLE]"]','["docs/message-queue.md"]','["message-queue.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T18:07:51Z", "gh_stars": 814, "gh_open_issues_30d": 328, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:36:01.207783+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/apk8s/k3s-gitlab','k3s-gitlab','','2021',1,'An automation repository dedicated to bootstrapping a local K3s runtime optimized for orchestrating GitLab CI runners, streamlining testing of containerized microservices.','Shell','Tool','Intermediate',1,'online','manual','df6d24ee7760852189e0e1037f288289a4c8211339c135d0d10c1dcbfac3c641',100.0,1.78173615418975305e+09,1,'2026-06-18T00:42:34.189753+02:00',NULL,NULL,NULL,'["Edge & IoT", "CI/CD Integration", "GitLab Runners"]','["[COMMUNITY-TOOL]"]','["docs/rancher.md"]','["rancher.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:36:01.932027+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aporia-ai/kubesurvival','KubeSurvival 🌟','','2022',1,'A scanning utility that audits existing clusters to determine the absolute cheapest VM instance shapes capable of hosting current workloads. Ensures high-availability parameters and compute requirements are fully met before suggesting migration profiles.','Go','Tool','Intermediate',0,'online','manual','43f259cf3ad4224e8b23ecaa836fef2960fa800ebba377e97c913efae78486e4',100.0,1.77903135668368291e+09,1,'2021-11-03T09:30:26Z',NULL,NULL,NULL,'["Infrastructure Optimization", "Cost Management", "Tooling"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md", "docs/kubernetes.md"]','["kubernetes-tools.md", "kubernetes.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2021-11-03T09:30:26Z", "gh_stars": 187, "gh_open_issues_30d": 3, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:36:02.703697+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aporia-ai/mlplatform-workshop','ML Platform Workshop','','2022',4,'A hands-on technical workshop repository showcasing the design of an end-to-end Machine Learning Platform. Demonstrates real-world integration of model registries, tracking servers, and deployment mechanisms under production-like conditions. Excellent educational resource for learning the architectural glue of modern MLOps frameworks.','Python','Repository','Intermediate',1,'online','manual','aaa796b6cedb8435a395ceffed9fa532074ccb7f09b344c218fcb5c35c0626b8',100.0,1.77903072113100695e+09,1,'2021-11-03T10:27:17Z',NULL,NULL,NULL,'["MLOps", "Workshops", "Infrastructure"]','["[ENTERPRISE-STABLE]"]','["docs/mlops.md"]','["mlops.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2021-11-03T10:27:17Z", "gh_stars": 445, "gh_open_issues_30d": 3, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:36:03.436529+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/app-sre/qontract-server','qontract','','2023',5,'An enterprise configuration server that leverages GraphQL to manage infrastructure states and reconcile multi-tenant declarations. Developed as part of App-SRE tooling, it facilitates continuous delivery by organizing configuration data. It continues to see specialized internal usage for large platform configurations.','Python','Service','High',1,'online','manual','a6bdddf51fc8fb9dba86f4e89b89beabbe6b3d2d40df356d8953d42a6b537a21',100.0,1779034229.54831,1,'2026-06-11T14:12:06Z',NULL,NULL,NULL,'["Application Delivery", "GitOps", "State Reconciliation"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T14:12:06Z", "gh_stars": 16, "gh_open_issues_30d": 11, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:36:04.207338+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/appscode/guard','Guard','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','1a240efe5fe437d91440ed2089957bf46e523435c4aca6ccc1655459fa09a320',100.0,1.77903156461361408e+09,0,'2026-05-17T17:26:04.613614+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:36:04.872542+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/appvia/cosign-keyless-admission-webhook','appvia/cosign-keyless-admission-webhook','','2021',1,'A specialized admission webhook enforcing keyless container signature checks inside Kubernetes. Using Sigstore Cosign under the hood, it denies unsigned or non-verified container runtimes from joining cluster namespaces.','Go','Admission Webhook','Advanced',1,'online','manual','8f78f9c06f02b7de0dc6c2a769337d84c565b18ce1da3eb14161a146aa8ab5b4',100.0,1.77903258924782395e+09,1,'2026-06-11T13:01:32Z',NULL,NULL,NULL,'["Security & Compliance", "Supply Chain Security", "Admission Control"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-11T13:01:32Z", "gh_stars": 24, "gh_open_issues_30d": 15, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:36:05.662528+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/appvia/kev','Kev','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','1df9e14bf0c7979328a89088b86ae8da55bf99130f93d2df25cac4f902b9bd64',100.0,1.77903302002182793e+09,0,'2026-05-17T17:50:20.021828+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:36:06.306293+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/appvia/krane','Krane 🌟','','2020',5,'Curator Insight: An open-source Kubernetes RBAC static analysis tool designed to identify risky roles, cluster roles, and broad resource access configurations. Live Grounding: The repository is archived and inactive for over 4 years. While the structural rules engine remains historically valuable, it does not support modern Kubernetes RBAC security vectors.','Ruby','Code Repository','Advanced',0,'online','manual','d7bc7f3f6ae5aea58e5b292f7ced0852bb07b49099998f036457b441d1c9baa0',100.0,1.77903198169386601e+09,1,'2026-02-13T15:57:57Z',NULL,NULL,NULL,'["Security", "Identity & Access", "RBAC", "Legacy Tools"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/kubernetes-security.md", "docs/kubernetes-tools.md"]','["kubernetes-security.md", "kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-02-13T15:57:57Z", "gh_stars": 740, "gh_open_issues_30d": 55, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:36:07.069187+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/appvia/tako','Kev','','2021',1,'A tool to orchestrate application deployments on Kubernetes using Docker Compose files. It templatizes deployments, allowing developers to scale their compose configurations across multiple target environments with environment-specific overrides.','Go','Developer Tool','Medium',0,'online','manual','377bd061da94b783c8f87c81929154f29bd4b8426e0a0b5d02934d2535c92176',100.0,1.77913049493064093e+09,1,'2026-01-22T20:30:49Z',NULL,NULL,NULL,'["Application Delivery", "Configuration Management", "Docker Compose Migration"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-01-22T20:30:49Z", "gh_stars": 72, "gh_open_issues_30d": 45, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:36:07.804996+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aquasecurity/cloudsec-icons','aquasecurity/cloudsec-icons','','2021',1,'An open-source library of dedicated cybersecurity and DevSecOps icons created by Aqua Security. Empowers application security professionals to visually document threat boundaries, firewall parameters, and container compliance elements in systems architecture graphs.','None','Asset Pack','Beginner',0,'online','manual','d4917cbf5866a117245e65c3717323e6cbeab8a5bf0c58a6c41f599cceaa3fea',100.0,1.78173590081304907e+09,1,'2026-06-18T00:38:20.813049+02:00',NULL,NULL,NULL,'["Architecture & Visualization", "Design Assets", "Security"]','["[COMMUNITY-TOOL]"]','["docs/cloud-arch-diagrams.md"]','["cloud-arch-diagrams.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 4, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:36:08.529390+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aquasecurity/kube-bench','kube-bench 🌟','','2026',5,'The industry standard tool to check whether Kubernetes clusters are deployed securely according to the Center for Internet Security (CIS) benchmarks. Can be run inside container workloads or directly on node hosts, outputting detailed reports identifying API, TLS, and permissions vulnerabilities.','Go','Tool','Medium',0,'online','manual','3fc464887d8cd3fc871fc6d9d7bd51f9fb7ae23f35731c95073e40620fb71285',100.0,1.77903084917266702e+09,1,'2026-06-09T06:03:33Z',NULL,NULL,NULL,'["Networking & Security", "Security Compliance", "CIS Benchmarks"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-security.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "kubernetes-security.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-09T06:03:33Z", "gh_stars": 8078, "gh_open_issues_30d": 91, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:36:09.258234+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aquasecurity/kube-hunter','kube-hunter 🌟','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','9104d2e020cd3963831a31761f037f16a536d2d44a303795855898e910f7ac30',100.0,1779034273.68148,1,'2026-05-17T18:11:13.681480+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-security.md"]','[]','{}','{"gh_license": "Apache-2.0", "gh_open_issues_30d": 82, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:36:10.032894+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aquasecurity/starboard','==aquasecurity/starboard==','','2026',3,'Starboard targets the unification of security scanners into a single, cohesive Kubernetes-native CRD interface. Live grounding in 2026 confirms that Starboard has been fully deprecated and integrated directly into the Trivy Operator framework. Platform teams should seek Trivy Operator for active development, utilizing Starboard''s original specification strictly as a reference architecture.','Go','Operator','Intermediate',0,'online','manual','1824480eb35ee63c28294f0bb908498a16193d16da45d577500706614f5aca74',100.0,1779031147.09103,1,'2026-06-10T12:05:58Z',NULL,NULL,NULL,'["Security", "Vulnerability Scanning", "Compliance"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-10T12:05:58Z", "gh_stars": 1375, "gh_open_issues_30d": 60, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:36:10.765602+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aquasecurity/trivy','trivy','','2026',5,'Aqua Security''s Trivy is an exceptionally fast, highly versatile security scanner for containers, IaC configurations, and software vulnerabilities. Known for its streamlined caching, wide packaging-format support, and outstanding CI integration. It is universally adopted as a de facto container validation tool in secure software pipelines.','Go','Tool','Intermediate',1,'online','manual','b46c90d466ffbc02632e60e5e9ed5423398d0901907b7641944f45379ed783f8',100.0,1.7790302077501049e+09,1,'2026-06-11T14:52:49Z',NULL,NULL,NULL,'["Security", "Vulnerability Management", "Container Scanning"]','["[DE FACTO STANDARD]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T14:52:49Z", "gh_stars": 36431, "gh_open_issues_30d": 240, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:36:11.513808+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/argilla-io/argilla','rubrix','','2023',5,'Formerly Rubrix, Argilla is a premier open-source data curation platform designed for AI and LLM workflows. Enables continuous human-in-the-loop (HITL) fine-tuning cycles. It seamlessly integrates with Hugging Face, SpaCy, and LangChain, optimizing training data quality through iterative annotation, validation, and curation mechanisms.','Python','Repository','Intermediate',0,'online','manual','43a8d5613cb2f779fb3ed1a40fbc1eed35cddb7b216a7d13f8db6ba1a4d4776e',100.0,1.77913049502218198e+09,1,'2026-06-08T21:47:00Z',NULL,NULL,NULL,'["Data Engineering", "Data Labeling", "Human-In-The-Loop"]','["[DE FACTO STANDARD]"]','["docs/mlops.md"]','["mlops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-08T21:47:00Z", "gh_stars": 5002, "gh_open_issues_30d": 27, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:36:12.284494+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/argoproj-labs/applicationset','argoproj-labs/applicationset: Argo CD ApplicationSet Controller','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','736db94cb984f0c2e4e92a8c48893a99779cfe27b1f8a593684149d97cac0c43',100.0,1.77903147867143201e+09,0,'2026-05-17T17:24:38.671432+02:00',NULL,NULL,NULL,'[]','[]','["docs/argo.md"]','[]','{}','{"duplicate_of": "https://github.com/argoproj/applicationset", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:36:13.036559+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/argoproj-labs/argocd-autopilot','argoproj-labs/argocd-autopilot: Argo-CD Autopilot','','2023',5,'An official Argo project opinionated tool designed to structure, install, and update Argo CD setups automatically. Uses a clean directory structure separating infrastructure from application manifests, enabling rapid multi-project bootstrap with version tracking and disaster recovery features.','Go','Repository','Intermediate',0,'online','manual','9c244f562123e769bd994ba3a8941680a7a2fd0ec07951ef1cab31b7e49dc2b7',100.0,1.77903219839273095e+09,1,'2025-12-16T22:36:28Z',NULL,NULL,NULL,'["GitOps & CD", "ArgoCD", "Bootstrap Automation", "Autopilot"]','["[DE FACTO STANDARD]"]','["docs/argo.md"]','["argo.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-12-16T22:36:28Z", "gh_stars": 1121, "gh_open_issues_30d": 97, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:36:13.763335+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/argoproj-labs/argocd-vault-plugin','==argoproj-labs/argocd-vault-plugin==','','2023',5,'An indispensable Argo CD plugin built to inject secrets dynamically from HashiCorp Vault, AWS Secrets Manager, or GCP Secret Manager. Replaces custom templating hacks by decrypting and injecting secret values directly into workloads at synchronization time, ensuring zero plaintext secrets enter the Git repository.','Go','Repository','Advanced',0,'online','manual','bacdb3b79f20c82c07dcabd131068baa6a41a9fd000e0061f4269359f582cd5d',100.0,1.77903011977509808e+09,1,'2024-12-18T18:24:47Z',NULL,NULL,NULL,'["Platform Engineering", "Secret Management", "HashiCorp Vault", "ArgoCD Plugins"]','["[DE FACTO STANDARD]"]','["docs/argo.md"]','["argo.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-12-18T18:24:47Z", "gh_stars": 967, "gh_open_issues_30d": 161, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:36:14.473581+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/argoproj/applicationset','argoproj-labs/applicationset: Argo CD ApplicationSet Controller','','2023',5,'The standard orchestrator extending Argo CD to support multi-cluster application distribution templates. Processes multi-source configurations, automates environment scaling, and drastically reduces the maintenance overhead of managing distinct Application manifests.','Go','Repository','Advanced',0,'online','manual','a4962d083aae4c7fecf87cda492879952faf3d5a81cf1c576f031132e33342a8',100.0,1.77913049499330806e+09,1,'2024-07-15T18:06:39Z',NULL,NULL,NULL,'["GitOps & CD", "ArgoCD", "ApplicationSets"]','["[DE FACTO STANDARD]"]','["docs/argo.md"]','["argo.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-07-15T18:06:39Z", "gh_stars": 582, "gh_open_issues_30d": 144, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:36:15.198904+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/argoproj/argo-cd/issues/25203','Upgrade UI to React 19 #25203','GitHub issue proposal outlining the path to upgrade the Argo CD UI from React 16 to React 19 for performance and modern feature support.','2025',4,'This GitHub issue proposes a multi-step roadmap to upgrade the Argo CD UI from React 16 to React 19, addressing historical tech debt from a five-year-old framework dependency.
The proposed migration details:
* Upgrading `argo-ui` and `argo-cd` sequentially to React 18 (transitioning `ReactDOM.render` to `createRoot`).
* Testing for regressions and ultimately upgrading to React 19.
* Enhancing UI performance via automatic state update batching and asynchronous transitions.','en','Issue','Advanced',0,'online','automatic','2aee2d8029be2792b1823290cf0bd44f7711f851d62a30af62646d45f510563a',NULL,1.78035199434256601e+09,0,'2026-06-01T18:53:27Z',NULL,NULL,NULL,'["DevOps", "Continuous Delivery", "Argo CD UI Architecture"]','["[COMMUNITY-TOOL]"]','[]','[]','{}','{"category": "argo", "gh_license": "Apache-2.0", "gh_pushed": "2026-06-01T18:53:27Z", "gh_stars": 23029, "reputation_status": "Vetted", "reputation_summary": "Active community discussion regarding upgrading the aging Argo CD UI from React 16 to React 19.", "social_preview_url": "https://opengraph.githubassets.com/57a513e595b57bef86a5608099959701bf60db048addd0f7b8acd1ee40662b53/argoproj/argo-cd/issues/25203", "source_provenance": "X.com (ArgoProj)", "suggested_new_category": ""}');
INSERT INTO "resources" VALUES('https://github.com/argoproj/argo-cd/pull/26601','feat(ui): Add AppSet to Application Resource Tree in Argo CD','','2024',5,'The official Argo CD feature enhancement that maps ApplicationSets directly inside the dashboard UI tree. This view simplifies managing multi-tenant topologies and nested application definitions for platform operators.','Go','Pull Request','Intermediate',0,'online','manual','5fcd701110fce0e9f89dbcdee949560e63cba12ed02ad830ce1d469939187fa2',100.0,1.77903288208261609e+09,1,'2026-06-14T09:47:54Z',NULL,NULL,NULL,'["Kubernetes GitOps & Packaging", "Argo Project Ecosystem", "UI Visualization"]','["[DE FACTO STANDARD]"]','["docs/argo.md", "docs/cicd.md", "docs/kubernetes-operators-controllers.md"]','["argo.md", "kubernetes-operators-controllers.md", "cicd.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-14T09:47:54Z", "gh_stars": 23128}');
INSERT INTO "resources" VALUES('https://github.com/armadaproject/armada','Armada','','2020',3,'A high-throughput, multi-cluster batch queuing system built on top of Kubernetes. Armada manages tens of thousands of concurrent jobs across geographically distributed clusters, optimized for machine learning and quantitative analysis.','Go','Batch Scheduler','High',1,'online','manual','927210676217aa66088e5490ab7abaebeffc75d85169786f1cbc1f65babf6c47',100.0,1.77913049494526505e+09,1,'2026-06-12T15:04:53Z',NULL,NULL,NULL,'["Scheduling", "Multi-Cluster", "Batch Workloads"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T15:04:53Z", "gh_stars": 600}');
INSERT INTO "resources" VALUES('https://github.com/arminc/k8s-platform-lcm','k8s-platform-lcm: Kubernetes platform lifecycle management 🌟','','2023',5,'An operations manager to track, audit, and upgrade cluster platform components, core Helm charts, and associated operator bundles. It prevents drift across non-application system-level components. Offers a simplified dashboard interface for infrastructure consistency.','Go','Tool','Medium',0,'online','manual','8da5006f3066cde9142ddef40c7935fa51ad77c535896b4c1ad36770273c76a9',100.0,1.77903273243635892e+09,1,'2022-05-13T05:47:23Z',NULL,NULL,NULL,'["Operations", "Cluster Upgrades", "Lifecycle Management"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2022-05-13T05:47:23Z", "gh_stars": 182}');
INSERT INTO "resources" VALUES('https://github.com/armory/minnaker','Minnaker','','2022',2,'An installer package developed by Armory to spin up a single-node Spinnaker instance quickly inside a lightweight Kubernetes cluster (using K3s). It was designed to facilitate Spinnaker evaluations and local sandbox development. By 2026, as Spinnaker''s market footprint contraction continued, the Minnaker repository is considered a legacy reference project.','Shell','Installer','Medium',0,'online','manual','bc9ea132c2e70c4c1230e36f022608e8505e2ee0506cd0270dd87d762505e438',100.0,1.779032338039891e+09,1,'2023-05-20T21:18:12Z',NULL,NULL,NULL,'["Delivery", "CI/CD", "Spinnaker"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-05-20T21:18:12Z", "gh_stars": 156}');
INSERT INTO "resources" VALUES('https://github.com/armosec/kubescape','==Kubescape== 🌟','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','b2edcccc6e3dc19610cb8401874e7e9c6efc002eea50bff20debb737537678d8',100.0,1.7790293259623959e+09,0,'2026-05-17T16:48:45.962396+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-security.md"]','[]','{}','{"duplicate_of": "https://github.com/kubescape/kubescape"}');
INSERT INTO "resources" VALUES('https://github.com/armosec/regolibrary','armosec/regolibrary','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','632ecd5c343463ee3440caa26e977276d038338bdc2d4952ef3e18207cafb994',100.0,1779031451.44535,0,'2026-05-17T17:24:11.445350+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"duplicate_of": "https://github.com/kubescape/regolibrary"}');
INSERT INTO "resources" VALUES('https://github.com/arslanbilal/git-cheat-sheet','arslanbilal/git-cheat-sheet 🌟🌟🌟','','2025',4,'Curator Insight: Highly starred open-source repository containing translated Git references. Live Grounding: Facilitates localized, multilingual engineering onboarding, providing consistent global team standards for branch structures, conflict resolutions, and configuration setups.','Markdown','GitHub Repository','Intermediate',0,'online','manual','c263d3474671da6aee00f06477d2cf21e1b71609533804a19070230671efc968',100.0,1.78173589011414599e+09,1,'2026-06-18T00:38:10.114146+02:00',NULL,NULL,NULL,'["Development", "Version Control", "Git"]','["[ENTERPRISE-STABLE]"]','["docs/cheatsheets.md"]','["cheatsheets.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/arttor/helmify','==arttor/helmify==','','2021',3,'An automation utility that converts standard declarative Kubernetes manifests directly into valid, paramaterized Helm charts. It simplifies migrations and accelerates the distribution setup of packaged deployments.','Go','CLI Tool','Intermediate',0,'online','manual','95af44ea2bd1b9252e87920a85c9df5d9b5f24886fc5e6bd00264af5fbf46866',100.0,1.77903308475923895e+09,1,'2026-05-07T07:38:16Z',NULL,NULL,NULL,'["GitOps & Configuration", "Helm Chart Generation", "Migration Tools"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md", "docs/yaml.md"]','["kubernetes-tools.md", "yaml.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-05-07T07:38:16Z", "gh_stars": 1738, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/arun-gupta/docker-jenkins-pipeline','github.com/arun-gupta/docker-jenkins-pipeline: Docker + Java + Jenkins Pipeline','','2018',0,'Curator Insight structures this repository around running Docker-integrated Java application compilation inside Jenkins Pipelines. Live Grounding shows that mounting the Docker socket inside Jenkins agents remains a common albeit security-sensitive approach. It serves as a historical and practical reference for building containerized Java workloads using declarative pipelines.','Java','Repository','Intermediate',1,'online','manual','850f58fedd04dc18d048d11e49b9b071128fdfd5e72db40e2d38139deff04889',100.0,1.78173591099225091e+09,1,'2026-06-18T00:38:30.992251+02:00',NULL,NULL,NULL,'["DevOps", "CI/CD Platforms", "Jenkins", "Docker Containerization"]','["[COMMUNITY-TOOL]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/asdf-community/asdf-kubectl','asdf-kubectl','','2020',2,'A community-maintained plugin for the asdf extendable version manager, designed to install and manage multiple versions of kubectl. It facilitates deterministic local environments by locking Kubernetes CLI versions per project.','Shell','CLI Plugin','Low',0,'online','manual','10d02cbbb3fd4e0ddf173cd2217d9b1d4ddc7870a563b7997224ee5708e67da8',100.0,1.77913049498870205e+09,1,'2025-11-12T15:57:32Z',NULL,NULL,NULL,'["Developer Experience", "CLI Tools", "Version Management"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2025-11-12T15:57:32Z", "gh_stars": 131}');
INSERT INTO "resources" VALUES('https://github.com/asim/go-micro','go-micro','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','4480b6aeafbe7b209f8e12f66ba1c0fd250f07d5f8ff5d5e19aa614a730ba7ff',100.0,1.77903108539226198e+09,0,'2026-05-17T17:18:05.392262+02:00',NULL,NULL,NULL,'[]','[]','["docs/golang.md"]','[]','{}','{}');
INSERT INTO "resources" VALUES('https://github.com/askmeegs/learn-istio','github.com/askmeegs/learn-istio 🌟','','2020',0,'An educational repository featuring early-day tutorials and configurations for learning Istio concepts. Currently archived/unmaintained, functioning primarily as a legacy resource.','Shell','Repository','Beginner',1,'online','manual','40dd02ee18cdb30f4966d3166cf46c09c5993471a4ace77ce29c75addfb27121',100.0,1.78173597129866099e+09,1,'2026-06-18T00:39:31.298661+02:00',NULL,NULL,NULL,'["Service Mesh", "Training", "Education"]','["[LEGACY]"]','["docs/istio.md"]','["istio.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/askmeegs/yaml-your-cloud','askmeegs/yaml-your-cloud','','2021',1,'Code repository designed as a companion to the ''YAML your cloud'' presentation, offering practical Kubernetes manifest examples and Crossplane configurations. It showcases foundational multi-cloud provider settings, composition patterns, and claims structures used in active training environments.','YAML','Code Repository','Intermediate',0,'online','manual','21fd98ae25edafdb2d51f06cdfa2d4f399f70587def62c3a84f16f0e0139fd11',100.0,1.77903089185313606e+09,1,'2021-09-13T17:16:35Z',NULL,NULL,NULL,'["Platform Engineering", "Control Planes", "Crossplane", "Code Samples"]','["[COMMUNITY-TOOL]"]','["docs/crossplane.md"]','["crossplane.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2021-09-13T17:16:35Z", "gh_stars": 6}');
INSERT INTO "resources" VALUES('https://github.com/asobti/kube-monkey','GitHub: kube-monkey','','2024',5,'A Go-based Kubernetes implementation of Netflix''s Chaos Monkey. kube-monkey runs inside k8s clusters to systematically schedule and delete random Pod instances within designated namespaces, forcing development teams to architect highly redundant and self-healing services.','Go','Software Utility','Intermediate',1,'online','manual','64ba2f1a6d1eaad7862d63edda60c42a1ecf91065bb3327bfef52a3adc90ce5d',100.0,1.77903160261133193e+09,1,'2024-06-16T19:34:50Z',NULL,NULL,NULL,'["Resilience", "Chaos Engineering", "Kubernetes Tools"]','["[DE FACTO STANDARD]"]','["docs/chaos-engineering.md"]','["chaos-engineering.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-06-16T19:34:50Z", "gh_stars": 3064}');
INSERT INTO "resources" VALUES('https://github.com/astefanutti/kubebox','kubebox','','2025',5,'An advanced, high-performance terminal dashboard for cluster visualization. Offers real-time metrics, dynamic log streaming, container exec shortcuts, and immediate cluster health alerts, providing a modern alternative to browser dashboards.','JavaScript','CLI Tool','Medium',0,'online','manual','dd1e5c18d53d7353fcaad0e52d8769c617b69ac7d6821f62e8975f70e7cdd0ea',100.0,1.779031393456007e+09,1,'2024-06-17T13:05:26Z',NULL,NULL,NULL,'["Operations", "Command Line Tools", "Terminal UI"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2024-06-17T13:05:26Z", "gh_stars": 2230}');
INSERT INTO "resources" VALUES('https://github.com/astral-sh/ruff','==Ruff==','','2025',5,'Curator Insight introduces Ruff as an extremely fast Python linter and formatter written in Rust. Live Grounding confirms Ruff is a de facto industry standard, dramatically lowering CI run times by replacing several older style checkers with a single compiled utility.','Rust','Tool','Intermediate',1,'online','manual','00e4cdf7ccac1fddbb00564f504169888829f18e865b1595287c4892ad556867',100.0,1.77903055903774404e+09,1,'2026-06-14T09:19:30Z',NULL,NULL,NULL,'["Software Engineering", "Python", "Static Analysis"]','["[DE FACTO STANDARD]"]','["docs/python.md", "docs/visual-studio.md"]','["python.md", "visual-studio.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-14T09:19:30Z", "gh_stars": 47969}');
INSERT INTO "resources" VALUES('https://github.com/atinfo/awesome-test-automation','Awesome Test Automation','','2026',5,'An extensive curated directory compiling top-tier testing tools, frameworks, and continuous validation resources. Features directories for end-to-end web tests, load injection suites, API contract testers, and mobile automation libraries.','N/A','Repository','Intermediate',0,'online','manual','122c77eeac0f609a07457f5415a2e09524d356674ed39f58d08a783a9cabde68',100.0,1.78173612314221596e+09,1,'2026-06-18T00:42:03.142216+02:00',NULL,NULL,NULL,'["Software Engineering", "Testing", "Test Automation Repositories"]','["[DE FACTO STANDARD]"]','["docs/other-awesome-lists.md", "docs/qa.md"]','["architectural-foundations.md", "other-awesome-lists.md", "qa.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/atombender/ktail','==atombender/ktail== 🌟','','2017',3,'A dedicated log-streaming tool built to stream, aggregate, and colorize logs from multiple workloads simultaneously. It filters log pipelines by name or label schemas to optimize terminal investigations.','Go','CLI Tool','Intermediate',0,'online','manual','df0e7f2e8603144cba19bbf1aac09e4afeb62d7e17c9b896b903d5b2ca6a69fb',100.0,1.77903280075655794e+09,1,'2024-12-12T00:15:59Z',NULL,NULL,NULL,'["Observability & Performance", "Log Streaming", "CLI Log Tools"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2024-12-12T00:15:59Z", "gh_stars": 365}');
INSERT INTO "resources" VALUES('https://github.com/auchenberg/volkswagen','auchenberg/volkswagen','','2016',5,'A satirical utility that detects if a test suite is running inside a CI pipeline and automatically forces a green/passing status. A humorous warning on metrics tampering.','JavaScript','Tool','Beginner',0,'online','manual','93b447d3c580cbc91864737ac4c76580b4f07569783000abe2a687b53a4393b4',100.0,1.77903224324387288e+09,1,'2026-02-27T07:23:49Z',NULL,NULL,NULL,'["Software Engineering", "Testing", "Satire"]','["[DE FACTO STANDARD]"]','["docs/qa.md"]','["qa.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-02-27T07:23:49Z", "gh_stars": 15447}');
INSERT INTO "resources" VALUES('https://github.com/authelia/authelia','Authelia 🌟','','2026',5,'Authelia is an open-source authentication and authorization server providing single sign-on (SSO) for applications behind reverse proxies. It supports multi-factor authentication (MFA), dynamic security policies, and user management, offloading auth logic from backend systems.','Go','Identity Provider / SSO Portal','Advanced',1,'online','manual','2209fc4a3a7d59e14441ca939b359b22219057aece6ca60b5085c4dd362d194e',100.0,1.77903216342855811e+09,1,'2026-06-14T08:39:42Z',NULL,NULL,NULL,'["Security & Identity", "Authentication & Authorization", "Single Sign-On"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-14T08:39:42Z", "gh_stars": 28049}');
INSERT INTO "resources" VALUES('https://github.com/automateyournetwork/automate_your_network','github.com/automateyournetwork/automate_your_network: Automate Your Network'' - John Capobianco - July 1st 2023','','2023',3,'A comprehensive network automation repository by John Capobianco supporting his publication. It presents concrete playbooks and collections to programmatically manage, audit, and document enterprise network appliances and switches.','YAML','Source Code','Advanced',0,'online','manual','5d31d3be43cf606cbb74f11b646eb7b881cad9edf676806d16c1f0613eab0b1f',100.0,1.779031429511523e+09,1,'2023-09-14T21:51:12Z',NULL,NULL,NULL,'["Infrastructure as Code", "Ansible", "Network Automation"]','["[COMMUNITY-TOOL]"]','["docs/ansible.md"]','["ansible.md"]','{}','{"gh_license": "GPL-3.0", "gh_pushed": "2023-09-14T21:51:12Z", "gh_stars": 647}');
INSERT INTO "resources" VALUES('https://github.com/avelino/awesome-go','Awesome Go 🌟','','2026',5,'The definitive curated repository of high-quality Go frameworks, libraries, and software. Unmatched resource for identifying vetted dependencies for enterprise service development. Ideal for building lightweight, hyper-fast microservices, Kubernetes operators, and cloud infrastructure CLI tools.','Go','Repository','Intermediate',1,'online','manual','292d69dad4fc77350d3fa86ed7f3445202a3d206cf44e1bacefa89ba335df2db',100.0,1.77903342947796511e+09,1,'2026-06-14T05:05:39Z',NULL,NULL,NULL,'["Programming Languages", "Go", "Resources"]','["[DE FACTO STANDARD]"]','["docs/golang.md", "docs/other-awesome-lists.md"]','["golang.md", "other-awesome-lists.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-14T05:05:39Z", "gh_stars": 175407, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/avencera/yamine','avencera/yamine','','2021',2,'A fast, Rust-based CLI processor built to parse and validate YAML file structures. While development is inactive, it serves as a lightweight local tool for querying configuration nodes in resource-constrained container images.','Rust','tool','intermediate',0,'online','manual','c4e4ca3024ed487a1458c6f048e15edca15c9af13912b36f9a79359040d90465',100.0,1.7790299854697659e+09,1,'2023-11-14T15:26:04Z',NULL,NULL,NULL,'["Configuration Management", "YAML Processing", "CLI Tools"]','["[COMMUNITY-TOOL]"]','["docs/yaml.md"]','["data-and-advanced-analytics.md", "yaml.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-11-14T15:26:04Z", "gh_stars": 19, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/awesome-devops/awesome-ansible','https://github.com/awesome-devops/awesome-ansible','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','a6d2538e3c6f7054fdc0b96563cc79781689be4289ad2df477cefddcdf223336',100.0,1.77903429614809489e+09,0,'2026-05-17T18:11:36.148095+02:00',NULL,NULL,NULL,'[]','[]','["docs/ansible.md"]','[]','{}','{"duplicate_of": "https://github.com/ansible-community/awesome-ansible"}');
INSERT INTO "resources" VALUES('https://github.com/awesome-foss/awesome-sysadmin','Awesome Sysadmin','','2026',5,'An exhaustive curation of open-source sysadmin resources, listing production-ready system monitors, configuration management tools, security suites, and virtualization frameworks used globally by SREs.','Markdown','Repository','Intermediate',0,'online','manual','1fd8ce0ee108f10c5f79b57aebca66b9b362a567c0afc83264a4704b99ae3bd8',100.0,1779033759.54017,1,'2026-06-03T21:31:07Z',NULL,NULL,NULL,'["Infrastructure", "Sysadmin", "Resources"]','["[DE FACTO STANDARD]"]','["docs/devops-tools.md", "docs/iac.md", "docs/monitoring.md"]','["devops-tools.md", "iac.md", "monitoring.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-03T21:31:07Z", "gh_stars": 34277}');
INSERT INTO "resources" VALUES('https://github.com/awesome-it/adeploy','awesome-it/adeploy','','2020',0,'An Ansible-based automation utility designed to orchestrate early-stage Kubernetes cluster deployments. Modern production operations have entirely transitioned to Kubernetes-native platforms (e.g., Kubeadm, Cluster API) and GitOps tooling (e.g., Argo CD).','Python','CLI / Script','Intermediate',0,'online','manual','73a59f2bcd53854998e44781b7181e97d3587dda6739ea22414a016470c72775',100.0,1.77903205728936409e+09,1,'2026-03-23T16:01:24Z',NULL,NULL,NULL,'["Operations", "GitOps & Delivery", "Deployment Automation"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "BSD-3-Clause", "gh_pushed": "2026-03-23T16:01:24Z", "gh_stars": 14}');
INSERT INTO "resources" VALUES('https://github.com/awesome-soft/awesome-devops','Awesome DevOps','','2026',2,'A multi-disciplinary tool index mapping platforms for provisioning, monitoring, security, container hosting, and deployment automation. Acts as a quick-lookup repository for constructing comprehensive DevOps toolchains.','Markdown','Awesome List','Intermediate',0,'online','manual','df038a8577496df46981aaba137c4729d4fc5c6a96ae3e93c4a617ce97612df7',100.0,1.77903040439438509e+09,1,'2025-06-05T06:21:48Z',NULL,NULL,NULL,'["Infrastructure & Operations", "DevOps & SRE Engineering", "General Tooling"]','["[COMMUNITY-TOOL]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2025-06-05T06:21:48Z", "gh_stars": 518, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/awesome-sre/awesome-sre','awesome-sre/awesome-sre','','2026',0,'A general SRE community registry documenting articles, telemetry paradigms, cluster performance charts, and manual failover plans for high-concurrency web systems.','Markdown','Awesome List','Intermediate',0,'online','manual','021ccfb5e4969ceefc90fd61ddc505c9db6b049211b74bb0a466925c3524ec19',100.0,1.78173612315111804e+09,1,'2026-06-18T00:42:03.151118+02:00',NULL,NULL,NULL,'["Infrastructure & Operations", "Site Reliability Engineering", "General SRE"]','["[COMMUNITY-TOOL]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/aws-cloudformation/cloudformation-guard','AWS CloudFormation Guard','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','80aa712b02fec3418dc86d022a043d90881873d43e7b6851962e9fd01ec6da8e',100.0,1.77903397455480504e+09,1,'2026-05-17T18:06:14.554805+02:00',NULL,NULL,NULL,'[]','[]','["docs/aws-iac.md"]','[]','{}','{"gh_license": "Apache-2.0"}');
INSERT INTO "resources" VALUES('https://github.com/aws-controllers-k8s/community','AWS Controllers for Kubernetes (ACK) 🌟','','2026',5,'Official community hub for AWS Controllers for Kubernetes (ACK). It allows cloud platform engineers to define and manage AWS resources (like RDS databases, S3 buckets, and SQS queues) directly through standard Kubernetes manifests and controllers.','Go','Code Repository','Advanced',0,'online','manual','8c61de863d9d618c6469f0c6adbceb09bb3429f1003d6aeea23e3890328e8ca7',100.0,1.77903295315520191e+09,1,'2026-06-13T20:57:56Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Amazon EKS", "ACK"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md", "docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md", "kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T20:57:56Z", "gh_stars": 2627}');
INSERT INTO "resources" VALUES('https://github.com/aws-ia/terraform-aws-eks-blueprints','==github.com/aws-ia/terraform-aws-eks-blueprints (examples) 🌟🌟🌟==','','2026',4,'A production-ready collection of Terraform modules designed to accelerate Amazon EKS cluster deployments. Live Grounding highlights its architecture for bootstrapping clusters with essential add-ons like Karpenter, AWS Load Balancer Controller, and Prometheus. It represents the industry standard for declarative EKS infrastructure provisioning.','HCL','Repository','Advanced',0,'online','manual','b10114e005af34dd0a1b090b242ad5d0300ce15888760f434b4a9c9f669918da',100.0,1.77903435590740108e+09,1,'2026-06-05T11:52:56Z',NULL,NULL,NULL,'["Cloud Infrastructure", "AWS", "EKS & Container Orchestration"]','["[ENTERPRISE-STABLE]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md", "terraform.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-05T11:52:56Z", "gh_stars": 3024}');
INSERT INTO "resources" VALUES('https://github.com/aws-ia/terraform-aws-eks-blueprints/blob/main/docs/v4-to-v5/motivation.md','Direction for v5 of Terraform EKS Blueprints','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','2c9c034bfea790f9e75891f8aad8bd0022eaa94cd283c308e84cbea5611b9ab2',100.0,1.779029268246351e+09,1,'2026-05-17T16:47:48.246351+02:00',NULL,NULL,NULL,'[]','[]','["docs/managed-kubernetes-in-public-cloud.md"]','[]','{}','{"gh_license": "Apache-2.0"}');
* Enhancing UI performance via automatic state update batching and asynchronous transitions.','en','Issue','Advanced',0,'online','automatic','2aee2d8029be2792b1823290cf0bd44f7711f851d62a30af62646d45f510563a',NULL,1.78035199434256601e+09,0,'2026-06-01T18:53:27Z',NULL,NULL,NULL,'["DevOps", "Continuous Delivery", "Argo CD UI Architecture"]','["[COMMUNITY-TOOL]"]','[]','[]','{}','{"category": "argo", "gh_license": "Apache-2.0", "gh_pushed": "2026-06-01T18:53:27Z", "gh_stars": 23029, "reputation_status": "Vetted", "reputation_summary": "Active community discussion regarding upgrading the aging Argo CD UI from React 16 to React 19.", "social_preview_url": "https://opengraph.githubassets.com/57a513e595b57bef86a5608099959701bf60db048addd0f7b8acd1ee40662b53/argoproj/argo-cd/issues/25203", "source_provenance": "X.com (ArgoProj)", "suggested_new_category": "", "gh_open_issues_30d": 4207, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:36:15.944748+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/argoproj/argo-cd/pull/26601','feat(ui): Add AppSet to Application Resource Tree in Argo CD','','2024',5,'The official Argo CD feature enhancement that maps ApplicationSets directly inside the dashboard UI tree. This view simplifies managing multi-tenant topologies and nested application definitions for platform operators.','Go','Pull Request','Intermediate',0,'online','manual','5fcd701110fce0e9f89dbcdee949560e63cba12ed02ad830ce1d469939187fa2',100.0,1.77903288208261609e+09,1,'2026-06-14T09:47:54Z',NULL,NULL,NULL,'["Kubernetes GitOps & Packaging", "Argo Project Ecosystem", "UI Visualization"]','["[DE FACTO STANDARD]"]','["docs/argo.md", "docs/cicd.md", "docs/kubernetes-operators-controllers.md"]','["argo.md", "kubernetes-operators-controllers.md", "cicd.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-14T09:47:54Z", "gh_stars": 23128, "gh_open_issues_30d": 4207, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:36:16.665742+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/armadaproject/armada','Armada','','2020',3,'A high-throughput, multi-cluster batch queuing system built on top of Kubernetes. Armada manages tens of thousands of concurrent jobs across geographically distributed clusters, optimized for machine learning and quantitative analysis.','Go','Batch Scheduler','High',1,'online','manual','927210676217aa66088e5490ab7abaebeffc75d85169786f1cbc1f65babf6c47',100.0,1.77913049494526505e+09,1,'2026-06-12T15:04:53Z',NULL,NULL,NULL,'["Scheduling", "Multi-Cluster", "Batch Workloads"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T15:04:53Z", "gh_stars": 600, "gh_open_issues_30d": 109, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T14:36:17.433902+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/arminc/k8s-platform-lcm','k8s-platform-lcm: Kubernetes platform lifecycle management 🌟','','2023',5,'An operations manager to track, audit, and upgrade cluster platform components, core Helm charts, and associated operator bundles. It prevents drift across non-application system-level components. Offers a simplified dashboard interface for infrastructure consistency.','Go','Tool','Medium',0,'online','manual','8da5006f3066cde9142ddef40c7935fa51ad77c535896b4c1ad36770273c76a9',100.0,1.77903273243635892e+09,1,'2022-05-13T05:47:23Z',NULL,NULL,NULL,'["Operations", "Cluster Upgrades", "Lifecycle Management"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2022-05-13T05:47:23Z", "gh_stars": 182, "gh_open_issues_30d": 18, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:36:18.143579+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/armory/minnaker','Minnaker','','2022',2,'An installer package developed by Armory to spin up a single-node Spinnaker instance quickly inside a lightweight Kubernetes cluster (using K3s). It was designed to facilitate Spinnaker evaluations and local sandbox development. By 2026, as Spinnaker''s market footprint contraction continued, the Minnaker repository is considered a legacy reference project.','Shell','Installer','Medium',0,'online','manual','bc9ea132c2e70c4c1230e36f022608e8505e2ee0506cd0270dd87d762505e438',100.0,1.779032338039891e+09,1,'2023-05-20T21:18:12Z',NULL,NULL,NULL,'["Delivery", "CI/CD", "Spinnaker"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-05-20T21:18:12Z", "gh_stars": 156, "gh_open_issues_30d": 33, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T14:36:18.885927+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/armosec/kubescape','==Kubescape== 🌟','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','b2edcccc6e3dc19610cb8401874e7e9c6efc002eea50bff20debb737537678d8',100.0,1.7790293259623959e+09,0,'2026-05-17T16:48:45.962396+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-security.md"]','[]','{}','{"duplicate_of": "https://github.com/kubescape/kubescape", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:36:19.550860+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/armosec/regolibrary','armosec/regolibrary','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','632ecd5c343463ee3440caa26e977276d038338bdc2d4952ef3e18207cafb994',100.0,1779031451.44535,0,'2026-05-17T17:24:11.445350+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"duplicate_of": "https://github.com/kubescape/regolibrary", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T14:36:20.206111+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/arslanbilal/git-cheat-sheet','arslanbilal/git-cheat-sheet 🌟🌟🌟','','2025',4,'Curator Insight: Highly starred open-source repository containing translated Git references. Live Grounding: Facilitates localized, multilingual engineering onboarding, providing consistent global team standards for branch structures, conflict resolutions, and configuration setups.','Markdown','GitHub Repository','Intermediate',0,'online','manual','c263d3474671da6aee00f06477d2cf21e1b71609533804a19070230671efc968',100.0,1.78173589011414599e+09,1,'2026-06-18T00:38:10.114146+02:00',NULL,NULL,NULL,'["Development", "Version Control", "Git"]','["[ENTERPRISE-STABLE]"]','["docs/cheatsheets.md"]','["cheatsheets.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 2, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T14:36:20.930897+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/arttor/helmify','==arttor/helmify==','','2021',3,'An automation utility that converts standard declarative Kubernetes manifests directly into valid, paramaterized Helm charts. It simplifies migrations and accelerates the distribution setup of packaged deployments.','Go','CLI Tool','Intermediate',0,'online','manual','95af44ea2bd1b9252e87920a85c9df5d9b5f24886fc5e6bd00264af5fbf46866',100.0,1.77903308475923895e+09,1,'2026-05-07T07:38:16Z',NULL,NULL,NULL,'["GitOps & Configuration", "Helm Chart Generation", "Migration Tools"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md", "docs/yaml.md"]','["kubernetes-tools.md", "yaml.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-05-07T07:38:16Z", "gh_stars": 1738, "is_special": true, "gh_open_issues_30d": 55, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:25:35.433074+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/arun-gupta/docker-jenkins-pipeline','github.com/arun-gupta/docker-jenkins-pipeline: Docker + Java + Jenkins Pipeline','','2018',0,'Curator Insight structures this repository around running Docker-integrated Java application compilation inside Jenkins Pipelines. Live Grounding shows that mounting the Docker socket inside Jenkins agents remains a common albeit security-sensitive approach. It serves as a historical and practical reference for building containerized Java workloads using declarative pipelines.','Java','Repository','Intermediate',1,'online','manual','850f58fedd04dc18d048d11e49b9b071128fdfd5e72db40e2d38139deff04889',100.0,1.78173591099225091e+09,1,'2026-06-18T00:38:30.992251+02:00',NULL,NULL,NULL,'["DevOps", "CI/CD Platforms", "Jenkins", "Docker Containerization"]','["[COMMUNITY-TOOL]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 11, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:25:36.185946+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/asdf-community/asdf-kubectl','asdf-kubectl','','2020',2,'A community-maintained plugin for the asdf extendable version manager, designed to install and manage multiple versions of kubectl. It facilitates deterministic local environments by locking Kubernetes CLI versions per project.','Shell','CLI Plugin','Low',0,'online','manual','10d02cbbb3fd4e0ddf173cd2217d9b1d4ddc7870a563b7997224ee5708e67da8',100.0,1.77913049498870205e+09,1,'2025-11-12T15:57:32Z',NULL,NULL,NULL,'["Developer Experience", "CLI Tools", "Version Management"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2025-11-12T15:57:32Z", "gh_stars": 131, "gh_open_issues_30d": 5, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:25:36.901768+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/asim/go-micro','go-micro','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','4480b6aeafbe7b209f8e12f66ba1c0fd250f07d5f8ff5d5e19aa614a730ba7ff',100.0,1.77903108539226198e+09,0,'2026-05-17T17:18:05.392262+02:00',NULL,NULL,NULL,'[]','[]','["docs/golang.md"]','[]','{}','{"gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:25:37.553245+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/askmeegs/learn-istio','github.com/askmeegs/learn-istio 🌟','','2020',0,'An educational repository featuring early-day tutorials and configurations for learning Istio concepts. Currently archived/unmaintained, functioning primarily as a legacy resource.','Shell','Repository','Beginner',1,'online','manual','40dd02ee18cdb30f4966d3166cf46c09c5993471a4ace77ce29c75addfb27121',100.0,1.78173597129866099e+09,1,'2026-06-18T00:39:31.298661+02:00',NULL,NULL,NULL,'["Service Mesh", "Training", "Education"]','["[LEGACY]"]','["docs/istio.md"]','["istio.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:25:38.283305+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/askmeegs/yaml-your-cloud','askmeegs/yaml-your-cloud','','2021',1,'Code repository designed as a companion to the ''YAML your cloud'' presentation, offering practical Kubernetes manifest examples and Crossplane configurations. It showcases foundational multi-cloud provider settings, composition patterns, and claims structures used in active training environments.','YAML','Code Repository','Intermediate',0,'online','manual','21fd98ae25edafdb2d51f06cdfa2d4f399f70587def62c3a84f16f0e0139fd11',100.0,1.77903089185313606e+09,1,'2021-09-13T17:16:35Z',NULL,NULL,NULL,'["Platform Engineering", "Control Planes", "Crossplane", "Code Samples"]','["[COMMUNITY-TOOL]"]','["docs/crossplane.md"]','["crossplane.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2021-09-13T17:16:35Z", "gh_stars": 6, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:25:38.983370+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/asobti/kube-monkey','GitHub: kube-monkey','','2024',5,'A Go-based Kubernetes implementation of Netflix''s Chaos Monkey. kube-monkey runs inside k8s clusters to systematically schedule and delete random Pod instances within designated namespaces, forcing development teams to architect highly redundant and self-healing services.','Go','Software Utility','Intermediate',1,'online','manual','64ba2f1a6d1eaad7862d63edda60c42a1ecf91065bb3327bfef52a3adc90ce5d',100.0,1.77903160261133193e+09,1,'2024-06-16T19:34:50Z',NULL,NULL,NULL,'["Resilience", "Chaos Engineering", "Kubernetes Tools"]','["[DE FACTO STANDARD]"]','["docs/chaos-engineering.md"]','["chaos-engineering.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-06-16T19:34:50Z", "gh_stars": 3064, "gh_open_issues_30d": 28, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:25:39.679219+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/astefanutti/kubebox','kubebox','','2025',5,'An advanced, high-performance terminal dashboard for cluster visualization. Offers real-time metrics, dynamic log streaming, container exec shortcuts, and immediate cluster health alerts, providing a modern alternative to browser dashboards.','JavaScript','CLI Tool','Medium',0,'online','manual','dd1e5c18d53d7353fcaad0e52d8769c617b69ac7d6821f62e8975f70e7cdd0ea',100.0,1.779031393456007e+09,1,'2024-06-17T13:05:26Z',NULL,NULL,NULL,'["Operations", "Command Line Tools", "Terminal UI"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2024-06-17T13:05:26Z", "gh_stars": 2230, "gh_open_issues_30d": 42, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:25:40.378651+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/astral-sh/ruff','==Ruff==','','2025',5,'Curator Insight introduces Ruff as an extremely fast Python linter and formatter written in Rust. Live Grounding confirms Ruff is a de facto industry standard, dramatically lowering CI run times by replacing several older style checkers with a single compiled utility.','Rust','Tool','Intermediate',1,'online','manual','00e4cdf7ccac1fddbb00564f504169888829f18e865b1595287c4892ad556867',100.0,1.77903055903774404e+09,1,'2026-06-14T09:19:30Z',NULL,NULL,NULL,'["Software Engineering", "Python", "Static Analysis"]','["[DE FACTO STANDARD]"]','["docs/python.md", "docs/visual-studio.md"]','["python.md", "visual-studio.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-14T09:19:30Z", "gh_stars": 47969, "gh_open_issues_30d": 2022, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:25:41.086184+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/atinfo/awesome-test-automation','Awesome Test Automation','','2026',5,'An extensive curated directory compiling top-tier testing tools, frameworks, and continuous validation resources. Features directories for end-to-end web tests, load injection suites, API contract testers, and mobile automation libraries.','N/A','Repository','Intermediate',0,'online','manual','122c77eeac0f609a07457f5415a2e09524d356674ed39f58d08a783a9cabde68',100.0,1.78173612314221596e+09,1,'2026-06-18T00:42:03.142216+02:00',NULL,NULL,NULL,'["Software Engineering", "Testing", "Test Automation Repositories"]','["[DE FACTO STANDARD]"]','["docs/other-awesome-lists.md", "docs/qa.md"]','["architectural-foundations.md", "other-awesome-lists.md", "qa.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "is_special": true, "gh_open_issues_30d": 104, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:25:41.801837+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/atombender/ktail','==atombender/ktail== 🌟','','2017',3,'A dedicated log-streaming tool built to stream, aggregate, and colorize logs from multiple workloads simultaneously. It filters log pipelines by name or label schemas to optimize terminal investigations.','Go','CLI Tool','Intermediate',0,'online','manual','df0e7f2e8603144cba19bbf1aac09e4afeb62d7e17c9b896b903d5b2ca6a69fb',100.0,1.77903280075655794e+09,1,'2024-12-12T00:15:59Z',NULL,NULL,NULL,'["Observability & Performance", "Log Streaming", "CLI Log Tools"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2024-12-12T00:15:59Z", "gh_stars": 365, "gh_open_issues_30d": 2, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:25:42.581979+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/auchenberg/volkswagen','auchenberg/volkswagen','','2016',5,'A satirical utility that detects if a test suite is running inside a CI pipeline and automatically forces a green/passing status. A humorous warning on metrics tampering.','JavaScript','Tool','Beginner',0,'online','manual','93b447d3c580cbc91864737ac4c76580b4f07569783000abe2a687b53a4393b4',100.0,1.77903224324387288e+09,1,'2026-02-27T07:23:49Z',NULL,NULL,NULL,'["Software Engineering", "Testing", "Satire"]','["[DE FACTO STANDARD]"]','["docs/qa.md"]','["qa.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-02-27T07:23:49Z", "gh_stars": 15447, "gh_open_issues_30d": 23, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:25:43.297493+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/authelia/authelia','Authelia 🌟','','2026',5,'Authelia is an open-source authentication and authorization server providing single sign-on (SSO) for applications behind reverse proxies. It supports multi-factor authentication (MFA), dynamic security policies, and user management, offloading auth logic from backend systems.','Go','Identity Provider / SSO Portal','Advanced',1,'online','manual','2209fc4a3a7d59e14441ca939b359b22219057aece6ca60b5085c4dd362d194e',100.0,1.77903216342855811e+09,1,'2026-06-14T08:39:42Z',NULL,NULL,NULL,'["Security & Identity", "Authentication & Authorization", "Single Sign-On"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-14T08:39:42Z", "gh_stars": 28049, "gh_open_issues_30d": 117, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:25:44.000508+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/automateyournetwork/automate_your_network','github.com/automateyournetwork/automate_your_network: Automate Your Network'' - John Capobianco - July 1st 2023','','2023',3,'A comprehensive network automation repository by John Capobianco supporting his publication. It presents concrete playbooks and collections to programmatically manage, audit, and document enterprise network appliances and switches.','YAML','Source Code','Advanced',0,'online','manual','5d31d3be43cf606cbb74f11b646eb7b881cad9edf676806d16c1f0613eab0b1f',100.0,1.779031429511523e+09,1,'2023-09-14T21:51:12Z',NULL,NULL,NULL,'["Infrastructure as Code", "Ansible", "Network Automation"]','["[COMMUNITY-TOOL]"]','["docs/ansible.md"]','["ansible.md"]','{}','{"gh_license": "GPL-3.0", "gh_pushed": "2023-09-14T21:51:12Z", "gh_stars": 647, "gh_open_issues_30d": 2, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:25:44.683010+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/avelino/awesome-go','Awesome Go 🌟','','2026',5,'The definitive curated repository of high-quality Go frameworks, libraries, and software. Unmatched resource for identifying vetted dependencies for enterprise service development. Ideal for building lightweight, hyper-fast microservices, Kubernetes operators, and cloud infrastructure CLI tools.','Go','Repository','Intermediate',1,'online','manual','292d69dad4fc77350d3fa86ed7f3445202a3d206cf44e1bacefa89ba335df2db',100.0,1.77903342947796511e+09,1,'2026-06-14T05:05:39Z',NULL,NULL,NULL,'["Programming Languages", "Go", "Resources"]','["[DE FACTO STANDARD]"]','["docs/golang.md", "docs/other-awesome-lists.md"]','["golang.md", "other-awesome-lists.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-14T05:05:39Z", "gh_stars": 175407, "is_special": true, "gh_open_issues_30d": 195, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:25:45.394220+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/avencera/yamine','avencera/yamine','','2021',2,'A fast, Rust-based CLI processor built to parse and validate YAML file structures. While development is inactive, it serves as a lightweight local tool for querying configuration nodes in resource-constrained container images.','Rust','tool','intermediate',0,'online','manual','c4e4ca3024ed487a1458c6f048e15edca15c9af13912b36f9a79359040d90465',100.0,1.7790299854697659e+09,1,'2023-11-14T15:26:04Z',NULL,NULL,NULL,'["Configuration Management", "YAML Processing", "CLI Tools"]','["[COMMUNITY-TOOL]"]','["docs/yaml.md"]','["data-and-advanced-analytics.md", "yaml.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-11-14T15:26:04Z", "gh_stars": 19, "is_special": true, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:25:46.191645+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awesome-devops/awesome-ansible','https://github.com/awesome-devops/awesome-ansible','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','a6d2538e3c6f7054fdc0b96563cc79781689be4289ad2df477cefddcdf223336',100.0,1.77903429614809489e+09,0,'2026-05-17T18:11:36.148095+02:00',NULL,NULL,NULL,'[]','[]','["docs/ansible.md"]','[]','{}','{"duplicate_of": "https://github.com/ansible-community/awesome-ansible", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:25:46.865879+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awesome-foss/awesome-sysadmin','Awesome Sysadmin','','2026',5,'An exhaustive curation of open-source sysadmin resources, listing production-ready system monitors, configuration management tools, security suites, and virtualization frameworks used globally by SREs.','Markdown','Repository','Intermediate',0,'online','manual','1fd8ce0ee108f10c5f79b57aebca66b9b362a567c0afc83264a4704b99ae3bd8',100.0,1779033759.54017,1,'2026-06-03T21:31:07Z',NULL,NULL,NULL,'["Infrastructure", "Sysadmin", "Resources"]','["[DE FACTO STANDARD]"]','["docs/devops-tools.md", "docs/iac.md", "docs/monitoring.md"]','["devops-tools.md", "iac.md", "monitoring.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-03T21:31:07Z", "gh_stars": 34277, "gh_open_issues_30d": 67, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:25:47.608342+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awesome-it/adeploy','awesome-it/adeploy','','2020',0,'An Ansible-based automation utility designed to orchestrate early-stage Kubernetes cluster deployments. Modern production operations have entirely transitioned to Kubernetes-native platforms (e.g., Kubeadm, Cluster API) and GitOps tooling (e.g., Argo CD).','Python','CLI / Script','Intermediate',0,'online','manual','73a59f2bcd53854998e44781b7181e97d3587dda6739ea22414a016470c72775',100.0,1.77903205728936409e+09,1,'2026-03-23T16:01:24Z',NULL,NULL,NULL,'["Operations", "GitOps & Delivery", "Deployment Automation"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "BSD-3-Clause", "gh_pushed": "2026-03-23T16:01:24Z", "gh_stars": 14, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:25:48.332540+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awesome-soft/awesome-devops','Awesome DevOps','','2026',2,'A multi-disciplinary tool index mapping platforms for provisioning, monitoring, security, container hosting, and deployment automation. Acts as a quick-lookup repository for constructing comprehensive DevOps toolchains.','Markdown','Awesome List','Intermediate',0,'online','manual','df038a8577496df46981aaba137c4729d4fc5c6a96ae3e93c4a617ce97612df7',100.0,1.77903040439438509e+09,1,'2025-06-05T06:21:48Z',NULL,NULL,NULL,'["Infrastructure & Operations", "DevOps & SRE Engineering", "General Tooling"]','["[COMMUNITY-TOOL]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2025-06-05T06:21:48Z", "gh_stars": 518, "is_special": true, "gh_open_issues_30d": 16, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:25:49.066997+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awesome-sre/awesome-sre','awesome-sre/awesome-sre','','2026',0,'A general SRE community registry documenting articles, telemetry paradigms, cluster performance charts, and manual failover plans for high-concurrency web systems.','Markdown','Awesome List','Intermediate',0,'online','manual','021ccfb5e4969ceefc90fd61ddc505c9db6b049211b74bb0a466925c3524ec19',100.0,1.78173612315111804e+09,1,'2026-06-18T00:42:03.151118+02:00',NULL,NULL,NULL,'["Infrastructure & Operations", "Site Reliability Engineering", "General SRE"]','["[COMMUNITY-TOOL]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "is_special": true, "gh_open_issues_30d": 4, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:25:49.765663+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-cloudformation/cloudformation-guard','AWS CloudFormation Guard','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','80aa712b02fec3418dc86d022a043d90881873d43e7b6851962e9fd01ec6da8e',100.0,1.77903397455480504e+09,1,'2026-05-17T18:06:14.554805+02:00',NULL,NULL,NULL,'[]','[]','["docs/aws-iac.md"]','[]','{}','{"gh_license": "Apache-2.0", "gh_open_issues_30d": 50, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:25:50.544586+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-controllers-k8s/community','AWS Controllers for Kubernetes (ACK) 🌟','','2026',5,'Official community hub for AWS Controllers for Kubernetes (ACK). It allows cloud platform engineers to define and manage AWS resources (like RDS databases, S3 buckets, and SQS queues) directly through standard Kubernetes manifests and controllers.','Go','Code Repository','Advanced',0,'online','manual','8c61de863d9d618c6469f0c6adbceb09bb3429f1003d6aeea23e3890328e8ca7',100.0,1.77903295315520191e+09,1,'2026-06-13T20:57:56Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Amazon EKS", "ACK"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md", "docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md", "kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T20:57:56Z", "gh_stars": 2627, "gh_open_issues_30d": 296, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:25:51.375342+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-ia/terraform-aws-eks-blueprints','==github.com/aws-ia/terraform-aws-eks-blueprints (examples) 🌟🌟🌟==','','2026',4,'A production-ready collection of Terraform modules designed to accelerate Amazon EKS cluster deployments. Live Grounding highlights its architecture for bootstrapping clusters with essential add-ons like Karpenter, AWS Load Balancer Controller, and Prometheus. It represents the industry standard for declarative EKS infrastructure provisioning.','HCL','Repository','Advanced',0,'online','manual','b10114e005af34dd0a1b090b242ad5d0300ce15888760f434b4a9c9f669918da',100.0,1.77903435590740108e+09,1,'2026-06-05T11:52:56Z',NULL,NULL,NULL,'["Cloud Infrastructure", "AWS", "EKS & Container Orchestration"]','["[ENTERPRISE-STABLE]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md", "terraform.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-05T11:52:56Z", "gh_stars": 3024, "gh_open_issues_30d": 14, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:25:52.169606+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-ia/terraform-aws-eks-blueprints/blob/main/docs/v4-to-v5/motivation.md','Direction for v5 of Terraform EKS Blueprints','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','2c9c034bfea790f9e75891f8aad8bd0022eaa94cd283c308e84cbea5611b9ab2',100.0,1.779029268246351e+09,1,'2026-05-17T16:47:48.246351+02:00',NULL,NULL,NULL,'[]','[]','["docs/managed-kubernetes-in-public-cloud.md"]','[]','{}','{"gh_license": "Apache-2.0", "gh_open_issues_30d": 14, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:25:52.930344+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-observability','github.com/aws-observability','','2023',0,'The main landing repository for AWS Observability engineering groups. Provides multi-faceted Terraform templates designed to spin up standardized, enterprise-grade cloud logging and analytical tools.','HCL','Repository','Advanced',0,'online','manual','32f9ed227a0d9d466b2608c94a92bdcba69daa5957985988f41e207df893e9c1',100.0,1.77902917469553089e+09,1,'2026-05-17T16:46:14.695531+02:00',NULL,NULL,NULL,'["Cloud Infrastructure", "AWS", "EKS & Container Orchestration"]','["[COMMUNITY-TOOL]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/aws-observability/terraform-aws-observability-accelerator',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','7160eea9597c82c0cbab2e806ff4aa39884346cc33c66281304796c207d8a342',100.0,1.77903278015926504e+09,0,'2026-05-17T17:46:20.159265+02:00',NULL,NULL,NULL,'[]','[]','["docs/terraform.md"]','[]','{}','{}');
INSERT INTO "resources" VALUES('https://github.com/aws-quickstart/cdk-eks-blueprints','==aws-quickstart/cdk-eks-blueprints: Amazon EKS Blueprints for CDK==','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','0dfa9e033918308136eab12a441be32ed43249e4d49bd227ab3aa9e566596a55',100.0,1.77902989759401392e+09,0,'2026-05-17T16:58:17.594014+02:00',NULL,NULL,NULL,'[]','[]','["docs/managed-kubernetes-in-public-cloud.md"]','[]','{}','{"duplicate_of": "https://github.com/awslabs/cdk-eks-blueprints"}');
INSERT INTO "resources" VALUES('https://github.com/aws-observability/terraform-aws-observability-accelerator',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','7160eea9597c82c0cbab2e806ff4aa39884346cc33c66281304796c207d8a342',100.0,1.77903278015926504e+09,0,'2026-05-17T17:46:20.159265+02:00',NULL,NULL,NULL,'[]','[]','["docs/terraform.md"]','[]','{}','{"gh_open_issues_30d": 7, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:25:53.715805+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-quickstart/cdk-eks-blueprints','==aws-quickstart/cdk-eks-blueprints: Amazon EKS Blueprints for CDK==','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','0dfa9e033918308136eab12a441be32ed43249e4d49bd227ab3aa9e566596a55',100.0,1.77902989759401392e+09,0,'2026-05-17T16:58:17.594014+02:00',NULL,NULL,NULL,'[]','[]','["docs/managed-kubernetes-in-public-cloud.md"]','[]','{}','{"duplicate_of": "https://github.com/awslabs/cdk-eks-blueprints", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:25:54.370247+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples','==github.com/aws-samples== 🌟','','2026',0,'The master organization containing AWS-curated reference architectures, deployment scripts, and code samples. Serves as a vital baseline for implementing multi-account strategies, serverless setups, and security blueprints.','Multi','Organization','Advanced',0,'online','manual','818b25c8b128c4cc08f1b407654a5168ca85db1486768edb4d8634628e815922',100.0,1.7790343067206881e+09,1,'2026-05-17T18:11:46.720688+02:00',NULL,NULL,NULL,'["Public Cloud Providers", "AWS", "Best Practices"]','["[COMMUNITY-TOOL]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/aws-auto-inventory','github.com/aws-samples/aws-auto-inventory: AWS Automated Inventory 🌟','','2024',5,'An automated system designed to discover, track, and catalog AWS infrastructure assets across multiple regions and accounts. Leverages Serverless functions and AWS Config to maintain real-time compliance dashboards.','Python','Repository','Intermediate',0,'online','manual','d313f0e1c1d23aa70404f9af62b2948d85be04af17d3609ce1a0253fc928a08c',100.0,1779033655.90476,1,'2026-06-11T19:34:23Z',NULL,NULL,NULL,'["Public Cloud Providers", "AWS", "Asset Management"]','["[DE FACTO STANDARD]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T19:34:23Z", "gh_stars": 254}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/aws-cdk-for-k3scluster','github.com/aws-samples/cdk-k3s-cluster 🌟','','2023',2,'An AWS Cloud Development Kit (CDK) resource package that constructs complete K3s virtual machine clusters on EC2, offering a highly economical alternative to managed AWS EKS services.','TypeScript','IaC','Intermediate',0,'online','manual','c2b3307d5505a3dde5e67e92035a8d1a9872f9d58d9450854c4259e2e2a9a1cd',100.0,1.77903279044597697e+09,1,'2022-10-27T13:35:31Z',NULL,NULL,NULL,'["Edge & IoT", "Infrastructure as Code", "AWS CDK"]','["[COMMUNITY-TOOL]"]','["docs/rancher.md"]','["rancher.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2022-10-27T13:35:31Z", "gh_stars": 61}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/aws-cdk-stack-builder-tool','==github.com/aws-samples/aws-cdk-stack-builder-tool==','','2024',5,'An AWS Samples tool configured to dynamically build and modularize AWS CDK stacks based on high-level configuration templates. It streamlines boilerplate IAC setup, allowing platform engineering teams to maintain clean, scalable multi-environment stacks. Ideal for bootstrapping large cloud applications adhering to AWS Well-Architected frameworks.','TypeScript','Repository','Intermediate',0,'online','manual','93a3ebf7ea5faff6c84b491c2841b309a61ceb63f65f710297d3782e44d4c829',100.0,1.77903348717263698e+09,1,'2024-08-01T15:35:30Z',NULL,NULL,NULL,'["Cloud Platform", "AWS Infrastructure", "Infrastructure as Code"]','["[DE FACTO STANDARD]"]','["docs/aws-tools-scripts.md"]','["aws-tools-scripts.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2024-08-01T15:35:30Z", "gh_stars": 202}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/aws-customer-playbook-framework','github.com/aws-samples/aws-customer-playbook-framework 🌟','','2025',5,'A comprehensive operational framework that helps organizations define, structure, and automate IT playbooks and runbooks on AWS. Enhances incident response protocols and disaster recovery simulations.','TypeScript','Repository','Advanced',0,'online','manual','82978fb0b4badce58791e9b1211ffc292cb1b18641bd837172c86e076e686297',100.0,1.77903458264623308e+09,1,'2026-06-13T23:29:32Z',NULL,NULL,NULL,'["Public Cloud Providers", "AWS", "Operational Excellence"]','["[DE FACTO STANDARD]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-13T23:29:32Z", "gh_stars": 661}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/aws-eks-accelerator-for-terraform','github.com/aws-samples/aws-eks-accelerator-for-terraform: AWS EKS Accelerator'' for Terraform 🌟','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','b10114e005af34dd0a1b090b242ad5d0300ce15888760f434b4a9c9f669918da',100.0,1.77903102628632593e+09,0,'2026-05-17T17:17:06.286326+02:00',NULL,NULL,NULL,'[]','[]','["docs/terraform.md"]','[]','{}','{"duplicate_of": "https://github.com/aws-ia/terraform-aws-eks-blueprints"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/aws-network-hub-for-terraform','==aws-samples/aws-network-hub-for-terraform: Network Hub Account with Terraform==','','2024',5,'Structured Terraform blueprints for provisioning centralized Transit Gateway or Cloud WAN hubs. Implements hub-and-spoke networking topology across multi-account enterprise structures safely.','HCL','Repository','Advanced',0,'online','manual','f90f133dc5fdb9937ae0040c9da9cfe80b3a117b17c361d19a75f217f09d5e2e',100.0,1.77903303084307193e+09,1,'2024-06-11T14:55:42Z',NULL,NULL,NULL,'["Infrastructure as Code", "Terraform", "AWS Networking"]','["[DE FACTO STANDARD]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2024-06-11T14:55:42Z", "gh_stars": 103}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/aws-secrets-manager-hybrid-secret-replication-from-hashicorp-vault','github.com/aws-samples: How to set up continuous replication from your third-party'' secrets manager to AWS Secrets Manager','','2022',1,'An AWS-samples repository containing code to continuously replicate secret assets between external managers (such as HashiCorp Vault) and AWS Secrets Manager. Features serverless execution scripts to maintain secrets synchronization across hybrid-cloud infrastructures.','Python/Terraform','Code Repository','Advanced',1,'online','manual','e6966ffed386f7a22e26fdd7e5a35687d807fc1c6dda1c86f60058dd915c314a',100.0,1.779031064966434e+09,1,'2024-06-18T14:19:35Z',NULL,NULL,NULL,'["Cloud Architecture", "AWS", "Secrets Management"]','["[COMMUNITY-TOOL]"]','["docs/aws-security.md"]','["aws-security.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2024-06-18T14:19:35Z", "gh_stars": 16}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/aws-training-demo','github.com/aws-samples/aws-training-demo','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','e5f76d0406a15b046932dbd2d9018593d8479bc2555802fc14e9153e30744ddf',100.0,1.77903061147889304e+09,0,'2026-05-17T17:10:11.478893+02:00',NULL,NULL,NULL,'[]','[]','["docs/demos.md"]','[]','{}','{"duplicate_of": "https://github.com/amazon-archives/aws-training-demo"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/aws-waf-ops-dashboards','github.com/aws-samples/aws-waf-ops-dashboards','','2023',5,'Contains CloudFormation templates and Athena query scripts to establish centralized dashboards for AWS Web Application Firewall (WAF) logs. Empowers security operations to detect anomalous traffic patterns.','Python','Repository','Intermediate',0,'online','manual','dcaf014a4d72a7da3894d5ce0acf5bc9846ef88858e8f35e4dc73bd084f64814',100.0,1.7790293700653851e+09,1,'2024-11-27T08:21:51Z',NULL,NULL,NULL,'["Public Cloud Providers", "AWS", "Security & WAF"]','["[DE FACTO STANDARD]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2024-11-27T08:21:51Z", "gh_stars": 56}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/hardeneks','==aws-samples/hardeneks==','','2023',3,'A command-line verification tool that systematically audits Amazon EKS clusters against established AWS operational and security best practices. Evaluates network security, IAM posture, pod disruption budgets, and admission control policies to generate a structured hardening roadmap.','Python','CLI Tool','Advanced',0,'online','manual','edc2459616595e86d5e6383d5f5a3787764cae0b6835ee512405c7a17634c4bd',100.0,1.77902934124474406e+09,1,'2026-05-26T00:27:14Z',NULL,NULL,NULL,'["Cloud Providers", "AWS EKS", "Security & Hardening", "Compliance Auditing"]','["[COMMUNITY-TOOL]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2026-05-26T00:27:14Z", "gh_stars": 958}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/kubernetes-log4j-cve-2021-44228-node-agent','github.com/aws-samples: Apache Log4j2 CVE-2021-44228 node agent','','2021',2,'An archival security daemonset developed by AWS to locate containers running vulnerable Log4j libraries in Kubernetes. While no longer actively maintained, the scanning patterns and daemon architecture provide a solid reference for building automated host security scanning tools.','Go','Tool','Advanced',1,'online','manual','22448286ac0f3eab391c744233094b8ae540668353a4f8af768a2d36c126e674',100.0,1.77903377345110297e+09,1,'2022-08-26T14:56:01Z',NULL,NULL,NULL,'["Security", "Vulnerabilities", "Log4j Detection Agent"]','["[COMMUNITY-TOOL]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2022-08-26T14:56:01Z", "gh_stars": 2}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/resource-tagging-automation','github.com/aws-samples: Guide to Resource Tagging Automation','','2023',5,'Automated cloud governance solution leveraging AWS Lambda to automatically append standardized metadata tags onto AWS resources. Simplifies enterprise cost allocation and compliance enforcement operations.','Python','Repository','Intermediate',0,'online','manual','353e106235cad0b0eb9a3d84375d179ed0575446d2bb8833813930176db4411c',100.0,1.77902964124965906e+09,1,'2026-05-19T03:16:19Z',NULL,NULL,NULL,'["Public Cloud Providers", "AWS", "Resource Tagging"]','["[DE FACTO STANDARD]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2026-05-19T03:16:19Z", "gh_stars": 55}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/serverless-java-frameworks-samples','aws-samples/serverless-java-frameworks-samples: Lambda demo with common'' Java application frameworks 🌟','','2024',5,'Provides deep-dive comparison and code samples for building serverless workloads with Java on AWS Lambda. Evaluates cold-start strategies, optimization techniques, and framework comparisons like Spring Cloud Function, Micronaut, and Quarkus.','Java','Repository','Advanced',0,'online','manual','867180f2e91e7ff5a77f1975a4475a158eee7e6d192f07ef1fec431162932a46',100.0,1.77903306869805097e+09,1,'2024-01-10T14:16:26Z',NULL,NULL,NULL,'["Serverless Architectures", "AWS Lambda", "Java Performance"]','["[DE FACTO STANDARD]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2024-01-10T14:16:26Z", "gh_stars": 159}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/service-catalog-engine-for-terraform-os','==github.com/aws-samples: AWS Service Catalog Engine for Terraform==','','2023',2,'AWS-maintained blueprint demonstrating integration between AWS Service Catalog and Terraform. Empowers centralized IT admins to declare pre-approved, compliant infrastructure configurations for user self-service provisioning.','HCL','Repository','Advanced',0,'online','manual','141ecec3f0fa591c8ce5cf754d915850551d85b3d2218af4ef16c82b25ff0ead',100.0,1.77903078011058592e+09,1,'2024-05-22T12:58:49Z',NULL,NULL,NULL,'["Cloud Infrastructure", "AWS", "Networking & Core"]','["[COMMUNITY-TOOL]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-05-22T12:58:49Z", "gh_stars": 147}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/service-control-policy-examples','github.com/aws-samples: Service Control Policy examples','','2023',2,'A curated directory of structural AWS Service Control Policies (SCPs) utilized within AWS Organizations. It provides architectural JSON blocks to establish hard regional restrictions, enforce multi-factor authentication, restrict dangerous actions, and protect critical cloud monitoring tools.','JSON','Code Repository','Intermediate',0,'online','manual','ef3f0e023a64271f4be0f8d1359af9025a8e6cb503d00a91f8a3642438dab932',100.0,1.77903255256743788e+09,1,'2026-06-09T14:29:13Z',NULL,NULL,NULL,'["Cloud Architecture", "AWS", "Security and Compliance"]','["[COMMUNITY-TOOL]"]','["docs/aws-security.md"]','["aws-security.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2026-06-09T14:29:13Z", "gh_stars": 305}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/visualize-iam-access-analyzer-policy-validation-findings','github.com/aws-samples: Visualize AWS IAM Access Analyzer Policy Validation'' Findings','','2021',5,'A reference implementation that automates the visualization of AWS IAM Access Analyzer validation findings. By routing findings through Amazon EventBridge, AWS Lambda, and QuickSight, it provides operations teams with a visual dashboard of policy syntax issues and non-compliant definitions across multiple accounts.','Python','Repository','Intermediate',0,'online','manual','f3fa9a4196c5cb6dc490af4524fd9c48039fe8b55ccc0ca58794beb6cb5b1a40',100.0,1.7790302359673841e+09,1,'2023-02-22T16:02:21Z',NULL,NULL,NULL,'["Security & Identity", "AWS IAM", "Compliance & Monitoring"]','["[DE FACTO STANDARD]"]','["docs/aws-security.md"]','["aws-security.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2023-02-22T16:02:21Z", "gh_stars": 21}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/well-architected-iac-analyzer','AWS Well-Architected IaC Analyzer','','2026',2,'An AWS-backed auditing analyzer designed to inspect CloudFormation and Terraform designs against the AWS Well-Architected standard. Evaluates infrastructure-as-code deployments for security vulnerabilities and reliability issues before runtime provisioning.','Python','CLI Tool','Advanced',0,'online','manual','0d76dd9d8bc2aa894af79faf1731a0b1820561aa2858dee446b5d6a9fd641056',100.0,1779030482.75807,1,'2026-06-11T07:08:01Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Infrastructure as Code", "Compliance Auditing"]','["[COMMUNITY-TOOL]"]','["docs/ai.md", "docs/aws-architecture.md", "docs/iac.md"]','["ai.md", "aws-architecture.md", "iac.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2026-06-11T07:08:01Z", "gh_stars": 483}');
INSERT INTO "resources" VALUES('https://github.com/aws-solutions/aws-waf-security-automations',NULL,NULL,NULL,NULL,'A curated technical resource and architectural guide covering github.com in the Kubernetes Tools ecosystem.','English','Reference','Intermediate',0,'online','manual',NULL,NULL,1.7817358786484909e+09,0,'2026-05-19T17:17:13Z',NULL,NULL,NULL,'["Architectural Foundations", "Kubernetes Tools", "General Reference"]','["[COMMUNITY-TOOL]"]','[]','["aws-security.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-05-19T17:17:13Z", "gh_stars": 922}');
INSERT INTO "resources" VALUES('https://github.com/aws/amazon-ec2-metadata-mock','Amazon EC2 Metadata Mock','','2025',2,'Curator Insight presents this tool as a local mock for the Amazon EC2 Instance Metadata Service (IMDSv1/v2). Live Grounding confirms its high utility in local testing pipelines and CI/CD environments, allowing developers to simulate instance roles, security credentials, and spot interruption notices without provisioning real cloud resources.','Go','Tool','Intermediate',0,'online','manual','7170fe54585c143eba0319e7e780f6b9f481c4686eca4726f5bc412f81116a29',100.0,1779030719.03204,1,'2026-05-26T18:01:53Z',NULL,NULL,NULL,'["Testing & Chaos", "Local Emulation", "EC2 Metadata"]','["[COMMUNITY-TOOL]"]','["docs/aws-miscellaneous.md"]','["aws-miscellaneous.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-05-26T18:01:53Z", "gh_stars": 291}');
INSERT INTO "resources" VALUES('https://github.com/aws/amazon-eks-pod-identity-webhook','azon EKS Pod Identity Webhook','','2026',5,'A mutating admission webhook that injects AWS IAM environmental variables and credentials into Kubernetes Pods. This enables IAM Roles for Service Accounts (IRSA), allowing pods to securely access external AWS API endpoints without relying on shared node-level roles.','Go','Code Repository','Advanced',0,'online','manual','900ea2479ec0af33543f0ce1d517d94c64ccea8bc87133846a70a8fe7bf276b2',100.0,1.77903432350648188e+09,1,'2026-06-08T23:20:14Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Security & Compliance", "IAM"]','["[DE FACTO STANDARD]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-08T23:20:14Z", "gh_stars": 683}');
INSERT INTO "resources" VALUES('https://github.com/aws/aws-node-termination-handler','==aws/aws-node-termination-handler== 🌟','','2026',5,'High-efficiency agent ensuring EKS pod rescheduling during abrupt EC2 instance maintenance events, Spot interruptions, or ASG rebalance recommendations. Gracefully drains affected nodes, maintaining overall cluster operational reliability.','Go','Code Repository','Advanced',0,'online','manual','01103f43679fee0307728fb10caa4ad677035880b1cbddf33ba5e7986e7ff699',100.0,1.77903257920542693e+09,1,'2026-06-10T18:00:49Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Amazon EKS", "Spot Instances"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md", "docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md", "kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-10T18:00:49Z", "gh_stars": 1757}');
INSERT INTO "resources" VALUES('https://github.com/aws/containers-roadmap','aws/containers-roadmap: AWS Containers Roadmap','','2026',5,'The open-source public roadmap for AWS container services (ECS, EKS, ECR). It bridges developer requirements with core AWS engineering teams, offering a transparent ledger of feature designs, active developments, and historical releases.','Markdown','Repository','Intermediate',0,'online','manual','a651d1bd73fd7a541f169ac4c3c373abe2c1fcb7b07c5ef981f09037ca9c4b64',100.0,1.77903145601978588e+09,1,'2025-03-25T18:13:16Z',NULL,NULL,NULL,'["Cloud Computing", "AWS", "Containers"]','["[DE FACTO STANDARD]"]','["docs/aws.md"]','["aws.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2025-03-25T18:13:16Z", "gh_stars": 5350}');
INSERT INTO "resources" VALUES('https://github.com/aws/eks-anywhere','EKS Anywhere: github.com/aws/eks-anywhere','','2023',4,'Official hybrid-cloud open-source distribution bringing EKS lifecycle tooling, operational practices, and configurations directly into bare-metal, vSphere, or Nutanix environments. Maintains uniform operational patterns across hybrid infrastructures.','Go','Deployment Tool','Advanced',0,'online','manual','0e4a9995f346ee09cf6603d3aa9b5c28db4498c13f6478636e9bc47573ec4444',100.0,1779030558.991,1,'2026-06-12T21:57:52Z',NULL,NULL,NULL,'["Cloud Providers", "AWS EKS", "Hybrid Cloud", "On-Premises EKS"]','["[ENTERPRISE-STABLE]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T21:57:52Z", "gh_stars": 2096}');
INSERT INTO "resources" VALUES('https://github.com/aws/eks-charts','==github.com/aws/eks-charts== 🌟','','2026',5,'The official Helm chart repository maintained by Amazon Web Services to bootstrap essential cluster add-ons. It hosts deployment packages for core utilities like App Mesh Controller, AWS Load Balancer Controller, Node Termination Handler, and the VPC CNI plugin.','Smarty','Code Repository','Intermediate',0,'online','manual','3512a561b798a96282a8e9f78d9e69f8109d1b85d8dac2f5d0182c49b4622302',100.0,1.77903033582144498e+09,1,'2026-06-09T17:42:16Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Amazon EKS", "Helm Repositories"]','["[DE FACTO STANDARD]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-09T17:42:16Z", "gh_stars": 1298}');
INSERT INTO "resources" VALUES('https://github.com/aws/eks-distro','==aws/eks-distro==','','2023',3,'An open-source release containing the exact upstream Kubernetes components, security backports, and upstream patches used by Amazon EKS. Empowers platform developers to run highly synchronized non-AWS clusters.','Go','Software Distribution','Advanced',0,'online','manual','1d4ed3479bda4d77f443bde81755492b1a8fef12a2b80ae8efceaa16c44195a0',100.0,1.77903142616197204e+09,1,'2026-06-12T15:28:20Z',NULL,NULL,NULL,'["Cloud Providers", "AWS EKS", "Kubernetes Distributions", "Base Build"]','["[COMMUNITY-TOOL]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T15:28:20Z", "gh_stars": 1458}');
INSERT INTO "resources" VALUES('https://github.com/aws/karpenter-provider-aws','awslabs/karpenter','','2021',5,'Karpenter is an open-source, high-performance node provisioning operator built for Kubernetes. It bypasses traditional ASG-based scaling by launching right-sized EC2 instances directly in response to unschedulable pods, significantly reducing scheduling latency and resource waste.','Go','Operator','High',1,'online','manual','5efc45c20734350a0c65c8fc00f26170d524537559c5104c344a46a18a3b0ff5',100.0,1.77913049503374409e+09,1,'2026-06-12T17:11:07Z',NULL,NULL,NULL,'["Infrastructure", "Autoscaling", "Node Provisioning"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T17:11:07Z", "gh_stars": 7654}');
INSERT INTO "resources" VALUES('https://github.com/aws/secrets-store-csi-driver-provider-aws','aws/secrets-store-csi-driver-provider-aws: AWS Secrets Manager and Config'' Provider for Secret Store CSI Driver','','2026',4,'The official AWS Secrets Manager provider for the Secrets Store CSI Driver. Mounts secrets directly from AWS Secrets Manager into pods as transient virtual filesystems, keeping secrets out of both the etcd database and persistent storage nodes.','Go','Tool','Advanced',1,'online','manual','ed9caa75dfefdcd07ddcc0b0cc923b7ae888457ee6adf38b529837c4133f0249',100.0,1.77903394301673793e+09,1,'2026-06-11T16:13:51Z',NULL,NULL,NULL,'["Security", "Secrets Management", "CSI Driver Providers"]','["[ENTERPRISE-STABLE]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T16:13:51Z", "gh_stars": 587}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/aws-auto-inventory','github.com/aws-samples/aws-auto-inventory: AWS Automated Inventory 🌟','','2024',5,'An automated system designed to discover, track, and catalog AWS infrastructure assets across multiple regions and accounts. Leverages Serverless functions and AWS Config to maintain real-time compliance dashboards.','Python','Repository','Intermediate',0,'online','manual','d313f0e1c1d23aa70404f9af62b2948d85be04af17d3609ce1a0253fc928a08c',100.0,1779033655.90476,1,'2026-06-11T19:34:23Z',NULL,NULL,NULL,'["Public Cloud Providers", "AWS", "Asset Management"]','["[DE FACTO STANDARD]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T19:34:23Z", "gh_stars": 254, "gh_open_issues_30d": 10, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:25:55.240073+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/aws-cdk-for-k3scluster','github.com/aws-samples/cdk-k3s-cluster 🌟','','2023',2,'An AWS Cloud Development Kit (CDK) resource package that constructs complete K3s virtual machine clusters on EC2, offering a highly economical alternative to managed AWS EKS services.','TypeScript','IaC','Intermediate',0,'online','manual','c2b3307d5505a3dde5e67e92035a8d1a9872f9d58d9450854c4259e2e2a9a1cd',100.0,1.77903279044597697e+09,1,'2022-10-27T13:35:31Z',NULL,NULL,NULL,'["Edge & IoT", "Infrastructure as Code", "AWS CDK"]','["[COMMUNITY-TOOL]"]','["docs/rancher.md"]','["rancher.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2022-10-27T13:35:31Z", "gh_stars": 61, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:25:56.017599+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/aws-cdk-stack-builder-tool','==github.com/aws-samples/aws-cdk-stack-builder-tool==','','2024',5,'An AWS Samples tool configured to dynamically build and modularize AWS CDK stacks based on high-level configuration templates. It streamlines boilerplate IAC setup, allowing platform engineering teams to maintain clean, scalable multi-environment stacks. Ideal for bootstrapping large cloud applications adhering to AWS Well-Architected frameworks.','TypeScript','Repository','Intermediate',0,'online','manual','93a3ebf7ea5faff6c84b491c2841b309a61ceb63f65f710297d3782e44d4c829',100.0,1.77903348717263698e+09,1,'2024-08-01T15:35:30Z',NULL,NULL,NULL,'["Cloud Platform", "AWS Infrastructure", "Infrastructure as Code"]','["[DE FACTO STANDARD]"]','["docs/aws-tools-scripts.md"]','["aws-tools-scripts.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2024-08-01T15:35:30Z", "gh_stars": 202, "gh_open_issues_30d": 9, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:25:56.791064+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/aws-customer-playbook-framework','github.com/aws-samples/aws-customer-playbook-framework 🌟','','2025',5,'A comprehensive operational framework that helps organizations define, structure, and automate IT playbooks and runbooks on AWS. Enhances incident response protocols and disaster recovery simulations.','TypeScript','Repository','Advanced',0,'online','manual','82978fb0b4badce58791e9b1211ffc292cb1b18641bd837172c86e076e686297',100.0,1.77903458264623308e+09,1,'2026-06-13T23:29:32Z',NULL,NULL,NULL,'["Public Cloud Providers", "AWS", "Operational Excellence"]','["[DE FACTO STANDARD]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-13T23:29:32Z", "gh_stars": 661, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:25:57.570972+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/aws-eks-accelerator-for-terraform','github.com/aws-samples/aws-eks-accelerator-for-terraform: AWS EKS Accelerator'' for Terraform 🌟','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','b10114e005af34dd0a1b090b242ad5d0300ce15888760f434b4a9c9f669918da',100.0,1.77903102628632593e+09,0,'2026-05-17T17:17:06.286326+02:00',NULL,NULL,NULL,'[]','[]','["docs/terraform.md"]','[]','{}','{"duplicate_of": "https://github.com/aws-ia/terraform-aws-eks-blueprints", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:25:58.215806+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/aws-network-hub-for-terraform','==aws-samples/aws-network-hub-for-terraform: Network Hub Account with Terraform==','','2024',5,'Structured Terraform blueprints for provisioning centralized Transit Gateway or Cloud WAN hubs. Implements hub-and-spoke networking topology across multi-account enterprise structures safely.','HCL','Repository','Advanced',0,'online','manual','f90f133dc5fdb9937ae0040c9da9cfe80b3a117b17c361d19a75f217f09d5e2e',100.0,1.77903303084307193e+09,1,'2024-06-11T14:55:42Z',NULL,NULL,NULL,'["Infrastructure as Code", "Terraform", "AWS Networking"]','["[DE FACTO STANDARD]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2024-06-11T14:55:42Z", "gh_stars": 103, "gh_open_issues_30d": 7, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:25:59.003105+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/aws-secrets-manager-hybrid-secret-replication-from-hashicorp-vault','github.com/aws-samples: How to set up continuous replication from your third-party'' secrets manager to AWS Secrets Manager','','2022',1,'An AWS-samples repository containing code to continuously replicate secret assets between external managers (such as HashiCorp Vault) and AWS Secrets Manager. Features serverless execution scripts to maintain secrets synchronization across hybrid-cloud infrastructures.','Python/Terraform','Code Repository','Advanced',1,'online','manual','e6966ffed386f7a22e26fdd7e5a35687d807fc1c6dda1c86f60058dd915c314a',100.0,1.779031064966434e+09,1,'2024-06-18T14:19:35Z',NULL,NULL,NULL,'["Cloud Architecture", "AWS", "Secrets Management"]','["[COMMUNITY-TOOL]"]','["docs/aws-security.md"]','["aws-security.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2024-06-18T14:19:35Z", "gh_stars": 16, "gh_open_issues_30d": 2, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:25:59.761705+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/aws-training-demo','github.com/aws-samples/aws-training-demo','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','e5f76d0406a15b046932dbd2d9018593d8479bc2555802fc14e9153e30744ddf',100.0,1.77903061147889304e+09,0,'2026-05-17T17:10:11.478893+02:00',NULL,NULL,NULL,'[]','[]','["docs/demos.md"]','[]','{}','{"duplicate_of": "https://github.com/amazon-archives/aws-training-demo", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:26:00.409362+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/aws-waf-ops-dashboards','github.com/aws-samples/aws-waf-ops-dashboards','','2023',5,'Contains CloudFormation templates and Athena query scripts to establish centralized dashboards for AWS Web Application Firewall (WAF) logs. Empowers security operations to detect anomalous traffic patterns.','Python','Repository','Intermediate',0,'online','manual','dcaf014a4d72a7da3894d5ce0acf5bc9846ef88858e8f35e4dc73bd084f64814',100.0,1.7790293700653851e+09,1,'2024-11-27T08:21:51Z',NULL,NULL,NULL,'["Public Cloud Providers", "AWS", "Security & WAF"]','["[DE FACTO STANDARD]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2024-11-27T08:21:51Z", "gh_stars": 56, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:26:01.166772+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/hardeneks','==aws-samples/hardeneks==','','2023',3,'A command-line verification tool that systematically audits Amazon EKS clusters against established AWS operational and security best practices. Evaluates network security, IAM posture, pod disruption budgets, and admission control policies to generate a structured hardening roadmap.','Python','CLI Tool','Advanced',0,'online','manual','edc2459616595e86d5e6383d5f5a3787764cae0b6835ee512405c7a17634c4bd',100.0,1.77902934124474406e+09,1,'2026-05-26T00:27:14Z',NULL,NULL,NULL,'["Cloud Providers", "AWS EKS", "Security & Hardening", "Compliance Auditing"]','["[COMMUNITY-TOOL]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2026-05-26T00:27:14Z", "gh_stars": 958, "gh_open_issues_30d": 6, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:01.962742+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/kubernetes-log4j-cve-2021-44228-node-agent','github.com/aws-samples: Apache Log4j2 CVE-2021-44228 node agent','','2021',2,'An archival security daemonset developed by AWS to locate containers running vulnerable Log4j libraries in Kubernetes. While no longer actively maintained, the scanning patterns and daemon architecture provide a solid reference for building automated host security scanning tools.','Go','Tool','Advanced',1,'online','manual','22448286ac0f3eab391c744233094b8ae540668353a4f8af768a2d36c126e674',100.0,1.77903377345110297e+09,1,'2022-08-26T14:56:01Z',NULL,NULL,NULL,'["Security", "Vulnerabilities", "Log4j Detection Agent"]','["[COMMUNITY-TOOL]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2022-08-26T14:56:01Z", "gh_stars": 2, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:26:02.817726+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/resource-tagging-automation','github.com/aws-samples: Guide to Resource Tagging Automation','','2023',5,'Automated cloud governance solution leveraging AWS Lambda to automatically append standardized metadata tags onto AWS resources. Simplifies enterprise cost allocation and compliance enforcement operations.','Python','Repository','Intermediate',0,'online','manual','353e106235cad0b0eb9a3d84375d179ed0575446d2bb8833813930176db4411c',100.0,1.77902964124965906e+09,1,'2026-05-19T03:16:19Z',NULL,NULL,NULL,'["Public Cloud Providers", "AWS", "Resource Tagging"]','["[DE FACTO STANDARD]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2026-05-19T03:16:19Z", "gh_stars": 55, "gh_open_issues_30d": 2, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:03.624674+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/serverless-java-frameworks-samples','aws-samples/serverless-java-frameworks-samples: Lambda demo with common'' Java application frameworks 🌟','','2024',5,'Provides deep-dive comparison and code samples for building serverless workloads with Java on AWS Lambda. Evaluates cold-start strategies, optimization techniques, and framework comparisons like Spring Cloud Function, Micronaut, and Quarkus.','Java','Repository','Advanced',0,'online','manual','867180f2e91e7ff5a77f1975a4475a158eee7e6d192f07ef1fec431162932a46',100.0,1.77903306869805097e+09,1,'2024-01-10T14:16:26Z',NULL,NULL,NULL,'["Serverless Architectures", "AWS Lambda", "Java Performance"]','["[DE FACTO STANDARD]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2024-01-10T14:16:26Z", "gh_stars": 159, "gh_open_issues_30d": 6, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:04.386876+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/service-catalog-engine-for-terraform-os','==github.com/aws-samples: AWS Service Catalog Engine for Terraform==','','2023',2,'AWS-maintained blueprint demonstrating integration between AWS Service Catalog and Terraform. Empowers centralized IT admins to declare pre-approved, compliant infrastructure configurations for user self-service provisioning.','HCL','Repository','Advanced',0,'online','manual','141ecec3f0fa591c8ce5cf754d915850551d85b3d2218af4ef16c82b25ff0ead',100.0,1.77903078011058592e+09,1,'2024-05-22T12:58:49Z',NULL,NULL,NULL,'["Cloud Infrastructure", "AWS", "Networking & Core"]','["[COMMUNITY-TOOL]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-05-22T12:58:49Z", "gh_stars": 147, "gh_open_issues_30d": 31, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:05.178301+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/service-control-policy-examples','github.com/aws-samples: Service Control Policy examples','','2023',2,'A curated directory of structural AWS Service Control Policies (SCPs) utilized within AWS Organizations. It provides architectural JSON blocks to establish hard regional restrictions, enforce multi-factor authentication, restrict dangerous actions, and protect critical cloud monitoring tools.','JSON','Code Repository','Intermediate',0,'online','manual','ef3f0e023a64271f4be0f8d1359af9025a8e6cb503d00a91f8a3642438dab932',100.0,1.77903255256743788e+09,1,'2026-06-09T14:29:13Z',NULL,NULL,NULL,'["Cloud Architecture", "AWS", "Security and Compliance"]','["[COMMUNITY-TOOL]"]','["docs/aws-security.md"]','["aws-security.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2026-06-09T14:29:13Z", "gh_stars": 305, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:26:05.955985+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/visualize-iam-access-analyzer-policy-validation-findings','github.com/aws-samples: Visualize AWS IAM Access Analyzer Policy Validation'' Findings','','2021',5,'A reference implementation that automates the visualization of AWS IAM Access Analyzer validation findings. By routing findings through Amazon EventBridge, AWS Lambda, and QuickSight, it provides operations teams with a visual dashboard of policy syntax issues and non-compliant definitions across multiple accounts.','Python','Repository','Intermediate',0,'online','manual','f3fa9a4196c5cb6dc490af4524fd9c48039fe8b55ccc0ca58794beb6cb5b1a40',100.0,1.7790302359673841e+09,1,'2023-02-22T16:02:21Z',NULL,NULL,NULL,'["Security & Identity", "AWS IAM", "Compliance & Monitoring"]','["[DE FACTO STANDARD]"]','["docs/aws-security.md"]','["aws-security.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2023-02-22T16:02:21Z", "gh_stars": 21, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:26:06.736784+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-samples/well-architected-iac-analyzer','AWS Well-Architected IaC Analyzer','','2026',2,'An AWS-backed auditing analyzer designed to inspect CloudFormation and Terraform designs against the AWS Well-Architected standard. Evaluates infrastructure-as-code deployments for security vulnerabilities and reliability issues before runtime provisioning.','Python','CLI Tool','Advanced',0,'online','manual','0d76dd9d8bc2aa894af79faf1731a0b1820561aa2858dee446b5d6a9fd641056',100.0,1779030482.75807,1,'2026-06-11T07:08:01Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Infrastructure as Code", "Compliance Auditing"]','["[COMMUNITY-TOOL]"]','["docs/ai.md", "docs/aws-architecture.md", "docs/iac.md"]','["ai.md", "aws-architecture.md", "iac.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2026-06-11T07:08:01Z", "gh_stars": 483, "gh_open_issues_30d": 8, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:07.534320+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws-solutions/aws-waf-security-automations',NULL,NULL,NULL,NULL,'A curated technical resource and architectural guide covering github.com in the Kubernetes Tools ecosystem.','English','Reference','Intermediate',0,'online','manual',NULL,NULL,1.7817358786484909e+09,0,'2026-05-19T17:17:13Z',NULL,NULL,NULL,'["Architectural Foundations", "Kubernetes Tools", "General Reference"]','["[COMMUNITY-TOOL]"]','[]','["aws-security.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-05-19T17:17:13Z", "gh_stars": 922, "gh_open_issues_30d": 12, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:08.250372+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws/amazon-ec2-metadata-mock','Amazon EC2 Metadata Mock','','2025',2,'Curator Insight presents this tool as a local mock for the Amazon EC2 Instance Metadata Service (IMDSv1/v2). Live Grounding confirms its high utility in local testing pipelines and CI/CD environments, allowing developers to simulate instance roles, security credentials, and spot interruption notices without provisioning real cloud resources.','Go','Tool','Intermediate',0,'online','manual','7170fe54585c143eba0319e7e780f6b9f481c4686eca4726f5bc412f81116a29',100.0,1779030719.03204,1,'2026-05-26T18:01:53Z',NULL,NULL,NULL,'["Testing & Chaos", "Local Emulation", "EC2 Metadata"]','["[COMMUNITY-TOOL]"]','["docs/aws-miscellaneous.md"]','["aws-miscellaneous.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-05-26T18:01:53Z", "gh_stars": 291, "gh_open_issues_30d": 4, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:09.022561+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws/amazon-eks-pod-identity-webhook','azon EKS Pod Identity Webhook','','2026',5,'A mutating admission webhook that injects AWS IAM environmental variables and credentials into Kubernetes Pods. This enables IAM Roles for Service Accounts (IRSA), allowing pods to securely access external AWS API endpoints without relying on shared node-level roles.','Go','Code Repository','Advanced',0,'online','manual','900ea2479ec0af33543f0ce1d517d94c64ccea8bc87133846a70a8fe7bf276b2',100.0,1.77903432350648188e+09,1,'2026-06-08T23:20:14Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Security & Compliance", "IAM"]','["[DE FACTO STANDARD]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-08T23:20:14Z", "gh_stars": 683, "gh_open_issues_30d": 106, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:26:09.761487+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws/aws-node-termination-handler','==aws/aws-node-termination-handler== 🌟','','2026',5,'High-efficiency agent ensuring EKS pod rescheduling during abrupt EC2 instance maintenance events, Spot interruptions, or ASG rebalance recommendations. Gracefully drains affected nodes, maintaining overall cluster operational reliability.','Go','Code Repository','Advanced',0,'online','manual','01103f43679fee0307728fb10caa4ad677035880b1cbddf33ba5e7986e7ff699',100.0,1.77903257920542693e+09,1,'2026-06-10T18:00:49Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Amazon EKS", "Spot Instances"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md", "docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md", "kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-10T18:00:49Z", "gh_stars": 1757, "gh_open_issues_30d": 14, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:10.556194+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws/containers-roadmap','aws/containers-roadmap: AWS Containers Roadmap','','2026',5,'The open-source public roadmap for AWS container services (ECS, EKS, ECR). It bridges developer requirements with core AWS engineering teams, offering a transparent ledger of feature designs, active developments, and historical releases.','Markdown','Repository','Intermediate',0,'online','manual','a651d1bd73fd7a541f169ac4c3c373abe2c1fcb7b07c5ef981f09037ca9c4b64',100.0,1.77903145601978588e+09,1,'2025-03-25T18:13:16Z',NULL,NULL,NULL,'["Cloud Computing", "AWS", "Containers"]','["[DE FACTO STANDARD]"]','["docs/aws.md"]','["aws.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2025-03-25T18:13:16Z", "gh_stars": 5350, "gh_open_issues_30d": 1586, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:26:11.294396+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws/eks-anywhere','EKS Anywhere: github.com/aws/eks-anywhere','','2023',4,'Official hybrid-cloud open-source distribution bringing EKS lifecycle tooling, operational practices, and configurations directly into bare-metal, vSphere, or Nutanix environments. Maintains uniform operational patterns across hybrid infrastructures.','Go','Deployment Tool','Advanced',0,'online','manual','0e4a9995f346ee09cf6603d3aa9b5c28db4498c13f6478636e9bc47573ec4444',100.0,1779030558.991,1,'2026-06-12T21:57:52Z',NULL,NULL,NULL,'["Cloud Providers", "AWS EKS", "Hybrid Cloud", "On-Premises EKS"]','["[ENTERPRISE-STABLE]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T21:57:52Z", "gh_stars": 2096, "gh_open_issues_30d": 623, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:26:12.112550+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws/eks-charts','==github.com/aws/eks-charts== 🌟','','2026',5,'The official Helm chart repository maintained by Amazon Web Services to bootstrap essential cluster add-ons. It hosts deployment packages for core utilities like App Mesh Controller, AWS Load Balancer Controller, Node Termination Handler, and the VPC CNI plugin.','Smarty','Code Repository','Intermediate',0,'online','manual','3512a561b798a96282a8e9f78d9e69f8109d1b85d8dac2f5d0182c49b4622302',100.0,1.77903033582144498e+09,1,'2026-06-09T17:42:16Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Amazon EKS", "Helm Repositories"]','["[DE FACTO STANDARD]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-09T17:42:16Z", "gh_stars": 1298, "gh_open_issues_30d": 221, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:26:12.922153+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws/eks-distro','==aws/eks-distro==','','2023',3,'An open-source release containing the exact upstream Kubernetes components, security backports, and upstream patches used by Amazon EKS. Empowers platform developers to run highly synchronized non-AWS clusters.','Go','Software Distribution','Advanced',0,'online','manual','1d4ed3479bda4d77f443bde81755492b1a8fef12a2b80ae8efceaa16c44195a0',100.0,1.77903142616197204e+09,1,'2026-06-12T15:28:20Z',NULL,NULL,NULL,'["Cloud Providers", "AWS EKS", "Kubernetes Distributions", "Base Build"]','["[COMMUNITY-TOOL]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T15:28:20Z", "gh_stars": 1458, "gh_open_issues_30d": 46, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:13.679891+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws/karpenter-provider-aws','awslabs/karpenter','','2021',5,'Karpenter is an open-source, high-performance node provisioning operator built for Kubernetes. It bypasses traditional ASG-based scaling by launching right-sized EC2 instances directly in response to unschedulable pods, significantly reducing scheduling latency and resource waste.','Go','Operator','High',1,'online','manual','5efc45c20734350a0c65c8fc00f26170d524537559c5104c344a46a18a3b0ff5',100.0,1.77913049503374409e+09,1,'2026-06-12T17:11:07Z',NULL,NULL,NULL,'["Infrastructure", "Autoscaling", "Node Provisioning"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T17:11:07Z", "gh_stars": 7654, "gh_open_issues_30d": 496, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:26:14.385821+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aws/secrets-store-csi-driver-provider-aws','aws/secrets-store-csi-driver-provider-aws: AWS Secrets Manager and Config'' Provider for Secret Store CSI Driver','','2026',4,'The official AWS Secrets Manager provider for the Secrets Store CSI Driver. Mounts secrets directly from AWS Secrets Manager into pods as transient virtual filesystems, keeping secrets out of both the etcd database and persistent storage nodes.','Go','Tool','Advanced',1,'online','manual','ed9caa75dfefdcd07ddcc0b0cc923b7ae888457ee6adf38b529837c4133f0249',100.0,1.77903394301673793e+09,1,'2026-06-11T16:13:51Z',NULL,NULL,NULL,'["Security", "Secrets Management", "CSI Driver Providers"]','["[ENTERPRISE-STABLE]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T16:13:51Z", "gh_stars": 587, "gh_open_issues_30d": 44, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:15.168554+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs','AWS Labs GitHub','','2026',0,'The central AWS Labs GitHub organization housing hundreds of active experimental projects, tooling integrations, and reference CDK blueprints. Live Grounding highlights this hub as a critical launchpad for emerging patterns in infrastructure-as-code and cloud automation. It provides platform engineering teams with robust, peer-reviewed building blocks for accelerated architecture design.','N/A','Platform','Advanced',0,'online','manual','77eceb187995b0fae21705b9b2adf06e9327ec39af9c878323df2a9abf2fb65e',100.0,1.77902916922587704e+09,1,'2026-05-17T16:46:09.225877+02:00',NULL,NULL,NULL,'["Cloud Platform", "AWS Infrastructure", "Reference Architectures"]','["[EMERGING]"]','["docs/aws-architecture.md", "docs/aws-tools-scripts.md", "docs/aws.md"]','["aws-architecture.md", "aws-tools-scripts.md", "aws.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/amazon-ecr-credential-helper','awslabs/amazon-ecr-credential-helper: Amazon ECR Docker Credential Helper','','2025',4,'A Docker credential helper that handles seamless, transparent IAM-based authentication for Amazon ECR. By removing the need to run periodic ''aws ecr get-login-password'' cron jobs, it enhances runtime security by integrating directly with standard IAM Instance Profiles and local AWS config files.','Go','Tool','Intermediate',1,'online','manual','6485c879c08e0048456259670896b18bcea1520aad1490fd027b541df0bf53cf',100.0,1.77903413957494211e+09,1,'2026-06-09T16:44:24Z',NULL,NULL,NULL,'["Cloud Infrastructure", "AWS", "Security Practices"]','["[ENTERPRISE-STABLE]"]','["docs/aws-containers.md"]','["aws-containers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-09T16:44:24Z", "gh_stars": 2703}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/amazon-eks-ami/issues/183','ref1: docker build --network=host','','2018',4,'A long-standing GitHub issue discussing Docker build networking constraints, specifically regarding the utilization of host-networking. Valuable for troubleshooting build-time network discovery and enterprise proxy traversal.','English','Repository','Intermediate',0,'online','manual','3efb5a631c9ef42d3718b7947268b418aa37ae03667c290e8272049c88c56339',100.0,1.77903019728398704e+09,1,'2026-06-12T01:26:31Z',NULL,NULL,NULL,'["CI-CD", "Containerization", "Networking"]','["[ENTERPRISE-STABLE]"]','["docs/jenkins.md"]','["jenkins.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2026-06-12T01:26:31Z", "gh_stars": 2651}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/amazon-s3-tar-tool','github.com/awslabs/amazon-s3-tar-tool: Amazon S3 Tar Tool','','2025',5,'An AWS Labs utility designed to parallelize the creation of TAR archives directly from S3 bucket structures. It prevents the network egress bottle-necks associated with downloading S3 objects locally before compression. Extremely valuable for big data analytics architectures and data lifecycle archival procedures.','Java','Repository','Advanced',0,'online','manual','2a13e2400114619f000a6378403d1e6537ba17a05b54e1aba3d239eb2dbfa011',100.0,1.77903439227713608e+09,1,'2026-04-08T02:24:52Z',NULL,NULL,NULL,'["Cloud Platform", "AWS Infrastructure", "Storage Management"]','["[DE FACTO STANDARD]"]','["docs/aws-tools-scripts.md"]','["aws-tools-scripts.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-04-08T02:24:52Z", "gh_stars": 233}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/assisted-log-enabler-for-aws','github.com/awslabs/assisted-log-enabler-for-aws: Assisted Log Enabler -'' Find resources that are not logging, and turn them on','','2025',5,'An AWS Labs community-focused repository offering automation scripts to identify resource endpoints that lack active logging and programmatically enable auditing (e.g., S3 server access logging, VPC Flow Logs). It addresses serious audit compliance gaps across expansive, multi-account structures. Live Grounding maintains its high utility for enterprises validating governance against SOC2 and CIS benchmarks.','Python','Repository','Advanced',0,'online','manual','a639dceeef558c6cfb347e005da2e3088994cf965c57d0af619e56dd2d1e96b2',100.0,1.77903189867519497e+09,1,'2026-06-13T23:30:47Z',NULL,NULL,NULL,'["Cloud Platform", "AWS Infrastructure", "Logging and Auditing"]','["[DE FACTO STANDARD]"]','["docs/aws-tools-scripts.md"]','["aws-tools-scripts.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T23:30:47Z", "gh_stars": 274}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/aws-cloudsaga','==awslabs/aws-cloudsaga: AWS CloudSaga - Simulate security events in AWS==','','2025',5,'AWS CloudSaga is an open-source tool developed by AWS to simulate security events and malicious activity directly inside your AWS environment. It enables security operations teams to validate detection mechanisms, alert pipelines, and incident response procedures. Essential for continuous red-teaming exercises and maintaining robust cloud posture management.','Go','Repository','Advanced',0,'online','manual','72b2d374572c51c3b212c0901e24f9e113bba18f791604eb743c29512ba40d18',100.0,1779031564.70116,1,'2026-06-13T23:25:47Z',NULL,NULL,NULL,'["Cloud Platform", "AWS Infrastructure", "Security Simulation"]','["[DE FACTO STANDARD]"]','["docs/aws-tools-scripts.md"]','["aws-tools-scripts.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T23:25:47Z", "gh_stars": 477}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/aws-kubernetes-migration-factory','==github.com/awslabs: Kubernetes Migration Factory User Guide== 🌟','','2026',5,'The AWS Kubernetes Migration Factory provides an automated, programmatic framework for migrating legacy VM-based or on-premises workloads into Amazon EKS. Curator Insight notes its structured pipelines that reduce migration errors, while Live Grounding confirms its utility in enterprise-scale rehosting plans. Key features include source-to-target automation, pre-migration validation, and automated target cluster provisioning.','Python','Code Repository','Advanced',0,'online','manual','e26f3a98e5b89e36ff101cb719d6253d6ccd4549bbf8b9038afb2edcfddac61b',100.0,1.7790313524675951e+09,1,'2024-09-25T20:41:08Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Cloud Migration", "Automation"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-09-25T20:41:08Z", "gh_stars": 130}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/aws-waf-sample','AWS WAF sample rules','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','18765cc1d9a80d454aac4d31c5e3e3ac458ca6d5e0b2885f71a2544369fae56e',100.0,1.77903058378446793e+09,0,'2026-05-17T17:09:43.784468+02:00',NULL,NULL,NULL,'[]','[]','["docs/aws-security.md"]','[]','{}','{"duplicate_of": "https://github.com/amazon-archives/aws-waf-sample"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/cdk-eks-blueprints','==aws-quickstart/cdk-eks-blueprints: Amazon EKS Blueprints for CDK==','','2026',5,'An AWS Cloud Development Kit (CDK) based framework that simplifies bootstrapping and configuring production-ready EKS clusters. Synthesizing developer insight with live deployment footprints, it provides programmatic control over EKS configurations, core add-ons, and IAM integrations. It is ideal for teams seeking TypeScript/Python program-based IaC over static YAML or HCL configurations.','TypeScript','Code Repository','Advanced',0,'online','manual','6d1c7f8cb4f4504526a91b80b3d6831dfaa2d23609fdd7ba4d74fd6a4c79ac63',100.0,1.77913049500957608e+09,1,'2026-06-11T23:11:51Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Infrastructure as Code", "AWS CDK"]','["[DE FACTO STANDARD]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T23:11:51Z", "gh_stars": 510}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/cdk8s','github.com/awslabs/cdk8s','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','4e4e6aa8ff97716ee088cd364fca4f83a29ce3f6ce9958ffd8b73eae54db2a2b',100.0,1.77903098998279309e+09,0,'2026-05-17T17:16:29.982793+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes.md"]','[]','{}','{"duplicate_of": "https://github.com/cdk8s-team/cdk8s"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/cognito-at-edge','awslabs/cognito-at-edge','','2023',2,'An AWS Labs utility for parsing and verifying Amazon Cognito user authentication tokens directly inside CloudFront Lambda@Edge functions. This shifts JWT parsing to the network edge, avoiding cold starts on regional API servers.','TypeScript','Library','Intermediate',1,'online','manual','e404f89183c7624b41303bf7684985db4f495ce1cd01b7ad90a9c0fb6a4c06b0',100.0,1.77903005251467299e+09,1,'2026-05-29T16:43:34Z',NULL,NULL,NULL,'["Cloud Architecture", "AWS", "Identity and Access Management"]','["[COMMUNITY-TOOL]"]','["docs/aws-security.md"]','["aws-security.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-05-29T16:43:34Z", "gh_stars": 238}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/diagram-as-code','github.com/awslabs/diagram-as-code 🌟','','2022',4,'An AWS Labs community experiment designed to showcase the power of programmatically rendering complex systems architecture. Helps engineers integrate documentation updates directly inside release workflows.','Python','Library','Intermediate',0,'online','manual','b785f63e07b6aec35d948693162ca6d59795c1bfaa2c91d1abd5b15d121ac443',100.0,1.77903350848277401e+09,1,'2026-04-20T01:46:01Z',NULL,NULL,NULL,'["Architecture & Visualization", "Diagrams as Code", "Python"]','["[ENTERPRISE-STABLE]"]','["docs/cloud-arch-diagrams.md"]','["cloud-arch-diagrams.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-04-20T01:46:01Z", "gh_stars": 1519}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/eks-node-viewer','awslabs/eks-node-viewer','','2023',4,'A highly functional CLI diagnostic tool designed to visualize real-time cost, resource utilization, and scheduling efficiency across Amazon EKS node groups. Highly integrated with dynamic autoscaling engines like Karpenter to optimize infrastructure financial footprints.','Go','CLI Tool','Intermediate',0,'online','manual','0bde84201333b18e725405254ecaa05aba317bf3205f04b8dd87323ad99b9878',100.0,1779033343.14635,1,'2026-06-08T19:56:47Z',NULL,NULL,NULL,'["Cloud Providers", "AWS EKS", "Cost Optimization", "Node Scaling Metrics"]','["[ENTERPRISE-STABLE]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-08T19:56:47Z", "gh_stars": 1632}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/karpenter','awslabs/karpenter','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','d5d81bd6f2e1a86399f0b28a8b016245f35a425de82ac20bad1a52be5f295000',100.0,1.77903189688128399e+09,0,'2026-05-17T17:31:36.881284+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"duplicate_of": "https://github.com/aws/karpenter-provider-aws"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/specctl','github.com/awslabs/specctl','','2023',5,'A specialized security tool developed by AWS Labs to parse, extract, and map standard Kubernetes manifest objects or ECS task definitions directly into AWS infrastructure controls. Analyzes security and network isolation requirements.','Go','Tool','Advanced',0,'online','manual','1bc5beb53afb89e68bcccf04c3c60985b6d289e14aa4593a45cf691c1a42da52',100.0,1.77903430692835211e+09,1,'2023-11-10T17:14:34Z',NULL,NULL,NULL,'["Security & Governance", "Kubernetes Compliance", "Infrastructure Translation"]','["[DE FACTO STANDARD]"]','["docs/aws-serverless.md"]','["aws-serverless.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-11-10T17:14:34Z", "gh_stars": 258}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/sustainability-scanner','github.com/awslabs/sustainability-scanner: Sustainability Scanner (SusScanner)','','2023',2,'An AWS Labs security linter (SusScanner) designed to parse CloudFormation templates, highlighting optimization and resource usage anomalies. The tool aids in reducing carbon footprints and waste overhead by aligning resource choices with the AWS Sustainability Pillar.','Python','Tool','Intermediate',0,'online','manual','71279f7c9292f087f392647331e6d2c66016616c552f4d963dd01cdeab02ecec',100.0,1.77903210876423692e+09,1,'2024-08-29T08:48:01Z',NULL,NULL,NULL,'["Cloud Architecture", "AWS", "Sustainability"]','["[COMMUNITY-TOOL]"]','["docs/aws-security.md"]','["aws-security.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2024-08-29T08:48:01Z", "gh_stars": 124}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/terraform-iam-policy-validator','awslabs/terraform-iam-policy-validator','','2021',5,'A command-line tool designed to parse Terraform plans and validate IAM policies against AWS IAM Access Analyzer''s validation rules during CI/CD. This enables automated static security analysis of infrastructure-as-code, blocking insecure policy deployment before they reach live environments.','Python','Repository','Intermediate',0,'online','manual','354fc7cde8325e7bd07ccd57ffd8cad06c5c037c4d909569993d56f0f166b99b',100.0,1.7790304015205779e+09,1,'2025-06-09T22:47:03Z',NULL,NULL,NULL,'["Security & Identity", "AWS IAM", "Least Privilege Automation"]','["[DE FACTO STANDARD]"]','["docs/aws-security.md"]','["aws-security.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2025-06-09T22:47:03Z", "gh_stars": 347}');
INSERT INTO "resources" VALUES('https://github.com/aylei/kubectl-debug','kubectl-debug','','2020',5,'Originally a popular community-built plugin to launch debugging containers within target pods, `kubectl-debug` has largely been superseded by native Kubernetes Ephemeral Containers (`kubectl debug` command) in modern releases. This project remains a valuable reference for historical context and legacy cluster compatibility. For modern clusters, engineers are strongly advised to transition to built-in Kubernetes diagnostic commands.','English','Repository','Advanced',0,'online','manual','b2309f629a8415f2d35aa07424e4548a1f1d6c70147de61c3fb8af9aad70cfd9',100.0,1.77903443203995609e+09,1,'2023-10-19T02:52:57Z',NULL,NULL,NULL,'["Kubernetes", "Troubleshooting Tooling", "kubectl plugins"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/kubernetes-troubleshooting.md"]','["kubernetes-troubleshooting.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-10-19T02:52:57Z", "gh_stars": 2305}');
INSERT INTO "resources" VALUES('https://github.com/azohra/yaml.sh','azohra/yaml.sh','','2021',2,'An experimental, pure Bash-based YAML parser designed to extract configurations without external runtime dependencies like Python or Node.js. It is a lightweight helper for minimal edge installations, though mostly inactive in terms of recent development.','Bash','tool','intermediate',0,'online','manual','0cfc2dbf9260192158b5d7dc49e0d45b63299a02600ae86aaa8a155c50dd18fb',100.0,1.77903140192896795e+09,1,'2024-01-23T18:50:58Z',NULL,NULL,NULL,'["Configuration Management", "YAML Processing", "CLI Tools"]','["[EMERGING]"]','["docs/yaml.md"]','["data-and-advanced-analytics.md", "yaml.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2024-01-23T18:50:58Z", "gh_stars": 34, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/azsk/DevOpsKit','Secure DevOps Kit for Azure','','2024',3,'The Secure DevOps Kit for Azure (AzSK) provides scanning scripts, CI/CD extensions, and compliance templates for secure-by-default cloud engineering. Live Grounding: As of recent cycles, AzSK has transitioned to a legacy state with Microsoft recommending native Azure Policy and Microsoft Defender for Cloud. It remains a valuable historical reference for building automated security controls directly into enterprise deployment workflows.','PowerShell','Software Toolkit','Advanced',0,'online','manual','b9783691731becff9ab8cc1bcd7a74dc41860191a4800d478e3ab5b7f50a0d8d',100.0,1.77903375804945397e+09,1,'2024-05-07T12:50:16Z',NULL,NULL,NULL,'["DevSecOps & Platform Engineering", "Infrastructure Security", "AzSK Toolkit"]','["[LEGACY]"]','["docs/azure.md"]','["azure.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2024-05-07T12:50:16Z", "gh_stars": 222}');
INSERT INTO "resources" VALUES('https://github.com/azsk/DevOpsKit-docs','DevOpsKit-docs','','2024',3,'The official documentation repository supporting the Secure DevOps Kit for Azure (AzSK). It outlines operational processes for deploying automated security checks in Azure DevOps pipelines and resource deployment validation. While native Azure tools have superseded AzSK, the structured policies and patterns detailed here still inform modern DevSecOps security baselines.','Markdown','Documentation','Intermediate',0,'online','manual','9ea109c8e22550cb328511be5017491ab4175b9d6e2fd928482c5860a720e853',100.0,1.77903130282895803e+09,1,'2022-02-14T11:55:39Z',NULL,NULL,NULL,'["DevSecOps & Platform Engineering", "Infrastructure Security", "AzSK Documentation"]','["[COMMUNITY-TOOL]"]','["docs/azure.md"]','["azure.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2022-02-14T11:55:39Z", "gh_stars": 498}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/amazon-ecr-credential-helper','awslabs/amazon-ecr-credential-helper: Amazon ECR Docker Credential Helper','','2025',4,'A Docker credential helper that handles seamless, transparent IAM-based authentication for Amazon ECR. By removing the need to run periodic ''aws ecr get-login-password'' cron jobs, it enhances runtime security by integrating directly with standard IAM Instance Profiles and local AWS config files.','Go','Tool','Intermediate',1,'online','manual','6485c879c08e0048456259670896b18bcea1520aad1490fd027b541df0bf53cf',100.0,1.77903413957494211e+09,1,'2026-06-09T16:44:24Z',NULL,NULL,NULL,'["Cloud Infrastructure", "AWS", "Security Practices"]','["[ENTERPRISE-STABLE]"]','["docs/aws-containers.md"]','["aws-containers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-09T16:44:24Z", "gh_stars": 2703, "gh_open_issues_30d": 87, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:26:15.885604+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/amazon-eks-ami/issues/183','ref1: docker build --network=host','','2018',4,'A long-standing GitHub issue discussing Docker build networking constraints, specifically regarding the utilization of host-networking. Valuable for troubleshooting build-time network discovery and enterprise proxy traversal.','English','Repository','Intermediate',0,'online','manual','3efb5a631c9ef42d3718b7947268b418aa37ae03667c290e8272049c88c56339',100.0,1.77903019728398704e+09,1,'2026-06-12T01:26:31Z',NULL,NULL,NULL,'["CI-CD", "Containerization", "Networking"]','["[ENTERPRISE-STABLE]"]','["docs/jenkins.md"]','["jenkins.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2026-06-12T01:26:31Z", "gh_stars": 2651, "gh_open_issues_30d": 63, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:26:16.598170+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/amazon-s3-tar-tool','github.com/awslabs/amazon-s3-tar-tool: Amazon S3 Tar Tool','','2025',5,'An AWS Labs utility designed to parallelize the creation of TAR archives directly from S3 bucket structures. It prevents the network egress bottle-necks associated with downloading S3 objects locally before compression. Extremely valuable for big data analytics architectures and data lifecycle archival procedures.','Java','Repository','Advanced',0,'online','manual','2a13e2400114619f000a6378403d1e6537ba17a05b54e1aba3d239eb2dbfa011',100.0,1.77903439227713608e+09,1,'2026-04-08T02:24:52Z',NULL,NULL,NULL,'["Cloud Platform", "AWS Infrastructure", "Storage Management"]','["[DE FACTO STANDARD]"]','["docs/aws-tools-scripts.md"]','["aws-tools-scripts.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-04-08T02:24:52Z", "gh_stars": 233, "gh_open_issues_30d": 17, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:17.396180+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/assisted-log-enabler-for-aws','github.com/awslabs/assisted-log-enabler-for-aws: Assisted Log Enabler -'' Find resources that are not logging, and turn them on','','2025',5,'An AWS Labs community-focused repository offering automation scripts to identify resource endpoints that lack active logging and programmatically enable auditing (e.g., S3 server access logging, VPC Flow Logs). It addresses serious audit compliance gaps across expansive, multi-account structures. Live Grounding maintains its high utility for enterprises validating governance against SOC2 and CIS benchmarks.','Python','Repository','Advanced',0,'online','manual','a639dceeef558c6cfb347e005da2e3088994cf965c57d0af619e56dd2d1e96b2',100.0,1.77903189867519497e+09,1,'2026-06-13T23:30:47Z',NULL,NULL,NULL,'["Cloud Platform", "AWS Infrastructure", "Logging and Auditing"]','["[DE FACTO STANDARD]"]','["docs/aws-tools-scripts.md"]','["aws-tools-scripts.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T23:30:47Z", "gh_stars": 274, "gh_open_issues_30d": 12, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:18.172586+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/aws-cloudsaga','==awslabs/aws-cloudsaga: AWS CloudSaga - Simulate security events in AWS==','','2025',5,'AWS CloudSaga is an open-source tool developed by AWS to simulate security events and malicious activity directly inside your AWS environment. It enables security operations teams to validate detection mechanisms, alert pipelines, and incident response procedures. Essential for continuous red-teaming exercises and maintaining robust cloud posture management.','Go','Repository','Advanced',0,'online','manual','72b2d374572c51c3b212c0901e24f9e113bba18f791604eb743c29512ba40d18',100.0,1779031564.70116,1,'2026-06-13T23:25:47Z',NULL,NULL,NULL,'["Cloud Platform", "AWS Infrastructure", "Security Simulation"]','["[DE FACTO STANDARD]"]','["docs/aws-tools-scripts.md"]','["aws-tools-scripts.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T23:25:47Z", "gh_stars": 477, "gh_open_issues_30d": 3, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:18.952835+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/aws-kubernetes-migration-factory','==github.com/awslabs: Kubernetes Migration Factory User Guide== 🌟','','2026',5,'The AWS Kubernetes Migration Factory provides an automated, programmatic framework for migrating legacy VM-based or on-premises workloads into Amazon EKS. Curator Insight notes its structured pipelines that reduce migration errors, while Live Grounding confirms its utility in enterprise-scale rehosting plans. Key features include source-to-target automation, pre-migration validation, and automated target cluster provisioning.','Python','Code Repository','Advanced',0,'online','manual','e26f3a98e5b89e36ff101cb719d6253d6ccd4549bbf8b9038afb2edcfddac61b',100.0,1.7790313524675951e+09,1,'2024-09-25T20:41:08Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Cloud Migration", "Automation"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-09-25T20:41:08Z", "gh_stars": 130, "gh_open_issues_30d": 4, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:19.750218+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/aws-waf-sample','AWS WAF sample rules','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','18765cc1d9a80d454aac4d31c5e3e3ac458ca6d5e0b2885f71a2544369fae56e',100.0,1.77903058378446793e+09,0,'2026-05-17T17:09:43.784468+02:00',NULL,NULL,NULL,'[]','[]','["docs/aws-security.md"]','[]','{}','{"duplicate_of": "https://github.com/amazon-archives/aws-waf-sample", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:26:20.386144+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/cdk-eks-blueprints','==aws-quickstart/cdk-eks-blueprints: Amazon EKS Blueprints for CDK==','','2026',5,'An AWS Cloud Development Kit (CDK) based framework that simplifies bootstrapping and configuring production-ready EKS clusters. Synthesizing developer insight with live deployment footprints, it provides programmatic control over EKS configurations, core add-ons, and IAM integrations. It is ideal for teams seeking TypeScript/Python program-based IaC over static YAML or HCL configurations.','TypeScript','Code Repository','Advanced',0,'online','manual','6d1c7f8cb4f4504526a91b80b3d6831dfaa2d23609fdd7ba4d74fd6a4c79ac63',100.0,1.77913049500957608e+09,1,'2026-06-11T23:11:51Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Infrastructure as Code", "AWS CDK"]','["[DE FACTO STANDARD]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T23:11:51Z", "gh_stars": 510, "gh_open_issues_30d": 64, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:26:21.101111+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/cdk8s','github.com/awslabs/cdk8s','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','4e4e6aa8ff97716ee088cd364fca4f83a29ce3f6ce9958ffd8b73eae54db2a2b',100.0,1.77903098998279309e+09,0,'2026-05-17T17:16:29.982793+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes.md"]','[]','{}','{"duplicate_of": "https://github.com/cdk8s-team/cdk8s", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:26:21.748812+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/cognito-at-edge','awslabs/cognito-at-edge','','2023',2,'An AWS Labs utility for parsing and verifying Amazon Cognito user authentication tokens directly inside CloudFront Lambda@Edge functions. This shifts JWT parsing to the network edge, avoiding cold starts on regional API servers.','TypeScript','Library','Intermediate',1,'online','manual','e404f89183c7624b41303bf7684985db4f495ce1cd01b7ad90a9c0fb6a4c06b0',100.0,1.77903005251467299e+09,1,'2026-05-29T16:43:34Z',NULL,NULL,NULL,'["Cloud Architecture", "AWS", "Identity and Access Management"]','["[COMMUNITY-TOOL]"]','["docs/aws-security.md"]','["aws-security.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-05-29T16:43:34Z", "gh_stars": 238, "gh_open_issues_30d": 39, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:22.544035+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/diagram-as-code','github.com/awslabs/diagram-as-code 🌟','','2022',4,'An AWS Labs community experiment designed to showcase the power of programmatically rendering complex systems architecture. Helps engineers integrate documentation updates directly inside release workflows.','Python','Library','Intermediate',0,'online','manual','b785f63e07b6aec35d948693162ca6d59795c1bfaa2c91d1abd5b15d121ac443',100.0,1.77903350848277401e+09,1,'2026-04-20T01:46:01Z',NULL,NULL,NULL,'["Architecture & Visualization", "Diagrams as Code", "Python"]','["[ENTERPRISE-STABLE]"]','["docs/cloud-arch-diagrams.md"]','["cloud-arch-diagrams.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-04-20T01:46:01Z", "gh_stars": 1519, "gh_open_issues_30d": 33, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:23.342637+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/eks-node-viewer','awslabs/eks-node-viewer','','2023',4,'A highly functional CLI diagnostic tool designed to visualize real-time cost, resource utilization, and scheduling efficiency across Amazon EKS node groups. Highly integrated with dynamic autoscaling engines like Karpenter to optimize infrastructure financial footprints.','Go','CLI Tool','Intermediate',0,'online','manual','0bde84201333b18e725405254ecaa05aba317bf3205f04b8dd87323ad99b9878',100.0,1779033343.14635,1,'2026-06-08T19:56:47Z',NULL,NULL,NULL,'["Cloud Providers", "AWS EKS", "Cost Optimization", "Node Scaling Metrics"]','["[ENTERPRISE-STABLE]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-08T19:56:47Z", "gh_stars": 1632, "gh_open_issues_30d": 27, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:24.121841+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/karpenter','awslabs/karpenter','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','d5d81bd6f2e1a86399f0b28a8b016245f35a425de82ac20bad1a52be5f295000',100.0,1.77903189688128399e+09,0,'2026-05-17T17:31:36.881284+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"duplicate_of": "https://github.com/aws/karpenter-provider-aws", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:26:24.769796+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/specctl','github.com/awslabs/specctl','','2023',5,'A specialized security tool developed by AWS Labs to parse, extract, and map standard Kubernetes manifest objects or ECS task definitions directly into AWS infrastructure controls. Analyzes security and network isolation requirements.','Go','Tool','Advanced',0,'online','manual','1bc5beb53afb89e68bcccf04c3c60985b6d289e14aa4593a45cf691c1a42da52',100.0,1.77903430692835211e+09,1,'2023-11-10T17:14:34Z',NULL,NULL,NULL,'["Security & Governance", "Kubernetes Compliance", "Infrastructure Translation"]','["[DE FACTO STANDARD]"]','["docs/aws-serverless.md"]','["aws-serverless.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-11-10T17:14:34Z", "gh_stars": 258, "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:25.548917+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/sustainability-scanner','github.com/awslabs/sustainability-scanner: Sustainability Scanner (SusScanner)','','2023',2,'An AWS Labs security linter (SusScanner) designed to parse CloudFormation templates, highlighting optimization and resource usage anomalies. The tool aids in reducing carbon footprints and waste overhead by aligning resource choices with the AWS Sustainability Pillar.','Python','Tool','Intermediate',0,'online','manual','71279f7c9292f087f392647331e6d2c66016616c552f4d963dd01cdeab02ecec',100.0,1.77903210876423692e+09,1,'2024-08-29T08:48:01Z',NULL,NULL,NULL,'["Cloud Architecture", "AWS", "Sustainability"]','["[COMMUNITY-TOOL]"]','["docs/aws-security.md"]','["aws-security.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2024-08-29T08:48:01Z", "gh_stars": 124, "gh_open_issues_30d": 2, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:26.344772+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/awslabs/terraform-iam-policy-validator','awslabs/terraform-iam-policy-validator','','2021',5,'A command-line tool designed to parse Terraform plans and validate IAM policies against AWS IAM Access Analyzer''s validation rules during CI/CD. This enables automated static security analysis of infrastructure-as-code, blocking insecure policy deployment before they reach live environments.','Python','Repository','Intermediate',0,'online','manual','354fc7cde8325e7bd07ccd57ffd8cad06c5c037c4d909569993d56f0f166b99b',100.0,1.7790304015205779e+09,1,'2025-06-09T22:47:03Z',NULL,NULL,NULL,'["Security & Identity", "AWS IAM", "Least Privilege Automation"]','["[DE FACTO STANDARD]"]','["docs/aws-security.md"]','["aws-security.md"]','{}','{"gh_license": "MIT-0", "gh_pushed": "2025-06-09T22:47:03Z", "gh_stars": 347, "gh_open_issues_30d": 17, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:27.129331+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/aylei/kubectl-debug','kubectl-debug','','2020',5,'Originally a popular community-built plugin to launch debugging containers within target pods, `kubectl-debug` has largely been superseded by native Kubernetes Ephemeral Containers (`kubectl debug` command) in modern releases. This project remains a valuable reference for historical context and legacy cluster compatibility. For modern clusters, engineers are strongly advised to transition to built-in Kubernetes diagnostic commands.','English','Repository','Advanced',0,'online','manual','b2309f629a8415f2d35aa07424e4548a1f1d6c70147de61c3fb8af9aad70cfd9',100.0,1.77903443203995609e+09,1,'2023-10-19T02:52:57Z',NULL,NULL,NULL,'["Kubernetes", "Troubleshooting Tooling", "kubectl plugins"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/kubernetes-troubleshooting.md"]','["kubernetes-troubleshooting.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-10-19T02:52:57Z", "gh_stars": 2305, "gh_open_issues_30d": 62, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:26:27.899380+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/azohra/yaml.sh','azohra/yaml.sh','','2021',2,'An experimental, pure Bash-based YAML parser designed to extract configurations without external runtime dependencies like Python or Node.js. It is a lightweight helper for minimal edge installations, though mostly inactive in terms of recent development.','Bash','tool','intermediate',0,'online','manual','0cfc2dbf9260192158b5d7dc49e0d45b63299a02600ae86aaa8a155c50dd18fb',100.0,1.77903140192896795e+09,1,'2024-01-23T18:50:58Z',NULL,NULL,NULL,'["Configuration Management", "YAML Processing", "CLI Tools"]','["[EMERGING]"]','["docs/yaml.md"]','["data-and-advanced-analytics.md", "yaml.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2024-01-23T18:50:58Z", "gh_stars": 34, "is_special": true, "gh_open_issues_30d": 7, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:28.607477+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/azsk/DevOpsKit','Secure DevOps Kit for Azure','','2024',3,'The Secure DevOps Kit for Azure (AzSK) provides scanning scripts, CI/CD extensions, and compliance templates for secure-by-default cloud engineering. Live Grounding: As of recent cycles, AzSK has transitioned to a legacy state with Microsoft recommending native Azure Policy and Microsoft Defender for Cloud. It remains a valuable historical reference for building automated security controls directly into enterprise deployment workflows.','PowerShell','Software Toolkit','Advanced',0,'online','manual','b9783691731becff9ab8cc1bcd7a74dc41860191a4800d478e3ab5b7f50a0d8d',100.0,1.77903375804945397e+09,1,'2024-05-07T12:50:16Z',NULL,NULL,NULL,'["DevSecOps & Platform Engineering", "Infrastructure Security", "AzSK Toolkit"]','["[LEGACY]"]','["docs/azure.md"]','["azure.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2024-05-07T12:50:16Z", "gh_stars": 222, "gh_open_issues_30d": 43, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:29.316577+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/azsk/DevOpsKit-docs','DevOpsKit-docs','','2024',3,'The official documentation repository supporting the Secure DevOps Kit for Azure (AzSK). It outlines operational processes for deploying automated security checks in Azure DevOps pipelines and resource deployment validation. While native Azure tools have superseded AzSK, the structured policies and patterns detailed here still inform modern DevSecOps security baselines.','Markdown','Documentation','Intermediate',0,'online','manual','9ea109c8e22550cb328511be5017491ab4175b9d6e2fd928482c5860a720e853',100.0,1.77903130282895803e+09,1,'2022-02-14T11:55:39Z',NULL,NULL,NULL,'["DevSecOps & Platform Engineering", "Infrastructure Security", "AzSK Documentation"]','["[COMMUNITY-TOOL]"]','["docs/azure.md"]','["azure.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2022-02-14T11:55:39Z", "gh_stars": 498, "gh_open_issues_30d": 45, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:30.025824+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/azure-devops','github.com/azure-devops','','2026',0,'The main developer repository portal for Azure DevOps, cataloging extensions, migration tooling, and programmatic APIs required to integrate enterprise workflows with git-based operations.','None','Repository','Intermediate',0,'duplicate','manual','ae1c2217d251681e10403761be33aea790e916a8ffe27adf745ccde179788b28',100.0,1.77902925213479304e+09,1,'2026-05-17T16:47:32.134793+02:00',NULL,NULL,NULL,'["DevOps", "CI-CD Pipelines", "Platform Integration"]','["[COMMUNITY-TOOL]"]','["docs/azure.md"]','["azure.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "duplicate_of": "https://github.com/Azure/apiops"}');
INSERT INTO "resources" VALUES('https://github.com/azure-samples/avm-terraform-labs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','0dacd7ef4066bcfad49dbad32e48db22e6c2e01d09f7a586d8d1178ee20b8de4',100.0,1779034560.66281,0,'2026-05-17T18:16:00.662810+02:00',NULL,NULL,NULL,'[]','[]','["docs/azure.md", "docs/terraform.md"]','[]','{}','{}');
INSERT INTO "resources" VALUES('https://github.com/azure/fleet','github.com/azure/fleet','','2024',3,'Explores Azure Kubernetes Service (AKS) Fleet Manager, designed for multi-cluster fleet-wide management. Coordinates application rollouts, implements global ingress configurations, and automates orchestrator upgrades across distributed topologies.','Go','Repository','Advanced',1,'online','manual','93f4b3c26fd86766496d535ea8f271bc0280836859aaaaa3d64c6f8ecea8285e',100.0,1.7790298021768651e+09,1,'2026-06-10T09:34:42Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Container Orchestration", "AKS Fleet Manager"]','["[COMMUNITY-TOOL]"]','["docs/azure.md"]','["azure.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-10T09:34:42Z", "gh_stars": 224}');
INSERT INTO "resources" VALUES('https://github.com/azure/mission-critical-online','github.com/azure/mission-critical-online: Welcome to Azure Mission-Critical'' Online Reference Implementation','','2026',5,'An industry-grade reference template demonstrating design strategies for mission-critical cloud applications on Azure. Implements active-active patterns, automated failover, and zero-downtime updates.','Bicep','Repository','Advanced',1,'online','manual','abd53ddd93a178e6126ca682e7336d02bbc0908b6b83723503709b118ed243dc',100.0,1779033501.00063,1,'2025-01-14T14:51:10Z',NULL,NULL,NULL,'["Cloud Native Platforms", "Azure", "High Availability Architectures"]','["[DE FACTO STANDARD]"]','["docs/azure.md"]','["azure.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2025-01-14T14:51:10Z", "gh_stars": 401}');
INSERT INTO "resources" VALUES('https://github.com/backstage/backstage','github.com/backstage/backstage','','2026',5,'Backstage is an open-source framework created by Spotify for building customizable internal developer portals. It consolidates service catalogs, software templates, technical documentation, and observability plug-ins into a unified microservices-based control plane, radically reducing cognitive load.','TypeScript','Open Source Project','Advanced',1,'online','manual','f71598769ac3edd3c1ebd7b5bc5df4b8408e4ead63cbecea736f1de1182272bf',100.0,1.77903138560826396e+09,1,'2026-06-13T23:59:39Z',NULL,NULL,NULL,'["Platform Engineering", "IDP Tooling", "Developer Portals"]','["[DE FACTO STANDARD]"]','["docs/devops.md"]','["devops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T23:59:39Z", "gh_stars": 33600}');
INSERT INTO "resources" VALUES('https://github.com/backube/volsync','VolSync 🌟','','2026',5,'VolSync is an open-source Kubernetes operator developed by Backube to orchestrate cross-cluster persistent volume data replication. Supporting engines like rsync, rclone, and restic, it delivers a platform-agnostic framework for executing disaster recovery policies.','Go','Operator','High',0,'online','manual','cc0d5ecdcf1bc68fe0f6fec3fc1972146b345ee9360c77bc1c4f39a2137d2fef',100.0,1.77902999324945306e+09,1,'2026-06-10T18:53:51Z',NULL,NULL,NULL,'["Storage", "Kubernetes Storage", "Backup & Replication"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-storage.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "kubernetes-storage.md"]','{}','{"gh_license": "AGPL-3.0", "gh_pushed": "2026-06-10T18:53:51Z", "gh_stars": 978}');
INSERT INTO "resources" VALUES('https://github.com/badarsebard/terraforge','badarsebard/terraforge','','2022',1,'Terraforge functions as an intuitive visual scaffolding platform engineered to streamline the baseline authoring of complex Terraform configurations. Developers can sketch resource boundaries visually and export clean HCL and variables. Though limited in enterprise scaling, it remains a valuable accelerator for rapid prototyping.','JavaScript','Visual Tool','Beginner',0,'online','manual','63b99ff9036bd2923354bac610bb21034167f0275a775b70206cc8bd62902b83',100.0,1.77903061147783589e+09,1,'2024-06-24T01:36:03Z',NULL,NULL,NULL,'["Infrastructure as Code", "Terraform", "Scaffolding Utilities"]','["[COMMUNITY-TOOL]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_license": "MPL-2.0", "gh_pushed": "2024-06-24T01:36:03Z", "gh_stars": 64}');
INSERT INTO "resources" VALUES('https://github.com/bank-vaults/bank-vaults','Bank Vaults: Un Cuchillo Suizo para HashiCorp Vault en Kubernetes','','2026',4,'Bank Vaults is a comprehensive, production-grade tool designed for managing, configuring, and injecting secrets from HashiCorp Vault on Kubernetes. It utilizes an operator-driven approach to inject secrets dynamically into Pod filesystems, completely removing secrets from the cluster API storage. It is the de facto standard for enterprises seeking secure vault management and dynamic secrets injection.','Go','Security Suite','Advanced',1,'online','manual','82cc5a2a6f76cd56252c4ff64ac9970ca7e76551690aa752a0ff821067b4d0a8',100.0,1.77903036526471495e+09,1,'2026-06-07T18:48:59Z',NULL,NULL,NULL,'["Security", "Secret Management", "Integrations"]','["[ENTERPRISE-STABLE]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-07T18:48:59Z", "gh_stars": 2254}');
INSERT INTO "resources" VALUES('https://github.com/banzaicloud/dast-operator','DAST operator','','2021',5,'An operator designed to run automated Dynamic Application Security Testing (DAST) scans against active services directly in the cluster environment. Integrates security assertions early inside staging deployment cycles. Note: Banzai Cloud projects are largely archived or integrated.','Go','Operator','Advanced',1,'online','manual','33d4bf37c50364106e93e54bbb6629dcda56920719fa4685e7a3b4d4bbc7e167',100.0,1.77902995067566895e+09,1,'2023-04-05T09:57:11Z',NULL,NULL,NULL,'["Security", "Vulnerability Scanning", "Automation Operators"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-04-05T09:57:11Z", "gh_stars": 194}');
INSERT INTO "resources" VALUES('https://github.com/banzaicloud/kafka-operator','Banzai Kafka Operator','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','ea86f213227b0ac761ebd947b56dd615515e6061bbfe225846dc1b0b7d55ac79',100.0,1.77903238887049508e+09,0,'2026-05-17T17:39:48.870495+02:00',NULL,NULL,NULL,'[]','[]','["docs/message-queue.md"]','[]','{}','{"duplicate_of": "https://github.com/banzaicloud/koperator"}');
INSERT INTO "resources" VALUES('https://github.com/banzaicloud/koperator','Banzai Kafka Operator','','2024',4,'Originally engineered by Banzai Cloud, Koperator is a highly automated operator framework designed to manage Kafka on Kubernetes with Cruise Control integrations. While mostly superseded by Strimzi, its historical innovations in granular scaling and fine-grained rebalancing influenced modern stateful Kubernetes abstractions.','Go','Kubernetes Operator','Advanced',1,'online','manual','a087e59f4d2d26c4447ca0a27691b91675be891624781a74d1248472b4f29042',100.0,1.7791304950298531e+09,1,'2025-03-11T08:20:50Z',NULL,NULL,NULL,'["Infrastructure", "Cloud Native Integration", "Kubernetes Operators", "Koperator"]','["[ENTERPRISE-STABLE]"]','["docs/message-queue.md"]','["message-queue.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-03-11T08:20:50Z", "gh_stars": 790}');
INSERT INTO "resources" VALUES('https://github.com/banzaicloud/thanos-operator','banzaicloud/thanos-operator 🌟','','2023',5,'Streamlines Thanos-based monitoring architectures by provisioning Query, Store, Compact, and Ruler resources. It manages historical metrics storage across dynamic environments.','Go','Operator','Advanced',0,'online','manual','a6b7f7dbe7bbbfe7aa995b7e9f3a74874903bfe55c21106c1ac3e19c8598d823',100.0,1.77903000099484896e+09,1,'2024-01-19T15:02:07Z',NULL,NULL,NULL,'["Observability", "Metrics", "Thanos Orchestration", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-01-19T15:02:07Z", "gh_stars": 283}');
INSERT INTO "resources" VALUES('https://github.com/bbl/secretize','Secretize 🌟','','2020',2,'A lightweight command-line utility to convert raw secrets and environment variables directly into encrypted Kubernetes Secret manifests. Helpful for basic automation pipelines, although modern enterprise workflows typically favor external systems like Vault, External Secrets Operator, or sealed-secrets.','Go','Repository','Intermediate',0,'online','manual','aaaf92a6d099ab669769db6ea68561457fca407d63fcc8e7879ab54790ade02e',100.0,1.77903081013138508e+09,1,'2026-04-07T17:05:26Z',NULL,NULL,NULL,'["Cloud Native", "Security", "Secrets Management"]','["[COMMUNITY-TOOL]"]','["docs/kustomize.md"]','["kustomize.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-04-07T17:05:26Z", "gh_stars": 71}');
INSERT INTO "resources" VALUES('https://github.com/bcicen/ctop','ctop 🌟','','2026',5,'ctop provides a real-time, top-like container metrics display for command-line resource tracking. Built in Go, it supports both Docker and runC runtimes, delivering an instant overview of CPU, memory, network, and disk I/O metrics across active containers. It serves as an essential tool for local container debugging and quick bare-metal performance triage without the overhead of heavy APM agents.','Go','Tool','Medium',0,'online','manual','81e1a5f56cdb13c1a00083103c9715c784866560a1c72dd62b5e15ed4f3a7c63',100.0,1.77903042302807402e+09,1,'2024-07-08T11:15:48Z',NULL,NULL,NULL,'["Infrastructure", "Containerization", "Monitoring"]','["[DE FACTO STANDARD]"]','["docs/docker.md"]','["docker.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2024-07-08T11:15:48Z", "gh_stars": 17764}');
INSERT INTO "resources" VALUES('https://github.com/bee-travels/openapi-comment-parser','openapi-comment-parser','','2021',3,'A Node.js CLI tool and library that extracts JSDoc-style comments from source code files to generate valid OpenAPI (Swagger) specifications automatically, streamlining API contract maintenance during local development.','JavaScript','Tool','Intermediate',0,'online','manual','8d1464d334295697793b039a4e2b455df6768ddbc8c960dfda7e341ff0912c54',100.0,1.77903164815765595e+09,1,'2023-01-07T18:19:12Z',NULL,NULL,NULL,'["API Management", "API Documentation", "Tooling"]','["[COMMUNITY-TOOL]"]','["docs/api.md"]','["api.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-01-07T18:19:12Z", "gh_stars": 256}');
INSERT INTO "resources" VALUES('https://github.com/benc-uk/kubeview','KubeView 🌟','','2024',3,'A web-based, real-time visualization tool that renders Kubernetes API objects (Pods, Deployments, Services, Ingresses) and their relationships as a structured graphical map. It assists developers and administrators in diagnosing network routing and mapping configurations. In 2026, it is highly appreciated as a lightweight alternative to heavier cluster dashboards.','Go','Web Application','Medium',1,'online','manual','2611a5a8c8fd23c3f7733eb5190b56b0ae6a3e4d45fdcdf6762fefff4846d545',100.0,1.77902961363405799e+09,1,'2026-04-02T12:56:10Z',NULL,NULL,NULL,'["Operations", "Observability", "Visualization"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-04-02T12:56:10Z", "gh_stars": 1201}');
INSERT INTO "resources" VALUES('https://github.com/binhnguyennus/awesome-scalability','Awesome Scalability','','2023',5,'A legendary repository outlining the structural design patterns for massive, highly available backend systems. Covering microservices coordination, message brokers, caching schemas, and consensus databases, this represents the gold standard for backend systems architects.','Markdown','Awesome List','Advanced',1,'online','manual','d30178979d8ff158c75f71a54cc4423ffc9d6a06ad35eae9fb6b5ca1813913d2',100.0,1.7790341166719079e+09,1,'2026-01-04T03:51:47Z',NULL,NULL,NULL,'["Curation", "Awesome Lists", "Scalability"]','["[DE FACTO STANDARD]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-01-04T03:51:47Z", "gh_stars": 71720, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/biosimulations/biosimulations',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','d94d1b623ca4b6c1534f95fe0ace391867b6c7dd180d664292d381c91f91c3ac',100.0,1779034560.76264,0,'2026-05-17T18:16:00.762640+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{}');
INSERT INTO "resources" VALUES('https://github.com/biosimulations/deployment','biosimulations/deployment','','2021',1,'A customized deployment framework tailored for specialized scientific computing operations and simulation workloads. It displays production architectures orchestrating complex computations, file systems, and databases on Kubernetes cluster topologies.','Helm','Deployment Configuration','Advanced',0,'online','manual','fa5a8e09045193aa8dcccdc5df9a0b16bb458338531eb5eaf3481c97d5190a86',100.0,1.77903142948325896e+09,1,'2026-06-02T17:56:29Z',NULL,NULL,NULL,'["Specialized Workloads", "Scientific Computing", "Simulation Infrastructure"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-02T17:56:29Z", "gh_stars": 3}');
INSERT INTO "resources" VALUES('https://github.com/bit-cloner/ecrcp','ecrcp','','2020',0,'A lightweight utility designed to copy Docker images directly between different Amazon ECR registries without requiring local download-and-reupload bandwidth. Useful for cross-account deployments and regional migration tasks in complex enterprise AWS landing zones.','Go','Tool','Intermediate',0,'online','manual','7e2b0d2b0ff78890b32eab285b671fa3ba55196ec1919a0385b17e36a8784944',100.0,1.78173587618487596e+09,1,'2026-06-18T00:37:56.184876+02:00',NULL,NULL,NULL,'["Cloud Infrastructure", "AWS", "Container Registries"]','["[COMMUNITY-TOOL]"]','["docs/aws-containers.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "aws-containers.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/bit-cloner/kcg','kcg 🌟','','2021',1,'Kubernetes Context Generator (kcg) is a simple utility built to simplify generating custom kubeconfig profiles across multiple distinct environments. It remains a minor community project overshadowed by enterprise dynamic loaders.','Go','CLI Tool','Simple',0,'online','manual','5b3f063a63c487a1455c56e4d74e4214f90f370d82129b35e550a4ee325eabd6',100.0,1.77903201751916599e+09,1,'2021-04-29T17:01:09Z',NULL,NULL,NULL,'["Operations & UX", "CLI Plugins", "Context Switching"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2021-04-29T17:01:09Z", "gh_stars": 19}');
INSERT INTO "resources" VALUES('https://github.com/bit-cloner/poke','POKE - Provision Opinionated Kubernetes on EKS','','2018',0,'Opinionated CLI provisioning script wrapper for configuring standardized Amazon EKS instances. This project has been classified as legacy due to extensive inactivity; modern teams should leverage Terraform or EKS Blueprints instead.','Go','Tool','Intermediate',0,'online','manual','N/A',100.0,1.78173606840856099e+09,1,'2026-06-18T00:41:08.408561+02:00',NULL,NULL,NULL,'["Cloud Native", "AWS EKS", "Cluster Provisioning"]','["[LEGACY]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/bitnami-labs/kubewatch','==bitnami-labs/kubewatch==','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','86a2aadcf296a2d87fd6d458ec25b123a24e9270ed6027c8971ef1649221acb8',100.0,1.77903204661207795e+09,0,'2026-05-17T17:34:06.612078+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"duplicate_of": "https://github.com/vmware-archive/kubewatch"}');
INSERT INTO "resources" VALUES('https://github.com/bitnami/kubecfg','kubecfg','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','bb3d5954a600ef594c5c6906e8dd1523194c3c9b1259bd7c4aaf6dde5fc87f53',100.0,1.77903087446510601e+09,0,'2026-05-17T17:14:34.465106+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes.md"]','[]','{}','{}');
INSERT INTO "resources" VALUES('https://github.com/blendle/kubecrt','Kubecrt','','2021',1,'An archived, early-stage conversion utility built to convert Helm charts into raw Kubernetes manifests. This project has been fully superseded by standard native capabilities like ''helm template'' and is preserved solely as a historical reference of early declarative rendering strategies.','Go','CLI Tool','Beginner',0,'online','manual','a6c1de2a92799dde3536bdcc8a5926eaebfdcdd420f822b2c126cf487d276efa',100.0,1.77903307228802895e+09,1,'2023-03-07T02:59:09Z',NULL,NULL,NULL,'["Platform Engineering", "Kubernetes GitOps & Packaging", "Legacy Utilities"]','["[LEGACY]"]','["docs/helm.md"]','["helm.md"]','{}','{"gh_license": "ISC", "gh_pushed": "2023-03-07T02:59:09Z", "gh_stars": 113}');
INSERT INTO "resources" VALUES('https://github.com/bloomberg/goldpinger','bloomberg/goldpinger 🌟','','2017',4,'An advanced connectivity troubleshooting tool that deploys as a cluster-wide DaemonSet to ping target peers. It generates visual mesh graphics depicting latency patterns, transport failures, and network partition faults.','Go','Kubernetes DaemonSet','Intermediate',1,'online','manual','5a906ec37741f8a82781e9e2c6196860fcb8b11251866231046ab986fc61ee7c',100.0,1.77903347981929802e+09,1,'2026-04-23T15:38:04Z',NULL,NULL,NULL,'["Observability & Performance", "Network Monitoring", "Mesh Connectivity"]','["[ENTERPRISE-STABLE]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-04-23T15:38:04Z", "gh_stars": 2707}');
INSERT INTO "resources" VALUES('https://github.com/bloomberg/memray','github.com/bloomberg/memray 🌟🌟','','2025',5,'Curator Insight details Memray as Bloomberg''s advanced memory tracker for Python applications. Live Grounding confirms its preeminent role in tracking allocations inside complex microservice systems, excelling in profiling C/C++ extension boundaries where standard tools fall short.','Python / C++','Library / CLI','Advanced',1,'online','manual','9be53de03b150e560c31ef702fbf954ed599304266538a270b551a89cac52663',100.0,1.77903371626742911e+09,1,'2026-06-12T00:32:27Z',NULL,NULL,NULL,'["Software Engineering", "Python", "Memory Profiling"]','["[DE FACTO STANDARD]"]','["docs/python.md"]','["python.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T00:32:27Z", "gh_stars": 15115}');
INSERT INTO "resources" VALUES('https://github.com/bluefrg/bitbucket-auto-merge','BitBucket Auto Merge','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','2536b6d8b2279bd5db3fd12b921818904b1e4467b3feddc8d7fcc2bafa1693f9',100.0,1.77903140185519289e+09,0,'2026-05-17T17:23:21.855193+02:00',NULL,NULL,NULL,'[]','[]','["docs/git.md"]','[]','{}','{"duplicate_of": "https://github.com/mikefrank-ca/bitbucket-auto-merge"}');
INSERT INTO "resources" VALUES('https://github.com/bluxmit/alnoda-workspaces','github.com/bluxmit: Kubespray Workspace','','2024',5,'A containerized development sandbox and workspace designed to streamline the execution of Kubespray and Ansible playbooks, ensuring dependency insulation and tool consistency across local machine environments.','Docker/Shell','Repository','Intermediate',0,'online','manual','5afb0973ee4b9b75f27e799ba2e4c8cf97fc81f5dfd4e3396c9192984278d69a',100.0,1.77903036363115596e+09,1,'2023-07-30T07:49:59Z',NULL,NULL,NULL,'["Provisioning", "Ansible", "Development Environments"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-on-premise.md"]','["kubernetes-on-premise.md"]','{}','{"gh_license": "AGPL-3.0", "gh_pushed": "2023-07-30T07:49:59Z", "gh_stars": 1361}');
INSERT INTO "resources" VALUES('https://github.com/bmaynard/kubevol','Kubevol 🌟','','2018',1,'A historical command-line utility for copying and transferring data between Kubernetes Persistent Volume Claims (PVCs). It is now considered legacy as native CSI snapshot capabilities and robust migration utilities have become standard.','Python','CLI Tool','Simple',0,'online','manual','6a7da73d86c4ed1ad1af29324d3711a520570bfdfdf6524f822389ea5fd37dd2',100.0,1.77903316298204708e+09,1,'2023-02-06T23:46:43Z',NULL,NULL,NULL,'["Storage", "Volume Management", "Data Migration"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "GPL-3.0", "gh_pushed": "2023-02-06T23:46:43Z", "gh_stars": 18}');
INSERT INTO "resources" VALUES('https://github.com/bmuschko/ckad-crash-course','bmuschko/ckad-crash-course: Certified Kubernetes Application Developer (CKAD)'' Crash Course','','2021',5,'A repository housing comprehensive code examples, study guides, and hands-on exercises complementing Benjamin Muschko''s CKAD Crash Course. It focuses on application design, deployment configurations, security contexts, and troubleshooting methodologies essential to the Linux Foundation blueprint.','Shell','Reference','Intermediate',0,'online','manual','036f2eff18d8bcecd44deb08c1c2cac124913756765535397a7eca244f0a5334',100.0,1.78173622159774208e+09,1,'2026-06-18T00:43:41.597742+02:00',NULL,NULL,NULL,'["Training", "Certification", "CKAD"]','["[DE FACTO STANDARD]"]','["docs/kubernetes.md"]','["kubernetes.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/bmuschko/ckad-prep','bmuschko/ckad-prep','','2021',5,'An alternative preparation repository designed by Benjamin Muschko, offering structured sample solutions, resource manifests, and command-line blueprints to ace the CKAD exam. It isolates complex concepts like readiness/liveness probes, service definition, and rolling updates into easy-to-digest exercises.','YAML','Reference','Intermediate',0,'online','manual','a15629426df06a5e46361d07a2d7f517676aded3640b46ec2478916bfb3b7d7a',100.0,1.78173622166995501e+09,1,'2026-06-18T00:43:41.669955+02:00',NULL,NULL,NULL,'["Training", "Certification", "CKAD"]','["[DE FACTO STANDARD]"]','["docs/kubernetes.md"]','["kubernetes.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/bodywork-ml/bodywork-core','bodywork-ml/bodywork-core: Bodywork','','2022',2,'Bodywork acts as a pipeline orchestrator and deployment tool focused on shipping machine learning systems directly into Kubernetes. While currently seeing low developer activity, it remains a valuable conceptual blueprint for running serverless, stateful, and batch-oriented ML pipelines.','Python','Repository','Intermediate',1,'online','manual','b5aea08cb00293bda96f65851a9a2191c197bdc9e4ef09bee42e3ce3d88ad27c',100.0,1.77903086208310794e+09,1,'2023-08-18T06:42:48Z',NULL,NULL,NULL,'["MLOps", "Deployment", "Kubernetes Orchestration"]','["[COMMUNITY-TOOL]"]','["docs/mlops.md"]','["mlops.md"]','{}','{"gh_license": "AGPL-3.0", "gh_pushed": "2023-08-18T06:42:48Z", "gh_stars": 436}');
INSERT INTO "resources" VALUES('https://github.com/boltops-tools/kubes','kubes 🌟','','2023',2,'Kubes is a deployment framework that enables developers to build, prune, and deploy Docker images and Kubernetes manifests using clean, programmable configurations. It combines compilation and deployment phases into a unified workflow.','Ruby','CLI Tool','Intermediate',0,'online','manual','52c8136ce905cca1e7d8ac95bd4c0bb87c81ae772e3ebb054d4af61ff4445a7b',100.0,1.7790329228349049e+09,1,'2025-04-24T01:47:46Z',NULL,NULL,NULL,'["Application Lifecycle", "Deployment Frameworks", "Declarative Config"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-04-24T01:47:46Z", "gh_stars": 102}');
INSERT INTO "resources" VALUES('https://github.com/borchero/meerkat','Meerkat','','2023',5,'A dynamic networking operator designed to update and map external DNS routes. It reads internal networking resource allocations to dynamically register up-to-date hostname directories.','Go','Operator','Medium',0,'online','manual','da6037ae1fc02f0d734024ace407f92ad38ab9bb7c01686b260d10d32e54a420',100.0,1.77903055904853796e+09,1,'2020-12-31T13:19:58Z',NULL,NULL,NULL,'["Networking", "DNS", "Service Discovery", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2020-12-31T13:19:58Z", "gh_stars": 38}');
INSERT INTO "resources" VALUES('https://github.com/borchero/switchboard','borchero/switchboard: Switchboard','','2024',5,'Switchboard functions as a Kubernetes-native dynamic router and DNS management hub. It coordinates with global DNS service APIs to orchestrate routing policies, mapping live cluster ingress nodes automatically to external domain registrations.','Go','Repository','Intermediate',0,'online','manual','39bbd3ced60c70fc8cf5abb1d81edbc2300273c700e94076b63b58310ab7b47f',100.0,1.77902982123730707e+09,1,'2026-06-11T14:45:12Z',NULL,NULL,NULL,'["Networking", "DNS & Ingress", "Routing Controllers"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "kubernetes-operators-controllers.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-11T14:45:12Z", "gh_stars": 163}');
INSERT INTO "resources" VALUES('https://github.com/bors-ng/bors-ng','Bors-ng: A merge bot for GitHub Pull Requests','','2026',4,'An Elixir-based implementation of the Bors merge coordinator. Uses a highly parallelized merge queue to batch, build, and test PR combinations, keeping the master branch strictly green. Live grounding notes that although currently archived, it remains a landmark model for merge queues.','Elixir','Tool','Advanced',1,'online','manual','48e086288c13aad192af64884162e420699e25d3b1cc8799cc1fd6a7b757a1f4',100.0,1.77903333942218589e+09,1,'2024-04-04T12:24:44Z',NULL,NULL,NULL,'["Software Engineering", "Version Control", "Automation Bots"]','["[ENTERPRISE-STABLE]", "[LEGACY]"]','["docs/git.md"]','["git.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-04-04T12:24:44Z", "gh_stars": 1531}');
INSERT INTO "resources" VALUES('https://github.com/boto/boto','Boto','','2018',4,'Curator Insight introduces the early Boto library for AWS programmatic scripting. Live Grounding confirms the library is fully deprecated and obsolete, replaced completely by Boto3; developers must prioritize migration to eliminate compatibility issues with modern AWS endpoints.','Python','Library','Intermediate',0,'online','manual','cd49b06eb73f2532fc7eaa4832fa7c174c39ae36458bb191e5e06e18e6aa3f92',100.0,1.77903382801839303e+09,1,'2024-01-12T23:46:55Z',NULL,NULL,NULL,'["Infrastructure", "AWS SDK", "Legacy Library"]','["[ENTERPRISE-STABLE]", "[LEGACY]"]','["docs/python.md"]','["python.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2024-01-12T23:46:55Z", "gh_stars": 6431}');
INSERT INTO "resources" VALUES('https://github.com/box/kube-exec-controller','box/kube-exec-controller','','2018',5,'Curator Insight: Controller to restrict and audit shell execution inside Kubernetes pods. Live Grounding: Inactive for over five years. Superseded by newer ephemeral container mechanics, admission controllers (OPA/Kyverno), and modern service mesh execution boundaries.','Go','Code Repository','Advanced',0,'online','manual','ba337139c4a519fc7bbfdfbad8a550898ae48d5fe9f6d34e00f111de9566c220',100.0,1.77903114144634294e+09,1,'2021-12-02T07:48:57Z',NULL,NULL,NULL,'["Security", "Policy & Admission Control", "Runtime Security", "Legacy Tools"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-security.md", "docs/kubernetes-tools.md"]','["kubernetes-security.md", "kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2021-12-02T07:48:57Z", "gh_stars": 126}');
INSERT INTO "resources" VALUES('https://github.com/box/kube-iptables-tailer','github.com/box/kube-iptables-tailer','','2026',3,'Kube-iptables-tailer is a specialized controller that parses system-level kernel iptables packet drop logs and maps them directly to active Kubernetes Pods. By resolving low-level packet drops to recognizable workload names, it simplifies network policy auditing and connectivity troubleshooting. This utility is ideal for platform teams managing strict, multi-layer networking environments.','Go','Network Controller','Advanced',0,'online','manual','c354ad86a39a806991da9793087a82af802fc0958dab8bdaccc520690099c0c0',100.0,1779031808.40008,1,'2024-08-12T08:40:33Z',NULL,NULL,NULL,'["Networking", "iptables Analysis", "Troubleshooting"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-08-12T08:40:33Z", "gh_stars": 549}');
INSERT INTO "resources" VALUES('https://github.com/bpftrace/bpftrace','bpftrace','','2018',5,'A high-level tracing language and diagnostic toolkit built on top of the Linux eBPF subsystem. It allows system engineers to dynamically probe kernel modules, trace memory allocations, and analyze latency. Live Grounding shows that bpftrace is a core diagnostic pillar in production engineering.','C++','Tool','Advanced',0,'online','manual','37f422e9795c080231318d3d71659a3fbac0d01be532fe49ebe9bf563141ef75',100.0,1.77913049494506096e+09,1,'2026-06-13T15:56:16Z',NULL,NULL,NULL,'["Infrastructure & Operations", "Observability", "Kernel Tracing"]','["[DE FACTO STANDARD]"]','["docs/linux.md"]','["linux.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T15:56:16Z", "gh_stars": 10160}');
INSERT INTO "resources" VALUES('https://github.com/bregman-arie/devops-exercises','bregman-arie/devops-exercises 🌟','','2026',5,'A massive curated repository containing thousands of questions, answers, and hands-on exercises covering Linux, Jenkins, Docker, Kubernetes, Ansible, Terraform, AWS, and system design. (Live Grounding: With over 82k stars, it stands in 2026 as the preeminent resource for preparing systems engineers and validating platform architecture skills).','Python/YAML','Reference Guide','Intermediate',1,'online','manual','74f02f679be571f5cbde19766052dcc39fdac290a01354dc045033912e6304c1',100.0,1.77903210442080307e+09,1,'2025-12-27T14:22:30Z',NULL,NULL,NULL,'["DevOps & Platform Engineering", "Interview Preparation", "Reference Guides"]','["[DE FACTO STANDARD]", "[GUIDE]"]','["docs/demos.md", "docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md", "demos.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2025-12-27T14:22:30Z", "gh_stars": 82758, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/bregman-arie/devops-resources','==bregman-arie/devops-resources== 🌟','','2026',0,'A massive collection of operational guides, cheat sheets, books, and courses covering Kubernetes ecosystems, continuous delivery pipelines, configuration engines, and cloud design.','Markdown','Awesome List','Intermediate',0,'duplicate','manual','9ff97eac6df2ac9efd2f8276a5c9580d0a37f227613f7113e5741f45e51d52ea',100.0,1781736123.10989,1,'2026-06-18T00:42:03.109890+02:00',NULL,NULL,NULL,'["Infrastructure & Operations", "DevOps & SRE Engineering", "Educational Resources"]','["[COMMUNITY-TOOL]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "is_special": true, "duplicate_of": "https://github.com/bregman-arie/devops-exercises"}');
INSERT INTO "resources" VALUES('https://github.com/brennerm/uptimerobot-operator','uptimerobot-operator','','2023',5,'Synchronizes current routing profiles with the UptimeRobot API. It dynamically configures exterior synthetic latency testing targets as new ingresses scale up or out.','Go','Operator','Medium',0,'online','manual','019ed7ba4756bb460e0fb2c270bbffd3c8e917906e4007d7d6397ce57c2e01fe',100.0,1.7790330513467431e+09,1,'2023-11-14T16:27:12Z',NULL,NULL,NULL,'["Observability", "Monitoring", "External Integration", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2023-11-14T16:27:12Z", "gh_stars": 60}');
INSERT INTO "resources" VALUES('https://github.com/bridgecrewio/AirIAM','bridgecrewio/AirIAM','','2023',2,'AirIAM bridges the gap between manual runtime configuration and declarative postures by parsing active AWS IAM deployments and converting them to structured Terraform modules. It leverages analytics to isolate unused roles and design clean, least-privilege configurations. Platform engineers utilize it to refactor legacy brownfield permissions into audited GitOps structures.','Python','CLI Tool','Advanced',0,'online','manual','09ac371fb9ddc2a4b26fbab44ac8cee1b1d19e6581f91e3655a4ee002aea67b4',100.0,1779029341.51882,1,'2025-03-18T19:37:06Z',NULL,NULL,NULL,'["Infrastructure as Code", "Cloud Security", "IAM Translation"]','["[LEGACY]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-03-18T19:37:06Z", "gh_stars": 824}');
INSERT INTO "resources" VALUES('https://github.com/bridgecrewio/checkov','Checkov 🌟','','2026',5,'Checkov is a static code analysis tool for Infrastructure as Code (IaC) that scans Kubernetes manifests, Helm charts, Terraform, and cloud-provider templates for misconfigurations and security risks, acting as a critical CI/CD gatekeeper.','Python','Security Scanner','Intermediate',0,'online','manual','98f69842258ecb7f450daae2e657279f373b3e71ba9dbd34c8a40e24dcdd02df',100.0,1.77903217795133209e+09,1,'2026-06-11T23:29:10Z',NULL,NULL,NULL,'["Security & Identity", "Compliance & Auditing", "Static Code Analysis"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T23:29:10Z", "gh_stars": 8790}');
INSERT INTO "resources" VALUES('https://github.com/bridgecrewio/helm-scanner','helm-scanner','','2023',0,'A lightweight template vulnerability scanner that evaluates Helm manifests for potential security drift, secrets leaks, and misconfigurations prior to deployment. Often integrated early in pipeline testing stages.','Go','CLI Tool','Intermediate',0,'online','manual','e886ce99a0b1d192eacdce6179a4ba3c5be951efe0cab97126043fb783af6220',100.0,1.78173596099319291e+09,1,'2026-06-18T00:39:20.993193+02:00',NULL,NULL,NULL,'["Platform Engineering", "Kubernetes GitOps & Packaging", "Security & Auditing"]','["[COMMUNITY-TOOL]"]','["docs/helm.md"]','["helm.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/bryanl/sheaf','sheaf','','2021',5,'A packaging utility designed to compile Kubernetes application manifests and associated container image layers into standalone relocatable archives. Crucial for provisioning air-gapped systems or on-prem environments. The project is archived, with users directed to standard solutions like Carvel or Helm.','Go','Tool','Medium',0,'online','manual','f4297ddb49eb511e4a452c5b03a9cb0d21652bf0840a5e689d129dcd030cf413',100.0,1.77903095497125911e+09,1,'2020-07-17T14:43:40Z',NULL,NULL,NULL,'["Application Delivery", "Packaging", "Air-gapped Deployment"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2020-07-17T14:43:40Z", "gh_stars": 30}');
INSERT INTO "resources" VALUES('https://github.com/buger/jsonparser','buger/jsonparser','','2025',5,'An ultra-performant, zero-allocation Go JSON parser that bypasses reflection and standard serialization libraries. Reaches nested values directly from byte slices, outperforming standard library structures by up to 10x in high-throughput data pipelines.','Go','Library','High',0,'online','manual','2244dce6b7f1cfbc9b2734caf6103dc227e547204b25653449b2e67beeb4102a',100.0,1.77902924330012393e+09,1,'2026-05-03T11:10:14Z',NULL,NULL,NULL,'["Data Architecture", "JSON & YAML Serialization", "Performance & Parsing"]','["[DE FACTO STANDARD]"]','["docs/yaml.md"]','["data-and-advanced-analytics.md", "yaml.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-05-03T11:10:14Z", "gh_stars": 5629, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/burrsutter/9stepsawesome','github: burrsutter/9stepsawesome','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','2dda5a7dbd683b5f7987a254ac47d2b08755f0af73d93fcdb0c36f10ad6f571d',100.0,1.77903279351400399e+09,1,'2026-05-17T17:46:33.514004+02:00',NULL,NULL,NULL,'[]','[]','["docs/openshift.md"]','[]','{}','{}');
INSERT INTO "resources" VALUES('https://github.com/bytebase/bytebase','bytebase/bytebase','','2021',5,'Open-source, web-based database schema change and collaboration tool engineered for DevOps teams and DBAs. Features GitOps-driven workflow mechanics, automated visual SQL review, and centralized security compliance policies to govern multi-engine environments.','Go','Software','Advanced',1,'online','manual','dac4c79ad7a36b978bd40c9488b8c26ac8289977234555e87c7d984d001cc0e1',100.0,1.77903198337984299e+09,1,'2026-06-12T07:19:02Z',NULL,NULL,NULL,'["Database Architecture", "Database GitOps", "Schema Management"]','["[DE FACTO STANDARD]"]','["docs/liquibase.md"]','["liquibase.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-12T07:19:02Z", "gh_stars": 14143}');
INSERT INTO "resources" VALUES('https://github.com/c0dyhi11/k3s-linkerd','Global K3s Deployment on Packet Baremetal 🌟','','2020',0,'A global multi-region deployment playbook demonstrating K3s cluster instantiation across Packet Baremetal infrastructure, coupled with the Linkerd service mesh. Optimizes edge routing latency and inter-node networking security.','Shell','Repository','Advanced',0,'online','manual','01640813ce20a74bfa917c6f312443d87d58ecca493ab67478623e7f79309bbc',100.0,1.77903456060387611e+09,1,'2020-04-12T04:12:17Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Bare Metal & Multi-Cloud", "Kubernetes Distributions"]','["[COMMUNITY-TOOL]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2020-04-12T04:12:17Z", "gh_stars": 9}');
INSERT INTO "resources" VALUES('https://github.com/cakehappens/seaworthy','seaworthy: A CLI to verify #Kubernetes resource health !! 🌟','','2021',1,'A testing-focused CLI utility used to run health checks and smoke tests against newly deployed Kubernetes resources. It validates endpoints, ingress routing, and pod states match expected operating metrics before promoting releases.','Go','CLI Verification Tool','Simple',0,'online','manual','13613895efb1f252ebf742e03ce27c20811105d3ab39cd0b5f0332e030409444',100.0,1.77903114311227297e+09,1,'2020-08-10T01:10:04Z',NULL,NULL,NULL,'["Application Lifecycle", "Testing & Verification", "Health Checks"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2020-08-10T01:10:04Z", "gh_stars": 39}');
INSERT INTO "resources" VALUES('https://github.com/caldito/soup','caldito/soup','','2021',1,'Soup is a small open-source CLI tool designed to extract, analyze, and report on the container image tags actively running across a Kubernetes cluster. It aids operations teams in identifying legacy or unpinned image tags, although modern comprehensive policy engines like Kyverno have largely subsumed its utility.','Go','CLI Tool','Medium',0,'online','manual','3ae1c1f73278dacc640a6963eaddb565d6ae116f3322ba070c03c08347d75fe1',100.0,1.77903057309451293e+09,1,'2022-04-19T16:53:22Z',NULL,NULL,NULL,'["Operations", "Security", "Image Scanning"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2022-04-19T16:53:22Z", "gh_stars": 40}');
INSERT INTO "resources" VALUES('https://github.com/calvin-puram/awesome-kubernetes-operator-resources','github.com/calvin-puram: Awesome Kubernetes Operator Resources','','2023',5,'A specialized guide indexing SDKs, patterns, and source repositories for writing Kubernetes Operators. It provides concrete references on the Operator SDK, Kubebuilder framework, and controller-runtime systems, allowing platform developers to build automated, stateful management controllers.','Markdown','Awesome List','Advanced',1,'online','manual','713b023d78076df0736c083ea7910ceaa405c6373f07b36e45f409fc7aae2b36',100.0,1.77903331400957298e+09,1,'2026-04-25T08:57:34Z',NULL,NULL,NULL,'["Curation", "Awesome Lists", "Operators"]','["[DE FACTO STANDARD]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "CC0-1.0", "gh_pushed": "2026-04-25T08:57:34Z", "gh_stars": 245, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/carlosedp/cluster-monitoring','Cluster Monitoring stack for ARM / X86-64 platforms','','2025',5,'A specialized telemetry suite crafted for physical, edge, and multi-architecture Kubernetes clusters running on ARM or x86 systems. Extends modern operators to resource-constrained environments.','Jsonnet','Repository','Advanced',1,'online','manual','a3d3a6a736de50fc3b1505948aadfbaea2fb00071f2911992a29bf71cf186969',100.0,1.77903295041548299e+09,1,'2025-08-22T22:59:09Z',NULL,NULL,NULL,'["Cloud Native Platforms", "Kubernetes", "Multi-Arch Telemetry"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md", "docs/prometheus.md"]','["kubernetes-tools.md", "prometheus.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2025-08-22T22:59:09Z", "gh_stars": 754}');
INSERT INTO "resources" VALUES('https://github.com/carlosedp/lbconfig-operator','github.com/carlosedp/lbconfig-operator: External Load Balancer Operator'' 🌟','','2023',1,'Operator that dynamically provisions and configures external hardware/software load balancers (such as F5 BIG-IP or HAProxy) based on Kubernetes ingress or service resource updates.','Go','Repository','Advanced',0,'online','manual','0cb420e6987d09ec35c12f2e9945f9ff24a337a8f85a78f5f8277b71b8086b83',100.0,1.77902956995955204e+09,1,'2026-03-01T22:30:31Z',NULL,NULL,NULL,'["Orchestration", "Kubernetes", "Networking"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-03-01T22:30:31Z", "gh_stars": 63}');
INSERT INTO "resources" VALUES('https://github.com/carlosonunez/k8s-harness','k8s-harness 🌟','','2018',0,'A legacy testing framework designed to rapidly provision and tear down ephemeral Kubernetes development harnesses. While useful in early CI, modern virtual cluster setups like vcluster or Kind provide much higher speed and fidelity.','Ruby','Testing Framework','Simple',0,'online','manual','43219a1713ceb71f2d79b4e51ebdee330214d0682945f5bb7378f8347b210c49',100.0,1.78173604680598592e+09,1,'2026-06-18T00:40:46.805986+02:00',NULL,NULL,NULL,'["Application Lifecycle", "Testing & Verification", "Local Harnesses"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/carlosonunez/kubernetes-the-hard-way-on-azure','Kubernetes the Hard Way: Azure Edition','','2021',0,'A localized adaptation of ''Kubernetes the Hard Way'' targeting Azure cloud services. Focuses on manual creation of Virtual Networks (VNets), Network Security Groups (NSGs), Azure load balancers, and systemd service profiles to build a transparent control plane.','Markdown','Repository','Advanced',0,'duplicate','manual','1ae1465f5fd177aebc32e70d65e9efac02258fce8fd7f6572830dc76e371a71f',100.0,1.78173602649203801e+09,1,'2026-06-18T00:40:26.492038+02:00',NULL,NULL,NULL,'["Provisioning", "Bootstrapping", "Azure"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-on-premise.md"]','["kubernetes-on-premise.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "duplicate_of": "https://github.com/prabhatsharma/kubernetes-the-hard-way-aws"}');
INSERT INTO "resources" VALUES('https://github.com/cavaliercoder/vpc-free','github.com/cavaliercoder/vpc-free','','2024',5,'A specialized tool designed to scan AWS VPC configurations and identify unused IP subnets and available address spaces. It simplifies subnet planning and CIDR allocation by visually exposing gaps in current IP management matrices. Essential for large enterprises implementing zero-trust network segmentations or multi-region Transit Gateway routing.','Go','Repository','Intermediate',0,'online','manual','6642a03abac705fe10c8ad93cebb687fa4f56c9e9f888f675c97c706d4bff7ac',100.0,1779030538.95954,1,'2019-06-26T00:24:45Z',NULL,NULL,NULL,'["Cloud Platform", "AWS Infrastructure", "Networking"]','["[DE FACTO STANDARD]"]','["docs/aws-tools-scripts.md"]','["aws-tools-scripts.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2019-06-26T00:24:45Z", "gh_stars": 59}');
INSERT INTO "resources" VALUES('https://github.com/cdk8s-team/cdk8s','cdk8s','','2026',5,'The GitHub repository containing the core source code for CDK8s. It allows developers to model Kubernetes resources as structured code in TypeScript, Python, Java, or Go. It features full support for custom-generated CRDs, letting platform teams build clean, reusable configuration libraries.','TypeScript','Tool','Intermediate',0,'online','manual','4e4e6aa8ff97716ee088cd364fca4f83a29ce3f6ce9958ffd8b73eae54db2a2b',100.0,1.77903024906896495e+09,1,'2026-06-13T10:24:27Z',NULL,NULL,NULL,'["Configuration", "CDK & DSLs", "CDK8s"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-client-libraries.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "kubernetes-client-libraries.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T10:24:27Z", "gh_stars": 4823}');
INSERT INTO "resources" VALUES('https://github.com/ceph/ceph','Ceph: A Distributed Object, Block, and File Storage Platform','','2026',5,'An enterprise-grade, highly scalable distributed storage ecosystem providing object, block, and file system storage on a single unified cluster. Widely adopted as the primary storage layer backing cloud platforms and Kubernetes orchestration (Rook-Ceph).','C++','Infrastructure','Advanced',0,'online','manual','5fccdfde04b9481e08f59d6cf81834cadee87cc848f31d62c280766005d71925',100.0,1.77903209175809407e+09,1,'2026-06-13T22:54:53Z',NULL,NULL,NULL,'["Cloud Infrastructure & Orchestration", "Storage & Databases", "Distributed Block Storage"]','["[DE FACTO STANDARD]"]','["docs/aws-storage.md", "docs/cloud-asset-inventory.md", "docs/kubernetes-storage.md"]','["aws-storage.md", "cloud-asset-inventory.md", "kubernetes-storage.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-13T22:54:53Z", "gh_stars": 16707}');
INSERT INTO "resources" VALUES('https://github.com/cert-manager/approver-policy','github.com/cert-manager: Policy Approver','','2024',5,'The cert-manager approver-policy extension code repository. Intercepts CertificateRequest resources before submission, evaluating requested commonNames, SANs, and key constraints against user-defined security guidelines.','Go','Code Repository','Advanced',0,'online','manual','331ac73ab670293dd3c50c8119d2b9707a74e38e0b59e4fdd59484c9f5a7c8c3',100.0,1.77913049498746395e+09,1,'2026-06-13T09:32:17Z',NULL,NULL,NULL,'["Security", "PKI & Certificates", "cert-manager", "Access Control"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-security.md"]','["kubernetes-security.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T09:32:17Z", "gh_stars": 90}');
INSERT INTO "resources" VALUES('https://github.com/cert-manager/cert-manager','==cert-manager/cert-manager==','','2026',5,'Consolidated record of the cert-manager repository, automating certificate lifecycles to guarantee encrypted transport paths between internal microservice runtimes.','Go','Code Repository','Advanced',0,'online','manual','d2ec3a0583b0d999c41e17df6d4ddf7762a9bc25a361a2a78db3913473d65e6f',100.0,1.77903153830299091e+09,1,'2026-06-14T01:07:13Z',NULL,NULL,NULL,'["Security", "PKI & Certificates", "cert-manager"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-security.md"]','["registries.md", "kubernetes-security.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-14T01:07:13Z", "gh_stars": 13859}');
INSERT INTO "resources" VALUES('https://github.com/cert-manager/policy-approver','github.com/cert-manager: Policy Approver','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','77377c86ef3a506463e841cfd92ae4019df552e035539b54900d47def409cf60',100.0,1.77903392232206392e+09,0,'2026-05-17T18:05:22.322064+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-security.md"]','[]','{}','{"duplicate_of": "https://github.com/cert-manager/approver-policy"}');
INSERT INTO "resources" VALUES('https://github.com/chaos-mesh/chaos-mesh','Chaos Mesh','','2025',5,'A robust, CNCF-incubating chaos engineering platform designed for cloud-native ecosystems. Orchestrates extensive failure injections—spanning network partitions, node failures, system call manipulations, and JVM faults—allowing developers to systematically evaluate Kubernetes stability under load.','Go','SaaS Platform / Orchestrator','Advanced',1,'online','manual','dda04b09c01fae29e8fd45959bbd630e73f4e1333799a464731c56bbd42e7e70',100.0,1.77902988401929688e+09,1,'2026-06-12T09:21:53Z',NULL,NULL,NULL,'["Resilience", "Chaos Engineering", "Enterprise Platforms"]','["[DE FACTO STANDARD]"]','["docs/chaos-engineering.md"]','["chaos-engineering.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T09:21:53Z", "gh_stars": 7747}');
INSERT INTO "resources" VALUES('https://github.com/chaosblade-io/chaosblade','chaosblade','','2025',5,'Alibaba''s multi-platform chaos engineering tool designed to inject faults across various levels of a system. Specifically targets OS resource exhaustion, network degradation, disk I/O bottlenecks, and deep application-layer faults for languages like Java, Go, and C++.','Go','Software Utility','Advanced',1,'online','manual','0b7a4de55c0e224e822bb577e5c593e6911d47a8862693ad954b36a431baf3a7',100.0,1.77903453145563197e+09,1,'2026-06-09T16:23:13Z',NULL,NULL,NULL,'["Resilience", "Chaos Engineering", "Kubernetes Tools"]','["[DE FACTO STANDARD]"]','["docs/chaos-engineering.md"]','["chaos-engineering.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-09T16:23:13Z", "gh_stars": 6352}');
INSERT INTO "resources" VALUES('https://github.com/charlax/professional-programming','github.com/charlax/professional-programming: A collection of full-stack'' resources for programmers 🌟','','2026',5,'A world-class resource collection addressing the operational, psychological, and architectural aspects of professional software engineering. Spans topics from system design and API robustness to career planning and team mechanics. An essential reading reference for engineering leads and staff architects.','N/A','Repository','Intermediate',0,'online','manual','f254cf680e5e80c3e9c6b39c4ed3c5cf84643f79de26334daab3f270700bb54c',100.0,1.77903223244468498e+09,1,'2026-06-08T00:03:16Z',NULL,NULL,NULL,'["Developer Tools", "Methodology", "Resources"]','["[DE FACTO STANDARD]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-08T00:03:16Z", "gh_stars": 51109, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/azure-samples/avm-terraform-labs',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','0dacd7ef4066bcfad49dbad32e48db22e6c2e01d09f7a586d8d1178ee20b8de4',100.0,1779034560.66281,0,'2026-05-17T18:16:00.662810+02:00',NULL,NULL,NULL,'[]','[]','["docs/azure.md", "docs/terraform.md"]','[]','{}','{"gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:26:30.755161+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/azure/fleet','github.com/azure/fleet','','2024',3,'Explores Azure Kubernetes Service (AKS) Fleet Manager, designed for multi-cluster fleet-wide management. Coordinates application rollouts, implements global ingress configurations, and automates orchestrator upgrades across distributed topologies.','Go','Repository','Advanced',1,'online','manual','93f4b3c26fd86766496d535ea8f271bc0280836859aaaaa3d64c6f8ecea8285e',100.0,1.7790298021768651e+09,1,'2026-06-10T09:34:42Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Container Orchestration", "AKS Fleet Manager"]','["[COMMUNITY-TOOL]"]','["docs/azure.md"]','["azure.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-10T09:34:42Z", "gh_stars": 224, "gh_open_issues_30d": 50, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:31.479062+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/azure/mission-critical-online','github.com/azure/mission-critical-online: Welcome to Azure Mission-Critical'' Online Reference Implementation','','2026',5,'An industry-grade reference template demonstrating design strategies for mission-critical cloud applications on Azure. Implements active-active patterns, automated failover, and zero-downtime updates.','Bicep','Repository','Advanced',1,'online','manual','abd53ddd93a178e6126ca682e7336d02bbc0908b6b83723503709b118ed243dc',100.0,1779033501.00063,1,'2025-01-14T14:51:10Z',NULL,NULL,NULL,'["Cloud Native Platforms", "Azure", "High Availability Architectures"]','["[DE FACTO STANDARD]"]','["docs/azure.md"]','["azure.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2025-01-14T14:51:10Z", "gh_stars": 401, "gh_open_issues_30d": 44, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:32.216722+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/backstage/backstage','github.com/backstage/backstage','','2026',5,'Backstage is an open-source framework created by Spotify for building customizable internal developer portals. It consolidates service catalogs, software templates, technical documentation, and observability plug-ins into a unified microservices-based control plane, radically reducing cognitive load.','TypeScript','Open Source Project','Advanced',1,'online','manual','f71598769ac3edd3c1ebd7b5bc5df4b8408e4ead63cbecea736f1de1182272bf',100.0,1.77903138560826396e+09,1,'2026-06-13T23:59:39Z',NULL,NULL,NULL,'["Platform Engineering", "IDP Tooling", "Developer Portals"]','["[DE FACTO STANDARD]"]','["docs/devops.md"]','["devops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T23:59:39Z", "gh_stars": 33600, "gh_open_issues_30d": 452, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:26:32.958270+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/backube/volsync','VolSync 🌟','','2026',5,'VolSync is an open-source Kubernetes operator developed by Backube to orchestrate cross-cluster persistent volume data replication. Supporting engines like rsync, rclone, and restic, it delivers a platform-agnostic framework for executing disaster recovery policies.','Go','Operator','High',0,'online','manual','cc0d5ecdcf1bc68fe0f6fec3fc1972146b345ee9360c77bc1c4f39a2137d2fef',100.0,1.77902999324945306e+09,1,'2026-06-10T18:53:51Z',NULL,NULL,NULL,'["Storage", "Kubernetes Storage", "Backup & Replication"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-storage.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "kubernetes-storage.md"]','{}','{"gh_license": "AGPL-3.0", "gh_pushed": "2026-06-10T18:53:51Z", "gh_stars": 978, "gh_open_issues_30d": 115, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:26:33.672094+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/badarsebard/terraforge','badarsebard/terraforge','','2022',1,'Terraforge functions as an intuitive visual scaffolding platform engineered to streamline the baseline authoring of complex Terraform configurations. Developers can sketch resource boundaries visually and export clean HCL and variables. Though limited in enterprise scaling, it remains a valuable accelerator for rapid prototyping.','JavaScript','Visual Tool','Beginner',0,'online','manual','63b99ff9036bd2923354bac610bb21034167f0275a775b70206cc8bd62902b83',100.0,1.77903061147783589e+09,1,'2024-06-24T01:36:03Z',NULL,NULL,NULL,'["Infrastructure as Code", "Terraform", "Scaffolding Utilities"]','["[COMMUNITY-TOOL]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_license": "MPL-2.0", "gh_pushed": "2024-06-24T01:36:03Z", "gh_stars": 64, "gh_open_issues_30d": 3, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:34.365010+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bank-vaults/bank-vaults','Bank Vaults: Un Cuchillo Suizo para HashiCorp Vault en Kubernetes','','2026',4,'Bank Vaults is a comprehensive, production-grade tool designed for managing, configuring, and injecting secrets from HashiCorp Vault on Kubernetes. It utilizes an operator-driven approach to inject secrets dynamically into Pod filesystems, completely removing secrets from the cluster API storage. It is the de facto standard for enterprises seeking secure vault management and dynamic secrets injection.','Go','Security Suite','Advanced',1,'online','manual','82cc5a2a6f76cd56252c4ff64ac9970ca7e76551690aa752a0ff821067b4d0a8',100.0,1.77903036526471495e+09,1,'2026-06-07T18:48:59Z',NULL,NULL,NULL,'["Security", "Secret Management", "Integrations"]','["[ENTERPRISE-STABLE]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-07T18:48:59Z", "gh_stars": 2254, "gh_open_issues_30d": 13, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:35.105940+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/banzaicloud/dast-operator','DAST operator','','2021',5,'An operator designed to run automated Dynamic Application Security Testing (DAST) scans against active services directly in the cluster environment. Integrates security assertions early inside staging deployment cycles. Note: Banzai Cloud projects are largely archived or integrated.','Go','Operator','Advanced',1,'online','manual','33d4bf37c50364106e93e54bbb6629dcda56920719fa4685e7a3b4d4bbc7e167',100.0,1.77902995067566895e+09,1,'2023-04-05T09:57:11Z',NULL,NULL,NULL,'["Security", "Vulnerability Scanning", "Automation Operators"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-04-05T09:57:11Z", "gh_stars": 194, "gh_open_issues_30d": 6, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:35.824939+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/banzaicloud/kafka-operator','Banzai Kafka Operator','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','ea86f213227b0ac761ebd947b56dd615515e6061bbfe225846dc1b0b7d55ac79',100.0,1.77903238887049508e+09,0,'2026-05-17T17:39:48.870495+02:00',NULL,NULL,NULL,'[]','[]','["docs/message-queue.md"]','[]','{}','{"duplicate_of": "https://github.com/banzaicloud/koperator", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:26:36.470969+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/banzaicloud/koperator','Banzai Kafka Operator','','2024',4,'Originally engineered by Banzai Cloud, Koperator is a highly automated operator framework designed to manage Kafka on Kubernetes with Cruise Control integrations. While mostly superseded by Strimzi, its historical innovations in granular scaling and fine-grained rebalancing influenced modern stateful Kubernetes abstractions.','Go','Kubernetes Operator','Advanced',1,'online','manual','a087e59f4d2d26c4447ca0a27691b91675be891624781a74d1248472b4f29042',100.0,1.7791304950298531e+09,1,'2025-03-11T08:20:50Z',NULL,NULL,NULL,'["Infrastructure", "Cloud Native Integration", "Kubernetes Operators", "Koperator"]','["[ENTERPRISE-STABLE]"]','["docs/message-queue.md"]','["message-queue.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-03-11T08:20:50Z", "gh_stars": 790, "gh_open_issues_30d": 66, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:26:37.196828+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/banzaicloud/thanos-operator','banzaicloud/thanos-operator 🌟','','2023',5,'Streamlines Thanos-based monitoring architectures by provisioning Query, Store, Compact, and Ruler resources. It manages historical metrics storage across dynamic environments.','Go','Operator','Advanced',0,'online','manual','a6b7f7dbe7bbbfe7aa995b7e9f3a74874903bfe55c21106c1ac3e19c8598d823',100.0,1.77903000099484896e+09,1,'2024-01-19T15:02:07Z',NULL,NULL,NULL,'["Observability", "Metrics", "Thanos Orchestration", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-01-19T15:02:07Z", "gh_stars": 283, "gh_open_issues_30d": 44, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:37.920413+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bbl/secretize','Secretize 🌟','','2020',2,'A lightweight command-line utility to convert raw secrets and environment variables directly into encrypted Kubernetes Secret manifests. Helpful for basic automation pipelines, although modern enterprise workflows typically favor external systems like Vault, External Secrets Operator, or sealed-secrets.','Go','Repository','Intermediate',0,'online','manual','aaaf92a6d099ab669769db6ea68561457fca407d63fcc8e7879ab54790ade02e',100.0,1.77903081013138508e+09,1,'2026-04-07T17:05:26Z',NULL,NULL,NULL,'["Cloud Native", "Security", "Secrets Management"]','["[COMMUNITY-TOOL]"]','["docs/kustomize.md"]','["kustomize.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-04-07T17:05:26Z", "gh_stars": 71, "gh_open_issues_30d": 3, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:38.624270+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bcicen/ctop','ctop 🌟','','2026',5,'ctop provides a real-time, top-like container metrics display for command-line resource tracking. Built in Go, it supports both Docker and runC runtimes, delivering an instant overview of CPU, memory, network, and disk I/O metrics across active containers. It serves as an essential tool for local container debugging and quick bare-metal performance triage without the overhead of heavy APM agents.','Go','Tool','Medium',0,'online','manual','81e1a5f56cdb13c1a00083103c9715c784866560a1c72dd62b5e15ed4f3a7c63',100.0,1.77903042302807402e+09,1,'2024-07-08T11:15:48Z',NULL,NULL,NULL,'["Infrastructure", "Containerization", "Monitoring"]','["[DE FACTO STANDARD]"]','["docs/docker.md"]','["docker.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2024-07-08T11:15:48Z", "gh_stars": 17764, "gh_open_issues_30d": 120, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:26:39.334332+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bee-travels/openapi-comment-parser','openapi-comment-parser','','2021',3,'A Node.js CLI tool and library that extracts JSDoc-style comments from source code files to generate valid OpenAPI (Swagger) specifications automatically, streamlining API contract maintenance during local development.','JavaScript','Tool','Intermediate',0,'online','manual','8d1464d334295697793b039a4e2b455df6768ddbc8c960dfda7e341ff0912c54',100.0,1.77903164815765595e+09,1,'2023-01-07T18:19:12Z',NULL,NULL,NULL,'["API Management", "API Documentation", "Tooling"]','["[COMMUNITY-TOOL]"]','["docs/api.md"]','["api.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2023-01-07T18:19:12Z", "gh_stars": 256, "gh_open_issues_30d": 45, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:40.060004+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/benc-uk/kubeview','KubeView 🌟','','2024',3,'A web-based, real-time visualization tool that renders Kubernetes API objects (Pods, Deployments, Services, Ingresses) and their relationships as a structured graphical map. It assists developers and administrators in diagnosing network routing and mapping configurations. In 2026, it is highly appreciated as a lightweight alternative to heavier cluster dashboards.','Go','Web Application','Medium',1,'online','manual','2611a5a8c8fd23c3f7733eb5190b56b0ae6a3e4d45fdcdf6762fefff4846d545',100.0,1.77902961363405799e+09,1,'2026-04-02T12:56:10Z',NULL,NULL,NULL,'["Operations", "Observability", "Visualization"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-04-02T12:56:10Z", "gh_stars": 1201, "gh_open_issues_30d": 10, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:40.782303+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/binhnguyennus/awesome-scalability','Awesome Scalability','','2023',5,'A legendary repository outlining the structural design patterns for massive, highly available backend systems. Covering microservices coordination, message brokers, caching schemas, and consensus databases, this represents the gold standard for backend systems architects.','Markdown','Awesome List','Advanced',1,'online','manual','d30178979d8ff158c75f71a54cc4423ffc9d6a06ad35eae9fb6b5ca1813913d2',100.0,1.7790341166719079e+09,1,'2026-01-04T03:51:47Z',NULL,NULL,NULL,'["Curation", "Awesome Lists", "Scalability"]','["[DE FACTO STANDARD]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-01-04T03:51:47Z", "gh_stars": 71720, "is_special": true, "gh_open_issues_30d": 23, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:41.481357+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/biosimulations/biosimulations',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','d94d1b623ca4b6c1534f95fe0ace391867b6c7dd180d664292d381c91f91c3ac',100.0,1779034560.76264,0,'2026-05-17T18:16:00.762640+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"gh_open_issues_30d": 133, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:26:42.199025+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/biosimulations/deployment','biosimulations/deployment','','2021',1,'A customized deployment framework tailored for specialized scientific computing operations and simulation workloads. It displays production architectures orchestrating complex computations, file systems, and databases on Kubernetes cluster topologies.','Helm','Deployment Configuration','Advanced',0,'online','manual','fa5a8e09045193aa8dcccdc5df9a0b16bb458338531eb5eaf3481c97d5190a86',100.0,1.77903142948325896e+09,1,'2026-06-02T17:56:29Z',NULL,NULL,NULL,'["Specialized Workloads", "Scientific Computing", "Simulation Infrastructure"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-02T17:56:29Z", "gh_stars": 3, "gh_open_issues_30d": 11, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:42.920530+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bit-cloner/ecrcp','ecrcp','','2020',0,'A lightweight utility designed to copy Docker images directly between different Amazon ECR registries without requiring local download-and-reupload bandwidth. Useful for cross-account deployments and regional migration tasks in complex enterprise AWS landing zones.','Go','Tool','Intermediate',0,'online','manual','7e2b0d2b0ff78890b32eab285b671fa3ba55196ec1919a0385b17e36a8784944',100.0,1.78173587618487596e+09,1,'2026-06-18T00:37:56.184876+02:00',NULL,NULL,NULL,'["Cloud Infrastructure", "AWS", "Container Registries"]','["[COMMUNITY-TOOL]"]','["docs/aws-containers.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "aws-containers.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:26:43.650488+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bit-cloner/kcg','kcg 🌟','','2021',1,'Kubernetes Context Generator (kcg) is a simple utility built to simplify generating custom kubeconfig profiles across multiple distinct environments. It remains a minor community project overshadowed by enterprise dynamic loaders.','Go','CLI Tool','Simple',0,'online','manual','5b3f063a63c487a1455c56e4d74e4214f90f370d82129b35e550a4ee325eabd6',100.0,1.77903201751916599e+09,1,'2021-04-29T17:01:09Z',NULL,NULL,NULL,'["Operations & UX", "CLI Plugins", "Context Switching"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2021-04-29T17:01:09Z", "gh_stars": 19, "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:44.360517+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bit-cloner/poke','POKE - Provision Opinionated Kubernetes on EKS','','2018',0,'Opinionated CLI provisioning script wrapper for configuring standardized Amazon EKS instances. This project has been classified as legacy due to extensive inactivity; modern teams should leverage Terraform or EKS Blueprints instead.','Go','Tool','Intermediate',0,'online','manual','N/A',100.0,1.78173606840856099e+09,1,'2026-06-18T00:41:08.408561+02:00',NULL,NULL,NULL,'["Cloud Native", "AWS EKS", "Cluster Provisioning"]','["[LEGACY]"]','["docs/managed-kubernetes-in-public-cloud.md"]','["managed-kubernetes-in-public-cloud.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:26:45.090915+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bitnami-labs/kubewatch','==bitnami-labs/kubewatch==','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','86a2aadcf296a2d87fd6d458ec25b123a24e9270ed6027c8971ef1649221acb8',100.0,1.77903204661207795e+09,0,'2026-05-17T17:34:06.612078+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"duplicate_of": "https://github.com/vmware-archive/kubewatch", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:26:45.749520+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bitnami/kubecfg','kubecfg','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','bb3d5954a600ef594c5c6906e8dd1523194c3c9b1259bd7c4aaf6dde5fc87f53',100.0,1.77903087446510601e+09,0,'2026-05-17T17:14:34.465106+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes.md"]','[]','{}','{"gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:26:46.398051+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/blendle/kubecrt','Kubecrt','','2021',1,'An archived, early-stage conversion utility built to convert Helm charts into raw Kubernetes manifests. This project has been fully superseded by standard native capabilities like ''helm template'' and is preserved solely as a historical reference of early declarative rendering strategies.','Go','CLI Tool','Beginner',0,'online','manual','a6c1de2a92799dde3536bdcc8a5926eaebfdcdd420f822b2c126cf487d276efa',100.0,1.77903307228802895e+09,1,'2023-03-07T02:59:09Z',NULL,NULL,NULL,'["Platform Engineering", "Kubernetes GitOps & Packaging", "Legacy Utilities"]','["[LEGACY]"]','["docs/helm.md"]','["helm.md"]','{}','{"gh_license": "ISC", "gh_pushed": "2023-03-07T02:59:09Z", "gh_stars": 113, "gh_open_issues_30d": 8, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:47.112557+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bloomberg/goldpinger','bloomberg/goldpinger 🌟','','2017',4,'An advanced connectivity troubleshooting tool that deploys as a cluster-wide DaemonSet to ping target peers. It generates visual mesh graphics depicting latency patterns, transport failures, and network partition faults.','Go','Kubernetes DaemonSet','Intermediate',1,'online','manual','5a906ec37741f8a82781e9e2c6196860fcb8b11251866231046ab986fc61ee7c',100.0,1.77903347981929802e+09,1,'2026-04-23T15:38:04Z',NULL,NULL,NULL,'["Observability & Performance", "Network Monitoring", "Mesh Connectivity"]','["[ENTERPRISE-STABLE]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-04-23T15:38:04Z", "gh_stars": 2707, "gh_open_issues_30d": 35, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:47.851334+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bloomberg/memray','github.com/bloomberg/memray 🌟🌟','','2025',5,'Curator Insight details Memray as Bloomberg''s advanced memory tracker for Python applications. Live Grounding confirms its preeminent role in tracking allocations inside complex microservice systems, excelling in profiling C/C++ extension boundaries where standard tools fall short.','Python / C++','Library / CLI','Advanced',1,'online','manual','9be53de03b150e560c31ef702fbf954ed599304266538a270b551a89cac52663',100.0,1.77903371626742911e+09,1,'2026-06-12T00:32:27Z',NULL,NULL,NULL,'["Software Engineering", "Python", "Memory Profiling"]','["[DE FACTO STANDARD]"]','["docs/python.md"]','["python.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T00:32:27Z", "gh_stars": 15115, "gh_open_issues_30d": 43, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:48.567569+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bluefrg/bitbucket-auto-merge','BitBucket Auto Merge','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','2536b6d8b2279bd5db3fd12b921818904b1e4467b3feddc8d7fcc2bafa1693f9',100.0,1.77903140185519289e+09,0,'2026-05-17T17:23:21.855193+02:00',NULL,NULL,NULL,'[]','[]','["docs/git.md"]','[]','{}','{"duplicate_of": "https://github.com/mikefrank-ca/bitbucket-auto-merge", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:26:49.222068+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bluxmit/alnoda-workspaces','github.com/bluxmit: Kubespray Workspace','','2024',5,'A containerized development sandbox and workspace designed to streamline the execution of Kubespray and Ansible playbooks, ensuring dependency insulation and tool consistency across local machine environments.','Docker/Shell','Repository','Intermediate',0,'online','manual','5afb0973ee4b9b75f27e799ba2e4c8cf97fc81f5dfd4e3396c9192984278d69a',100.0,1.77903036363115596e+09,1,'2023-07-30T07:49:59Z',NULL,NULL,NULL,'["Provisioning", "Ansible", "Development Environments"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-on-premise.md"]','["kubernetes-on-premise.md"]','{}','{"gh_license": "AGPL-3.0", "gh_pushed": "2023-07-30T07:49:59Z", "gh_stars": 1361, "gh_open_issues_30d": 8, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:49.929170+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bmaynard/kubevol','Kubevol 🌟','','2018',1,'A historical command-line utility for copying and transferring data between Kubernetes Persistent Volume Claims (PVCs). It is now considered legacy as native CSI snapshot capabilities and robust migration utilities have become standard.','Python','CLI Tool','Simple',0,'online','manual','6a7da73d86c4ed1ad1af29324d3711a520570bfdfdf6524f822389ea5fd37dd2',100.0,1.77903316298204708e+09,1,'2023-02-06T23:46:43Z',NULL,NULL,NULL,'["Storage", "Volume Management", "Data Migration"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "GPL-3.0", "gh_pushed": "2023-02-06T23:46:43Z", "gh_stars": 18, "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:50.687369+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bmuschko/ckad-crash-course','bmuschko/ckad-crash-course: Certified Kubernetes Application Developer (CKAD)'' Crash Course','','2021',5,'A repository housing comprehensive code examples, study guides, and hands-on exercises complementing Benjamin Muschko''s CKAD Crash Course. It focuses on application design, deployment configurations, security contexts, and troubleshooting methodologies essential to the Linux Foundation blueprint.','Shell','Reference','Intermediate',0,'online','manual','036f2eff18d8bcecd44deb08c1c2cac124913756765535397a7eca244f0a5334',100.0,1.78173622159774208e+09,1,'2026-06-18T00:43:41.597742+02:00',NULL,NULL,NULL,'["Training", "Certification", "CKAD"]','["[DE FACTO STANDARD]"]','["docs/kubernetes.md"]','["kubernetes.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:51.379501+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bmuschko/ckad-prep','bmuschko/ckad-prep','','2021',5,'An alternative preparation repository designed by Benjamin Muschko, offering structured sample solutions, resource manifests, and command-line blueprints to ace the CKAD exam. It isolates complex concepts like readiness/liveness probes, service definition, and rolling updates into easy-to-digest exercises.','YAML','Reference','Intermediate',0,'online','manual','a15629426df06a5e46361d07a2d7f517676aded3640b46ec2478916bfb3b7d7a',100.0,1.78173622166995501e+09,1,'2026-06-18T00:43:41.669955+02:00',NULL,NULL,NULL,'["Training", "Certification", "CKAD"]','["[DE FACTO STANDARD]"]','["docs/kubernetes.md"]','["kubernetes.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:26:52.065538+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bodywork-ml/bodywork-core','bodywork-ml/bodywork-core: Bodywork','','2022',2,'Bodywork acts as a pipeline orchestrator and deployment tool focused on shipping machine learning systems directly into Kubernetes. While currently seeing low developer activity, it remains a valuable conceptual blueprint for running serverless, stateful, and batch-oriented ML pipelines.','Python','Repository','Intermediate',1,'online','manual','b5aea08cb00293bda96f65851a9a2191c197bdc9e4ef09bee42e3ce3d88ad27c',100.0,1.77903086208310794e+09,1,'2023-08-18T06:42:48Z',NULL,NULL,NULL,'["MLOps", "Deployment", "Kubernetes Orchestration"]','["[COMMUNITY-TOOL]"]','["docs/mlops.md"]','["mlops.md"]','{}','{"gh_license": "AGPL-3.0", "gh_pushed": "2023-08-18T06:42:48Z", "gh_stars": 436, "gh_open_issues_30d": 21, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:52.798136+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/boltops-tools/kubes','kubes 🌟','','2023',2,'Kubes is a deployment framework that enables developers to build, prune, and deploy Docker images and Kubernetes manifests using clean, programmable configurations. It combines compilation and deployment phases into a unified workflow.','Ruby','CLI Tool','Intermediate',0,'online','manual','52c8136ce905cca1e7d8ac95bd4c0bb87c81ae772e3ebb054d4af61ff4445a7b',100.0,1.7790329228349049e+09,1,'2025-04-24T01:47:46Z',NULL,NULL,NULL,'["Application Lifecycle", "Deployment Frameworks", "Declarative Config"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-04-24T01:47:46Z", "gh_stars": 102, "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:53.552072+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/borchero/meerkat','Meerkat','','2023',5,'A dynamic networking operator designed to update and map external DNS routes. It reads internal networking resource allocations to dynamically register up-to-date hostname directories.','Go','Operator','Medium',0,'online','manual','da6037ae1fc02f0d734024ace407f92ad38ab9bb7c01686b260d10d32e54a420',100.0,1.77903055904853796e+09,1,'2020-12-31T13:19:58Z',NULL,NULL,NULL,'["Networking", "DNS", "Service Discovery", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2020-12-31T13:19:58Z", "gh_stars": 38, "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:54.243601+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/borchero/switchboard','borchero/switchboard: Switchboard','','2024',5,'Switchboard functions as a Kubernetes-native dynamic router and DNS management hub. It coordinates with global DNS service APIs to orchestrate routing policies, mapping live cluster ingress nodes automatically to external domain registrations.','Go','Repository','Intermediate',0,'online','manual','39bbd3ced60c70fc8cf5abb1d81edbc2300273c700e94076b63b58310ab7b47f',100.0,1.77902982123730707e+09,1,'2026-06-11T14:45:12Z',NULL,NULL,NULL,'["Networking", "DNS & Ingress", "Routing Controllers"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "kubernetes-operators-controllers.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-11T14:45:12Z", "gh_stars": 163, "gh_open_issues_30d": 8, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:54.974399+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bors-ng/bors-ng','Bors-ng: A merge bot for GitHub Pull Requests','','2026',4,'An Elixir-based implementation of the Bors merge coordinator. Uses a highly parallelized merge queue to batch, build, and test PR combinations, keeping the master branch strictly green. Live grounding notes that although currently archived, it remains a landmark model for merge queues.','Elixir','Tool','Advanced',1,'online','manual','48e086288c13aad192af64884162e420699e25d3b1cc8799cc1fd6a7b757a1f4',100.0,1.77903333942218589e+09,1,'2024-04-04T12:24:44Z',NULL,NULL,NULL,'["Software Engineering", "Version Control", "Automation Bots"]','["[ENTERPRISE-STABLE]", "[LEGACY]"]','["docs/git.md"]','["git.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-04-04T12:24:44Z", "gh_stars": 1531, "gh_open_issues_30d": 181, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:26:55.669730+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/boto/boto','Boto','','2018',4,'Curator Insight introduces the early Boto library for AWS programmatic scripting. Live Grounding confirms the library is fully deprecated and obsolete, replaced completely by Boto3; developers must prioritize migration to eliminate compatibility issues with modern AWS endpoints.','Python','Library','Intermediate',0,'online','manual','cd49b06eb73f2532fc7eaa4832fa7c174c39ae36458bb191e5e06e18e6aa3f92',100.0,1.77903382801839303e+09,1,'2024-01-12T23:46:55Z',NULL,NULL,NULL,'["Infrastructure", "AWS SDK", "Legacy Library"]','["[ENTERPRISE-STABLE]", "[LEGACY]"]','["docs/python.md"]','["python.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2024-01-12T23:46:55Z", "gh_stars": 6431, "gh_open_issues_30d": 1118, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:26:56.431310+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/box/kube-exec-controller','box/kube-exec-controller','','2018',5,'Curator Insight: Controller to restrict and audit shell execution inside Kubernetes pods. Live Grounding: Inactive for over five years. Superseded by newer ephemeral container mechanics, admission controllers (OPA/Kyverno), and modern service mesh execution boundaries.','Go','Code Repository','Advanced',0,'online','manual','ba337139c4a519fc7bbfdfbad8a550898ae48d5fe9f6d34e00f111de9566c220',100.0,1.77903114144634294e+09,1,'2021-12-02T07:48:57Z',NULL,NULL,NULL,'["Security", "Policy & Admission Control", "Runtime Security", "Legacy Tools"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-security.md", "docs/kubernetes-tools.md"]','["kubernetes-security.md", "kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2021-12-02T07:48:57Z", "gh_stars": 126, "gh_open_issues_30d": 2, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:57.134325+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/box/kube-iptables-tailer','github.com/box/kube-iptables-tailer','','2026',3,'Kube-iptables-tailer is a specialized controller that parses system-level kernel iptables packet drop logs and maps them directly to active Kubernetes Pods. By resolving low-level packet drops to recognizable workload names, it simplifies network policy auditing and connectivity troubleshooting. This utility is ideal for platform teams managing strict, multi-layer networking environments.','Go','Network Controller','Advanced',0,'online','manual','c354ad86a39a806991da9793087a82af802fc0958dab8bdaccc520690099c0c0',100.0,1779031808.40008,1,'2024-08-12T08:40:33Z',NULL,NULL,NULL,'["Networking", "iptables Analysis", "Troubleshooting"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-08-12T08:40:33Z", "gh_stars": 549, "gh_open_issues_30d": 9, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:26:57.889598+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bpftrace/bpftrace','bpftrace','','2018',5,'A high-level tracing language and diagnostic toolkit built on top of the Linux eBPF subsystem. It allows system engineers to dynamically probe kernel modules, trace memory allocations, and analyze latency. Live Grounding shows that bpftrace is a core diagnostic pillar in production engineering.','C++','Tool','Advanced',0,'online','manual','37f422e9795c080231318d3d71659a3fbac0d01be532fe49ebe9bf563141ef75',100.0,1.77913049494506096e+09,1,'2026-06-13T15:56:16Z',NULL,NULL,NULL,'["Infrastructure & Operations", "Observability", "Kernel Tracing"]','["[DE FACTO STANDARD]"]','["docs/linux.md"]','["linux.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T15:56:16Z", "gh_stars": 10160, "gh_open_issues_30d": 248, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:26:58.625742+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bregman-arie/devops-exercises','bregman-arie/devops-exercises 🌟','','2026',5,'A massive curated repository containing thousands of questions, answers, and hands-on exercises covering Linux, Jenkins, Docker, Kubernetes, Ansible, Terraform, AWS, and system design. (Live Grounding: With over 82k stars, it stands in 2026 as the preeminent resource for preparing systems engineers and validating platform architecture skills).','Python/YAML','Reference Guide','Intermediate',1,'online','manual','74f02f679be571f5cbde19766052dcc39fdac290a01354dc045033912e6304c1',100.0,1.77903210442080307e+09,1,'2025-12-27T14:22:30Z',NULL,NULL,NULL,'["DevOps & Platform Engineering", "Interview Preparation", "Reference Guides"]','["[DE FACTO STANDARD]", "[GUIDE]"]','["docs/demos.md", "docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md", "demos.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2025-12-27T14:22:30Z", "gh_stars": 82758, "is_special": true, "gh_open_issues_30d": 47, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:26:59.331951+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bregman-arie/devops-resources','==bregman-arie/devops-resources== 🌟','','2026',0,'A massive collection of operational guides, cheat sheets, books, and courses covering Kubernetes ecosystems, continuous delivery pipelines, configuration engines, and cloud design.','Markdown','Awesome List','Intermediate',0,'duplicate','manual','9ff97eac6df2ac9efd2f8276a5c9580d0a37f227613f7113e5741f45e51d52ea',100.0,1781736123.10989,1,'2026-06-18T00:42:03.109890+02:00',NULL,NULL,NULL,'["Infrastructure & Operations", "DevOps & SRE Engineering", "Educational Resources"]','["[COMMUNITY-TOOL]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "is_special": true, "duplicate_of": "https://github.com/bregman-arie/devops-exercises", "gh_open_issues_30d": 28, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:27:00.023324+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/brennerm/uptimerobot-operator','uptimerobot-operator','','2023',5,'Synchronizes current routing profiles with the UptimeRobot API. It dynamically configures exterior synthetic latency testing targets as new ingresses scale up or out.','Go','Operator','Medium',0,'online','manual','019ed7ba4756bb460e0fb2c270bbffd3c8e917906e4007d7d6397ce57c2e01fe',100.0,1.7790330513467431e+09,1,'2023-11-14T16:27:12Z',NULL,NULL,NULL,'["Observability", "Monitoring", "External Integration", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2023-11-14T16:27:12Z", "gh_stars": 60, "gh_open_issues_30d": 6, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:00.736744+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bridgecrewio/AirIAM','bridgecrewio/AirIAM','','2023',2,'AirIAM bridges the gap between manual runtime configuration and declarative postures by parsing active AWS IAM deployments and converting them to structured Terraform modules. It leverages analytics to isolate unused roles and design clean, least-privilege configurations. Platform engineers utilize it to refactor legacy brownfield permissions into audited GitOps structures.','Python','CLI Tool','Advanced',0,'online','manual','09ac371fb9ddc2a4b26fbab44ac8cee1b1d19e6581f91e3655a4ee002aea67b4',100.0,1779029341.51882,1,'2025-03-18T19:37:06Z',NULL,NULL,NULL,'["Infrastructure as Code", "Cloud Security", "IAM Translation"]','["[LEGACY]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-03-18T19:37:06Z", "gh_stars": 824, "gh_open_issues_30d": 35, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:27:01.479405+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bridgecrewio/checkov','Checkov 🌟','','2026',5,'Checkov is a static code analysis tool for Infrastructure as Code (IaC) that scans Kubernetes manifests, Helm charts, Terraform, and cloud-provider templates for misconfigurations and security risks, acting as a critical CI/CD gatekeeper.','Python','Security Scanner','Intermediate',0,'online','manual','98f69842258ecb7f450daae2e657279f373b3e71ba9dbd34c8a40e24dcdd02df',100.0,1.77903217795133209e+09,1,'2026-06-11T23:29:10Z',NULL,NULL,NULL,'["Security & Identity", "Compliance & Auditing", "Static Code Analysis"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-11T23:29:10Z", "gh_stars": 8790, "gh_open_issues_30d": 138, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:27:02.196053+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bridgecrewio/helm-scanner','helm-scanner','','2023',0,'A lightweight template vulnerability scanner that evaluates Helm manifests for potential security drift, secrets leaks, and misconfigurations prior to deployment. Often integrated early in pipeline testing stages.','Go','CLI Tool','Intermediate',0,'online','manual','e886ce99a0b1d192eacdce6179a4ba3c5be951efe0cab97126043fb783af6220',100.0,1.78173596099319291e+09,1,'2026-06-18T00:39:20.993193+02:00',NULL,NULL,NULL,'["Platform Engineering", "Kubernetes GitOps & Packaging", "Security & Auditing"]','["[COMMUNITY-TOOL]"]','["docs/helm.md"]','["helm.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:02.960092+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bryanl/sheaf','sheaf','','2021',5,'A packaging utility designed to compile Kubernetes application manifests and associated container image layers into standalone relocatable archives. Crucial for provisioning air-gapped systems or on-prem environments. The project is archived, with users directed to standard solutions like Carvel or Helm.','Go','Tool','Medium',0,'online','manual','f4297ddb49eb511e4a452c5b03a9cb0d21652bf0840a5e689d129dcd030cf413',100.0,1.77903095497125911e+09,1,'2020-07-17T14:43:40Z',NULL,NULL,NULL,'["Application Delivery", "Packaging", "Air-gapped Deployment"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2020-07-17T14:43:40Z", "gh_stars": 30, "gh_open_issues_30d": 12, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:27:03.676992+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/buger/jsonparser','buger/jsonparser','','2025',5,'An ultra-performant, zero-allocation Go JSON parser that bypasses reflection and standard serialization libraries. Reaches nested values directly from byte slices, outperforming standard library structures by up to 10x in high-throughput data pipelines.','Go','Library','High',0,'online','manual','2244dce6b7f1cfbc9b2734caf6103dc227e547204b25653449b2e67beeb4102a',100.0,1.77902924330012393e+09,1,'2026-05-03T11:10:14Z',NULL,NULL,NULL,'["Data Architecture", "JSON & YAML Serialization", "Performance & Parsing"]','["[DE FACTO STANDARD]"]','["docs/yaml.md"]','["data-and-advanced-analytics.md", "yaml.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-05-03T11:10:14Z", "gh_stars": 5629, "is_special": true, "gh_open_issues_30d": 68, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:27:04.385290+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/burrsutter/9stepsawesome','github: burrsutter/9stepsawesome','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','2dda5a7dbd683b5f7987a254ac47d2b08755f0af73d93fcdb0c36f10ad6f571d',100.0,1.77903279351400399e+09,1,'2026-05-17T17:46:33.514004+02:00',NULL,NULL,NULL,'[]','[]','["docs/openshift.md"]','[]','{}','{"gh_open_issues_30d": 4, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:05.104562+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/bytebase/bytebase','bytebase/bytebase','','2021',5,'Open-source, web-based database schema change and collaboration tool engineered for DevOps teams and DBAs. Features GitOps-driven workflow mechanics, automated visual SQL review, and centralized security compliance policies to govern multi-engine environments.','Go','Software','Advanced',1,'online','manual','dac4c79ad7a36b978bd40c9488b8c26ac8289977234555e87c7d984d001cc0e1',100.0,1.77903198337984299e+09,1,'2026-06-12T07:19:02Z',NULL,NULL,NULL,'["Database Architecture", "Database GitOps", "Schema Management"]','["[DE FACTO STANDARD]"]','["docs/liquibase.md"]','["liquibase.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-12T07:19:02Z", "gh_stars": 14143, "gh_open_issues_30d": 149, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:27:05.830236+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/c0dyhi11/k3s-linkerd','Global K3s Deployment on Packet Baremetal 🌟','','2020',0,'A global multi-region deployment playbook demonstrating K3s cluster instantiation across Packet Baremetal infrastructure, coupled with the Linkerd service mesh. Optimizes edge routing latency and inter-node networking security.','Shell','Repository','Advanced',0,'online','manual','01640813ce20a74bfa917c6f312443d87d58ecca493ab67478623e7f79309bbc',100.0,1.77903456060387611e+09,1,'2020-04-12T04:12:17Z',NULL,NULL,NULL,'["Cloud Infrastructure", "Bare Metal & Multi-Cloud", "Kubernetes Distributions"]','["[COMMUNITY-TOOL]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2020-04-12T04:12:17Z", "gh_stars": 9, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:06.508543+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cakehappens/seaworthy','seaworthy: A CLI to verify #Kubernetes resource health !! 🌟','','2021',1,'A testing-focused CLI utility used to run health checks and smoke tests against newly deployed Kubernetes resources. It validates endpoints, ingress routing, and pod states match expected operating metrics before promoting releases.','Go','CLI Verification Tool','Simple',0,'online','manual','13613895efb1f252ebf742e03ce27c20811105d3ab39cd0b5f0332e030409444',100.0,1.77903114311227297e+09,1,'2020-08-10T01:10:04Z',NULL,NULL,NULL,'["Application Lifecycle", "Testing & Verification", "Health Checks"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2020-08-10T01:10:04Z", "gh_stars": 39, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:07.264635+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/caldito/soup','caldito/soup','','2021',1,'Soup is a small open-source CLI tool designed to extract, analyze, and report on the container image tags actively running across a Kubernetes cluster. It aids operations teams in identifying legacy or unpinned image tags, although modern comprehensive policy engines like Kyverno have largely subsumed its utility.','Go','CLI Tool','Medium',0,'online','manual','3ae1c1f73278dacc640a6963eaddb565d6ae116f3322ba070c03c08347d75fe1',100.0,1.77903057309451293e+09,1,'2022-04-19T16:53:22Z',NULL,NULL,NULL,'["Operations", "Security", "Image Scanning"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2022-04-19T16:53:22Z", "gh_stars": 40, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:07.995361+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/calvin-puram/awesome-kubernetes-operator-resources','github.com/calvin-puram: Awesome Kubernetes Operator Resources','','2023',5,'A specialized guide indexing SDKs, patterns, and source repositories for writing Kubernetes Operators. It provides concrete references on the Operator SDK, Kubebuilder framework, and controller-runtime systems, allowing platform developers to build automated, stateful management controllers.','Markdown','Awesome List','Advanced',1,'online','manual','713b023d78076df0736c083ea7910ceaa405c6373f07b36e45f409fc7aae2b36',100.0,1.77903331400957298e+09,1,'2026-04-25T08:57:34Z',NULL,NULL,NULL,'["Curation", "Awesome Lists", "Operators"]','["[DE FACTO STANDARD]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "CC0-1.0", "gh_pushed": "2026-04-25T08:57:34Z", "gh_stars": 245, "is_special": true, "gh_open_issues_30d": 3, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:08.720062+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/carlosedp/cluster-monitoring','Cluster Monitoring stack for ARM / X86-64 platforms','','2025',5,'A specialized telemetry suite crafted for physical, edge, and multi-architecture Kubernetes clusters running on ARM or x86 systems. Extends modern operators to resource-constrained environments.','Jsonnet','Repository','Advanced',1,'online','manual','a3d3a6a736de50fc3b1505948aadfbaea2fb00071f2911992a29bf71cf186969',100.0,1.77903295041548299e+09,1,'2025-08-22T22:59:09Z',NULL,NULL,NULL,'["Cloud Native Platforms", "Kubernetes", "Multi-Arch Telemetry"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md", "docs/prometheus.md"]','["kubernetes-tools.md", "prometheus.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2025-08-22T22:59:09Z", "gh_stars": 754, "gh_open_issues_30d": 4, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:09.432997+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/carlosedp/lbconfig-operator','github.com/carlosedp/lbconfig-operator: External Load Balancer Operator'' 🌟','','2023',1,'Operator that dynamically provisions and configures external hardware/software load balancers (such as F5 BIG-IP or HAProxy) based on Kubernetes ingress or service resource updates.','Go','Repository','Advanced',0,'online','manual','0cb420e6987d09ec35c12f2e9945f9ff24a337a8f85a78f5f8277b71b8086b83',100.0,1.77902956995955204e+09,1,'2026-03-01T22:30:31Z',NULL,NULL,NULL,'["Orchestration", "Kubernetes", "Networking"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-03-01T22:30:31Z", "gh_stars": 63, "gh_open_issues_30d": 12, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:27:10.146150+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/carlosonunez/k8s-harness','k8s-harness 🌟','','2018',0,'A legacy testing framework designed to rapidly provision and tear down ephemeral Kubernetes development harnesses. While useful in early CI, modern virtual cluster setups like vcluster or Kind provide much higher speed and fidelity.','Ruby','Testing Framework','Simple',0,'online','manual','43219a1713ceb71f2d79b4e51ebdee330214d0682945f5bb7378f8347b210c49',100.0,1.78173604680598592e+09,1,'2026-06-18T00:40:46.805986+02:00',NULL,NULL,NULL,'["Application Lifecycle", "Testing & Verification", "Local Harnesses"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:10.873571+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/carlosonunez/kubernetes-the-hard-way-on-azure','Kubernetes the Hard Way: Azure Edition','','2021',0,'A localized adaptation of ''Kubernetes the Hard Way'' targeting Azure cloud services. Focuses on manual creation of Virtual Networks (VNets), Network Security Groups (NSGs), Azure load balancers, and systemd service profiles to build a transparent control plane.','Markdown','Repository','Advanced',0,'duplicate','manual','1ae1465f5fd177aebc32e70d65e9efac02258fce8fd7f6572830dc76e371a71f',100.0,1.78173602649203801e+09,1,'2026-06-18T00:40:26.492038+02:00',NULL,NULL,NULL,'["Provisioning", "Bootstrapping", "Azure"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-on-premise.md"]','["kubernetes-on-premise.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "duplicate_of": "https://github.com/prabhatsharma/kubernetes-the-hard-way-aws", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:11.592056+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cavaliercoder/vpc-free','github.com/cavaliercoder/vpc-free','','2024',5,'A specialized tool designed to scan AWS VPC configurations and identify unused IP subnets and available address spaces. It simplifies subnet planning and CIDR allocation by visually exposing gaps in current IP management matrices. Essential for large enterprises implementing zero-trust network segmentations or multi-region Transit Gateway routing.','Go','Repository','Intermediate',0,'online','manual','6642a03abac705fe10c8ad93cebb687fa4f56c9e9f888f675c97c706d4bff7ac',100.0,1779030538.95954,1,'2019-06-26T00:24:45Z',NULL,NULL,NULL,'["Cloud Platform", "AWS Infrastructure", "Networking"]','["[DE FACTO STANDARD]"]','["docs/aws-tools-scripts.md"]','["aws-tools-scripts.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2019-06-26T00:24:45Z", "gh_stars": 59, "gh_open_issues_30d": 1, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:12.317158+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cdk8s-team/cdk8s','cdk8s','','2026',5,'The GitHub repository containing the core source code for CDK8s. It allows developers to model Kubernetes resources as structured code in TypeScript, Python, Java, or Go. It features full support for custom-generated CRDs, letting platform teams build clean, reusable configuration libraries.','TypeScript','Tool','Intermediate',0,'online','manual','4e4e6aa8ff97716ee088cd364fca4f83a29ce3f6ce9958ffd8b73eae54db2a2b',100.0,1.77903024906896495e+09,1,'2026-06-13T10:24:27Z',NULL,NULL,NULL,'["Configuration", "CDK & DSLs", "CDK8s"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-client-libraries.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "kubernetes-client-libraries.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T10:24:27Z", "gh_stars": 4823, "gh_open_issues_30d": 73, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:27:13.035907+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/ceph/ceph','Ceph: A Distributed Object, Block, and File Storage Platform','','2026',5,'An enterprise-grade, highly scalable distributed storage ecosystem providing object, block, and file system storage on a single unified cluster. Widely adopted as the primary storage layer backing cloud platforms and Kubernetes orchestration (Rook-Ceph).','C++','Infrastructure','Advanced',0,'online','manual','5fccdfde04b9481e08f59d6cf81834cadee87cc848f31d62c280766005d71925',100.0,1.77903209175809407e+09,1,'2026-06-13T22:54:53Z',NULL,NULL,NULL,'["Cloud Infrastructure & Orchestration", "Storage & Databases", "Distributed Block Storage"]','["[DE FACTO STANDARD]"]','["docs/aws-storage.md", "docs/cloud-asset-inventory.md", "docs/kubernetes-storage.md"]','["aws-storage.md", "cloud-asset-inventory.md", "kubernetes-storage.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2026-06-13T22:54:53Z", "gh_stars": 16707, "gh_open_issues_30d": 1193, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:27:13.749026+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cert-manager/approver-policy','github.com/cert-manager: Policy Approver','','2024',5,'The cert-manager approver-policy extension code repository. Intercepts CertificateRequest resources before submission, evaluating requested commonNames, SANs, and key constraints against user-defined security guidelines.','Go','Code Repository','Advanced',0,'online','manual','331ac73ab670293dd3c50c8119d2b9707a74e38e0b59e4fdd59484c9f5a7c8c3',100.0,1.77913049498746395e+09,1,'2026-06-13T09:32:17Z',NULL,NULL,NULL,'["Security", "PKI & Certificates", "cert-manager", "Access Control"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-security.md"]','["kubernetes-security.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T09:32:17Z", "gh_stars": 90, "gh_open_issues_30d": 15, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:27:14.471701+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cert-manager/cert-manager','==cert-manager/cert-manager==','','2026',5,'Consolidated record of the cert-manager repository, automating certificate lifecycles to guarantee encrypted transport paths between internal microservice runtimes.','Go','Code Repository','Advanced',0,'online','manual','d2ec3a0583b0d999c41e17df6d4ddf7762a9bc25a361a2a78db3913473d65e6f',100.0,1.77903153830299091e+09,1,'2026-06-14T01:07:13Z',NULL,NULL,NULL,'["Security", "PKI & Certificates", "cert-manager"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-security.md"]','["registries.md", "kubernetes-security.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-14T01:07:13Z", "gh_stars": 13859, "gh_open_issues_30d": 236, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:27:15.204416+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cert-manager/policy-approver','github.com/cert-manager: Policy Approver','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','77377c86ef3a506463e841cfd92ae4019df552e035539b54900d47def409cf60',100.0,1.77903392232206392e+09,0,'2026-05-17T18:05:22.322064+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-security.md"]','[]','{}','{"duplicate_of": "https://github.com/cert-manager/approver-policy", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:15.841567+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/chaos-mesh/chaos-mesh','Chaos Mesh','','2025',5,'A robust, CNCF-incubating chaos engineering platform designed for cloud-native ecosystems. Orchestrates extensive failure injections—spanning network partitions, node failures, system call manipulations, and JVM faults—allowing developers to systematically evaluate Kubernetes stability under load.','Go','SaaS Platform / Orchestrator','Advanced',1,'online','manual','dda04b09c01fae29e8fd45959bbd630e73f4e1333799a464731c56bbd42e7e70',100.0,1.77902988401929688e+09,1,'2026-06-12T09:21:53Z',NULL,NULL,NULL,'["Resilience", "Chaos Engineering", "Enterprise Platforms"]','["[DE FACTO STANDARD]"]','["docs/chaos-engineering.md"]','["chaos-engineering.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-12T09:21:53Z", "gh_stars": 7747, "gh_open_issues_30d": 552, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:27:16.545786+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/chaosblade-io/chaosblade','chaosblade','','2025',5,'Alibaba''s multi-platform chaos engineering tool designed to inject faults across various levels of a system. Specifically targets OS resource exhaustion, network degradation, disk I/O bottlenecks, and deep application-layer faults for languages like Java, Go, and C++.','Go','Software Utility','Advanced',1,'online','manual','0b7a4de55c0e224e822bb577e5c593e6911d47a8862693ad954b36a431baf3a7',100.0,1.77903453145563197e+09,1,'2026-06-09T16:23:13Z',NULL,NULL,NULL,'["Resilience", "Chaos Engineering", "Kubernetes Tools"]','["[DE FACTO STANDARD]"]','["docs/chaos-engineering.md"]','["chaos-engineering.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-09T16:23:13Z", "gh_stars": 6352, "gh_open_issues_30d": 347, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:27:17.277171+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/charlax/professional-programming','github.com/charlax/professional-programming: A collection of full-stack'' resources for programmers 🌟','','2026',5,'A world-class resource collection addressing the operational, psychological, and architectural aspects of professional software engineering. Spans topics from system design and API robustness to career planning and team mechanics. An essential reading reference for engineering leads and staff architects.','N/A','Repository','Intermediate',0,'online','manual','f254cf680e5e80c3e9c6b39c4ed3c5cf84643f79de26334daab3f270700bb54c',100.0,1.77903223244468498e+09,1,'2026-06-08T00:03:16Z',NULL,NULL,NULL,'["Developer Tools", "Methodology", "Resources"]','["[DE FACTO STANDARD]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-08T00:03:16Z", "gh_stars": 51109, "is_special": true, "gh_open_issues_30d": 3, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:17.984307+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/che-samples','github.com/che-samples','','2024',0,'Official template repository containing devfile configurations and cloud-native project workspace definitions for Eclipse Che. Accelerates development setup by declaring containers, tools, and runtimes as code.','YAML','Repository','Intermediate',0,'online','manual','61d5115f86c523012e35f4fe3b9fd1b3fd5b2a607c286dbc62152f7b9e638350',100.0,1.77902948739423704e+09,1,'2026-05-17T16:51:27.394237+02:00',NULL,NULL,NULL,'["DevSecOps & IDEs", "Eclipse Che", "Cloud IDE Templates"]','["[COMMUNITY-TOOL]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/chen-keinan/mesh-kridik','chen-keinan/mesh-kridik','','2021',1,'A security auditing and compliance verification tool for cloud-native Service Meshes, validating configurations against strict benchmark rulesets. It supports meshes like Istio, Linkerd, and Consul.','Go','Security Tool','High',1,'online','manual',NULL,NULL,1.7793885983602519e+09,0,'2024-12-09T16:56:32Z',NULL,NULL,NULL,'["Security", "Service Mesh Security", "Audit Tools"]','["[COMMUNITY-TOOL]"]','[]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-12-09T16:56:32Z", "gh_stars": 27}');
INSERT INTO "resources" VALUES('https://github.com/chenjd/terraform-101','==https://github.com/chenjd/terraform-101== 🌟','','2021',0,'A highly practical beginner-level code index focusing on Terraform basics, state management, module syntax, and provider declarations for deploying cloud infrastructure safely.','HCL','Repository','Beginner',0,'online','manual','125f6c2be505c4d1e2cb2932a9f8bec5e1e02cee514f6c61eb8c31bdefc0a857',100.0,1.7817359212821989e+09,1,'2026-06-18T00:38:41.282199+02:00',NULL,NULL,NULL,'["Infrastructure as Code", "Terraform Ecosystem", "Fundamental Syntaxes"]','["[COMMUNITY-TOOL]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/chenjiandongx/kubectl-count','github.com/chenjiandongx/kubectl-count','','2023',0,'A fast and minimal kubectl plugin designed to return resource counts grouped by namespace or specific kinds. It targets fast CLI inspections, though modern system administrators frequently replace it with k9s configurations or basic custom scripting.','Go','CLI Plugin','Beginner',0,'online','manual','01617c6a4198156e3ce2bb0ec9551eedf2c5993e7e7c2353355563c2340b99a8',100.0,1.77902947574851202e+09,1,'2022-08-02T06:39:24Z',NULL,NULL,NULL,'["Operations", "CLI Tooling", "Resource Auditing"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2022-08-02T06:39:24Z", "gh_stars": 39}');
INSERT INTO "resources" VALUES('https://github.com/chenjiandongx/kubectl-images','kubectl-images','','2023',5,'A CLI plugin designed to scan, inventory, and display the exact container images actively deployed inside a cluster namespace. Essential for identifying outdated registry links and resolving missing image version tags.','Go','CLI Plugin','Beginner',0,'online','manual','13e98236ba3c418d71801ffe86340015965970737745a3ec9f6478e2aac5fd64',100.0,1.77903184483116698e+09,1,'2026-03-19T03:56:28Z',NULL,NULL,NULL,'["Observability", "CLI Utilities", "Image Security"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-03-19T03:56:28Z", "gh_stars": 277}');
INSERT INTO "resources" VALUES('https://github.com/chmouel/kss','KSS - Kubernetes pod status on steroid','','2023',5,'A CLI utility designed to enhance pod status visibility, extracting high-fidelity information from Kubernetes clusters in real-time. It visualizes container terminations, restarts, and readiness probes with rich colors and status indicators, addressing the visual limitations of native `kubectl get pods`.','Rust','CLI Tool','Intermediate',0,'online','manual','c2896a9e8114fec52c2449b0bcaa1ade652c55a80699d08f20de4fc16b6228ac',100.0,1.77903035060924506e+09,1,'2026-01-31T17:46:22Z',NULL,NULL,NULL,'["Observability", "CLI Utilities", "Pod Status"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-01-31T17:46:22Z", "gh_stars": 43}');
INSERT INTO "resources" VALUES('https://github.com/chr-fritz/csi-sshfs','chr-fritz/csi-sshfs','','2019',1,'A Container Storage Interface (CSI) plugin designed to mount remote directories securely over SSHFS/SFTP. It enables microservice instances to read and write directly to legacy external filesystems without custom FTP setups.','Go','CSI Driver','Advanced',0,'online','manual','a158dd061ff0926b72df24dc12c73014a8233f0f9c7485cb7cfc93ed9b4959a6',100.0,1779030025.31795,1,'2020-01-29T21:18:12Z',NULL,NULL,NULL,'["Storage & Data", "CSI Plugins", "Remote Mounting"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2020-01-29T21:18:12Z", "gh_stars": 30}');
INSERT INTO "resources" VALUES('https://github.com/chrislusf/seaweedfs','chrislusf/seaweedfs','','2020',1,'A fast, highly scalable distributed storage engine that provides file and object hosting. This repository features native integration paths, enabling microservice workloads to access high-throughput file structures with rapid lookup times.','Go','Storage Platform','Advanced',0,'online','manual','de61a9b3d109057426969c8a7d760944d3795ffa627822a5be380f0c61eb3e90',100.0,1.7790314650983591e+09,1,'2026-06-08T06:18:52Z',NULL,NULL,NULL,'["Storage & Data", "Distributed File Systems", "Object Storage"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-08T06:18:52Z", "gh_stars": 26}');
INSERT INTO "resources" VALUES('https://github.com/chrisns/cosign-keyless-demo','chrisns/cosign-keyless-demo: Cosign Keyless GitHub Action Demo','','2021',2,'A practical reference repository showcasing how to perform keyless container image signing inside GitHub Actions using Cosign. The blueprint demonstrates authenticating against Fulcio and Rekor using GitHub''s temporary identity tokens. Essential for platform engineers looking to implement secure-by-default CI/CD pipelines.','Go','Repository','Intermediate',1,'online','manual','d9b118c22b91aa81144ead0562da99a0ed5acfe3abf3c239535a8f8905b64325',100.0,1.77903342220426511e+09,1,'2023-01-31T22:31:51Z',NULL,NULL,NULL,'["Security", "Supply Chain Security", "Keyless Signing"]','["[COMMUNITY-TOOL]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2023-01-31T22:31:51Z", "gh_stars": 14}');
INSERT INTO "resources" VALUES('https://github.com/chrisns/k8s-opa-boilerplate','chrisns/k8s-opa-boilerplate','','2020',1,'A minimal, highly instructional boilerplate repository demonstrating Open Policy Agent (OPA) integration inside Kubernetes using Gatekeeper. Helps bootstrap policy-as-code paradigms to secure deployments and enforce structural admission controls.','Rego','Repository','Advanced',0,'online','manual','8a0b016f5f851d2b242d57ece34c8c4e59db74b3c5f76f5453c0f8fe58d69c84',100.0,1779033773.44563,1,'2026-06-02T18:15:17Z',NULL,NULL,NULL,'["Cloud Native", "Security", "Policy Enforcement"]','["[COMMUNITY-TOOL]"]','["docs/demos.md", "docs/kustomize.md"]','["kustomize.md", "demos.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-02T18:15:17Z", "gh_stars": 18}');
INSERT INTO "resources" VALUES('https://github.com/christopherhein/awesome-eks','christopherhein/awesome-eks: Awesome EKS','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','93a9e5db618cb592b0f77817d16fab80c32bf37548e360f8f15b7b0d147ee9df',100.0,1.77903114718230199e+09,0,'2026-05-17T17:19:07.182302+02:00',NULL,NULL,NULL,'[]','[]','["docs/other-awesome-lists.md"]','[]','{}','{"duplicate_of": "https://github.com/jimmyraywv/awesome-eks"}');
INSERT INTO "resources" VALUES('https://github.com/cicdops/awesome-ciandcd','Awesome CI/CD 🌟','','2025',3,'An extensive curated list capturing modern DevOps platforms, delivery engines, automated linting, security scanning, and container validation tools, acting as a foundational technical index for engineering teams.','Markdown','Repository','Intermediate',1,'online','manual','5a5b7c5fa80a5882bee04d962414e0db0c1332043f674bdac2b3db4bd7a9fbe5',100.0,1.7790310263363161e+09,1,'2026-04-14T12:29:54Z',NULL,NULL,NULL,'["Deployment & Delivery", "CI/CD & Delivery", "Resource Portals"]','["[COMMUNITY-TOOL]"]','["docs/cicd.md", "docs/other-awesome-lists.md"]','["cicd.md", "other-awesome-lists.md"]','{}','{"gh_license": "GPL-2.0", "gh_pushed": "2026-04-14T12:29:54Z", "gh_stars": 1999, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/cilium/tetragon','Tetragon (Cilium)','','2022',5,'An eBPF-powered security observability and runtime enforcement platform. It monitors and blocks system events at the kernel level, providing granular process execution, network activity, and file system audit streams with zero container overhead.','Go','platform','Advanced',1,'online','manual','68c450ba0fe25e40514df915223a5935099e45961a55a65fa4f4551626c2b41d',100.0,1779031109.34794,1,'2026-06-14T09:06:49Z',NULL,NULL,NULL,'["Observability & Monitoring", "eBPF Runtime Enforcement", "Tetragon Platform"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-security.md"]','["kubernetes-security.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-14T09:06:49Z", "gh_stars": 4749}');
INSERT INTO "resources" VALUES('https://github.com/cinhtau/sonatype-nexus-waffle','github.com/cinhtau/sonatype-nexus-waffle','','2018',5,'An archived community plugin targeting Windows Active Directory single sign-on (SSO) authentication within Sonatype Nexus. Live grounding confirms it is obsolete, unmaintained, and legacy. Useful primarily as vintage integration code, modern Nexus deployments utilize modern OIDC and LDAP endpoints.','Java','Repository','Advanced',0,'online','manual','c430ab3d6f9179affd62ed9be3ed0189f8b99d15e900eeb970e8a68664b314db',100.0,1.77902961371268296e+09,1,'2019-05-17T19:12:19Z',NULL,NULL,NULL,'["Artifact Management", "Package Repositories", "Nexus Integrations"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/registries.md"]','["registries.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2019-05-17T19:12:19Z", "gh_stars": 6}');
INSERT INTO "resources" VALUES('https://github.com/circa10a/terraform-provider-mailform','github.com/circa10a/terraform-provider-mailform','','2021',1,'A niche experimental Terraform provider for the Mailform SaaS API. Serves as a great programmatic example for developers seeking to build customized provider architectures using standard SDK specifications.','Go','Provider','Intermediate',0,'online','manual','179c6253105400bd3692883c5767318d8a344c169d207f1887df3eb388847fae',100.0,1.77903215769201803e+09,1,'2025-11-12T03:06:44Z',NULL,NULL,NULL,'["Infrastructure as Code", "SaaS Integration", "Providers"]','["[EMERGING]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_license": "MPL-2.0", "gh_pushed": "2025-11-12T03:06:44Z", "gh_stars": 14}');
INSERT INTO "resources" VALUES('https://github.com/cisagov/log4j-scanner','==cisagov/log4j-scanner==','','2021',0,'CISA''s open-source scanning tool designed to verify Log4j vulnerabilities by executing safe, targeted callback requests. It is a highly reliable diagnostic utility for auditing external attack surfaces and ensuring regulatory compliance. The tool remains an essential resource for enterprise security audits.','Python','Tool','Intermediate',0,'online','manual','48b61235254336a836b0f1b1ccccb13bfe62a090c6f91c115c0112ac63e4bae1',100.0,1.78173593004124498e+09,1,'2026-06-18T00:38:50.041245+02:00',NULL,NULL,NULL,'["Security", "Vulnerabilities", "Log4Shell Scanners"]','["[COMMUNITY-TOOL]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/ckotzbauer/chekr','chekr','','2022',1,'A lightweight utility designed to inspect Kubernetes configurations and validate them against upcoming resource deprecations and removals. By mapping API versions in manifest files to deprecation roadmaps, it prevents cluster upgrade disruptions. Active through 2026, it remains a useful command-line tool for pre-flight deployment audits.','Go','CLI Tool','Medium',0,'online','manual','7051b38f708de41e58bdb9317a2523365211292d7599f817c8c551fca5b23cc2',100.0,1.77903112635894703e+09,1,'2023-09-16T06:23:32Z',NULL,NULL,NULL,'["Security", "Policy Enforcement", "Deprecation Check"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2023-09-16T06:23:32Z", "gh_stars": 9}');
INSERT INTO "resources" VALUES('https://github.com/ckotzbauer/chekr/issues/61','github.com issues: Generate Kyverno deprecation policies with chekr','','2022',1,'A specific technical issue and discussion detailing how to dynamically generate Kyverno deprecation policies using chekr. This represents an advanced integration pattern where declarative deprecation rules can be continuously generated and enforced at admission time. An invaluable resource in 2026 for automated platform upgrades.','Markdown','Documentation / Issue','Medium',0,'online','manual','64981e18ca235f20e325e03f8bd8e65477f0b0858a8a19b3df882c11da23659e',100.0,1.77903450002723503e+09,1,'2023-09-16T06:23:32Z',NULL,NULL,NULL,'["Security", "Policy Enforcement", "Kyverno Integration"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2023-09-16T06:23:32Z", "gh_stars": 9}');
INSERT INTO "resources" VALUES('https://github.com/ckotzbauer/vulnerability-operator','ckotzbauer/vulnerability-operator','','2023',5,'Integrates scanning engines with active cluster runtimes, cross-referencing running container image tags against security databases to alert administrators to new vulnerabilities.','Go','Operator','Advanced',0,'online','manual','48b51a396e0e94d654e5e238dd08cc407cc44898fccfa028445cd33f29032737',100.0,1779032255.36903,1,'2026-06-13T13:29:42Z',NULL,NULL,NULL,'["Security", "Vulnerability Management", "Scanning", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-13T13:29:42Z", "gh_stars": 87}');
INSERT INTO "resources" VALUES('https://github.com/clanktron/k3s-ansible','clanktron/k3s-ansible','','2022',2,'A robust, multi-node Ansible playbook developed to cleanly orchestrate K3s setups, handle system dependencies, bind node components, and extract active kubeconfigs automatically.','YML','IaC','Intermediate',0,'online','manual','34d9e871c6f5b42ebfb9cdf1bf0744ffc0710c729a4535ea63be7ddf4f792add',100.0,1.779032017760185e+09,1,'2022-09-15T05:51:01Z',NULL,NULL,NULL,'["Edge & IoT", "Cluster Provisioning", "Ansible Roles"]','["[COMMUNITY-TOOL]"]','["docs/rancher.md"]','["rancher.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2022-09-15T05:51:01Z", "gh_stars": 36}');
INSERT INTO "resources" VALUES('https://github.com/clastix/capsule','==Capsule Operator==','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','82756c4742f62a3e237316762b895ce70a87796f7ece4032aa7093de049c5e65',100.0,1.77902931026936197e+09,0,'2026-05-17T16:48:30.269362+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-operators-controllers.md"]','[]','{}','{"duplicate_of": "https://github.com/projectcapsule/capsule"}');
INSERT INTO "resources" VALUES('https://github.com/cli/cli','github.com/cli/cli','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','a52e2e804b83b6dcd5c62fb973c6a49c969cf2ab698cf1ceb6de5e8c6cc46782',100.0,1.77903292066923809e+09,1,'2026-05-17T17:48:40.669238+02:00',NULL,NULL,NULL,'[]','[]','["docs/git.md"]','[]','{}','{"gh_license": "MIT"}');
INSERT INTO "resources" VALUES('https://github.com/cloud-ark/caastle','cloud-ark/caastle','','2021',1,'An application-focused operator designed to manage multi-tiered applications in Kubernetes using structured Custom Resources. By coordinating complex dependency lifecycles across different services, it attempts to simplify custom operator architecture. In 2026, it is primarily viewed as a research-level project.','Python','Kubernetes Operator','High',0,'online','manual','463ff6042883048fb4ccbba61b567694071bc7725dc37e8ba0a63107f2d49222',100.0,1.77903135669877791e+09,1,'2018-10-29T16:57:29Z',NULL,NULL,NULL,'["Platform", "Application Platform", "Custom Resources"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2018-10-29T16:57:29Z", "gh_stars": 26}');
INSERT INTO "resources" VALUES('https://github.com/cloud-ark/kubeplus','KubePlus - Kubernetes Operator to deliver Helm charts as-a-service 🌟','','2024',5,'Delivers Helm charts as managed services by generating dynamic APIs. It secures multi-tenant pipelines, enforces platform utilization policies, and integrates Helm deployments with custom billing engines.','Go','Operator','Advanced',0,'online','manual','e5a88a7c5feb987add38a79bfaec017b7fb35ebac325b9ec8f25e243ac32e335',100.0,1.77903002124825692e+09,1,'2026-06-03T15:05:24Z',NULL,NULL,NULL,'["Application Delivery", "Packaging", "SaaS Provisioning", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-03T15:05:24Z", "gh_stars": 735}');
INSERT INTO "resources" VALUES('https://github.com/cloud-bulldozer/benchmark-operator','cloud-bulldozer/benchmark-operator: The Chuck Norris of cloud benchmarks','','2024',5,'Automates heavy performance testing (e.g., FIO, uperf) within active clusters. It deploys targets, isolates benchmark metrics, and exports execution data to visualization layers.','Go','Operator','Advanced',0,'online','manual','edfe3b8caa1da00123cb823ef49ca923957b0463f59db375b03fcd8ed2cef680',100.0,1.77903452153634905e+09,1,'2025-05-28T10:48:27Z',NULL,NULL,NULL,'["Reliability", "Testing", "Performance Benchmarking", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-05-28T10:48:27Z", "gh_stars": 305}');
INSERT INTO "resources" VALUES('https://github.com/cloud-bulldozer/kube-burner','kube-burner 🌟','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','59ce31168e8f6a50d9531f032f45f6daff0742dc413c3ff7f8c1467a566de664',100.0,1.77903102699635291e+09,0,'2026-05-17T17:17:06.996353+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"duplicate_of": "https://github.com/kube-burner/kube-burner"}');
INSERT INTO "resources" VALUES('https://github.com/cloud-custodian/cloud-custodian','Cloud Custodian','','2026',5,'A robust, YAML-configured rules engine used by enterprise platform engineers to manage multi-cloud compliance, cost control, and security posture across AWS, Azure, and GCP. Automates cost-saving resource deletions, tag compliance, and real-time security remediation.','Python','Software','Advanced',0,'online','manual','4122fb4f0d8f8b9b1d5e3fd765197751c957199983189d480fa145cd59f6fc46',100.0,1.77903154029675197e+09,1,'2026-06-10T18:53:37Z',NULL,NULL,NULL,'["Cloud-Native Platforms", "Multi-Cloud Governance", "Compliance Engine"]','["[DE FACTO STANDARD]"]','["docs/securityascode.md"]','["securityascode.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-10T18:53:37Z", "gh_stars": 6007}');
INSERT INTO "resources" VALUES('https://github.com/cloud-native-toolkit/multi-tenancy-gitops','==cloud-native-toolkit/multi-tenancy-gitops== 🌟','','2023',5,'A production-grade toolkit mapping GitOps and Argo CD architectures onto multi-tenant Kubernetes clusters. Outlines secure separation patterns, namespace isolations, and policy sync mechanisms for scaling environments.','Yaml / Shell','Repository','Advanced',0,'online','manual','9ee4507bfa3837182a87995eb7b7b398017cf6866580d56db23d50633424d1be',100.0,1.77903068091314291e+09,1,'2025-05-09T18:47:42Z',NULL,NULL,NULL,'["Application Delivery", "GitOps", "Multi-Tenancy"]','["[DE FACTO STANDARD]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-05-09T18:47:42Z", "gh_stars": 120}');
INSERT INTO "resources" VALUES('https://github.com/cloud66-oss/copper','Copper','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','771e183c89c06d4a087f0f058f4b331548fb3e0102fc42394040c8ab2fdeec2e',100.0,1.77902995028408288e+09,1,'2026-05-17T16:59:10.284083+02:00',NULL,NULL,NULL,'[]','[]','["docs/yaml.md"]','[]','{}','{"gh_license": "Apache-2.0", "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/cloudalchemy/ansible-grafana','Grafana provisioning Ansible Role','','2026',5,'An automated Ansible role engineered by Cloud Alchemy to deploy, configure, and maintain Grafana services. It translates Grafana''s file-based provisioning API parameters into clean Ansible playbooks, standardizing monitoring stack deployments across virtualized environments.','Ansible','Ansible Role','Medium',0,'online','manual','3a341740ea64c94a440597d1bcb210033a257776c21175198d1f3bdea0086d82',100.0,1.77903042310657811e+09,1,'2023-05-31T04:20:45Z',NULL,NULL,NULL,'["Observability", "Visualization", "Infrastructure as Code"]','["[DE FACTO STANDARD]"]','["docs/grafana.md"]','["grafana.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2023-05-31T04:20:45Z", "gh_stars": 503}');
INSERT INTO "resources" VALUES('https://github.com/cloudalchemy/ansible-prometheus','github.com/cloudalchemy/ansible-prometheus','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','49fbffd8ca22637aabd9d0dfd6ed58b745d8ab892342cbf63b7aa50a1693f875',100.0,1.77903258929198908e+09,1,'2026-05-17T17:43:09.291989+02:00',NULL,NULL,NULL,'[]','[]','["docs/prometheus.md"]','[]','{}','{"gh_license": "MIT"}');
INSERT INTO "resources" VALUES('https://github.com/cloudbees/groovy-cps','Continuation Passing Style (CPS)','','2021',5,'Curator Insight introduces the underlying Continuation Passing Style (CPS) engine used for executing asynchronous Groovy scripts in Jenkins pipelines. Live Grounding reveals that understanding CPS is critical for debugging serialization errors during master restarts. This technical library ensures execution state can survive controller crashes and resume safely.','Java','Repository','Advanced',0,'online','manual','eef92e14e2cb59c30055868b0d43826b08d5c782554e0cdd1dd79d84b8a624d4',100.0,1.77903429226672506e+09,1,'2022-11-04T20:42:58Z',NULL,NULL,NULL,'["DevOps", "Pipeline Execution Engine", "Groovy CPS", "Continuation Passing Style"]','["[DE FACTO STANDARD]"]','["docs/demos.md", "docs/jenkins.md"]','["demos.md", "jenkins.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2022-11-04T20:42:58Z", "gh_stars": 95}');
INSERT INTO "resources" VALUES('https://github.com/cloudflare/cf-terraforming',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','64fc22ae8c4fdef0283f5a3c2088ff9d4bea2f63b2941fc5838d496f091fba74',100.0,1.77903050011604094e+09,0,'2026-05-17T17:08:20.116041+02:00',NULL,NULL,NULL,'[]','[]','["docs/terraform.md"]','[]','{}','{}');
INSERT INTO "resources" VALUES('https://github.com/cloudflare/lockbox','github.com/cloudflare/lockbox','','2022',5,'Cloudflare''s implementation of public-key encryption workflows to store secrets safely in git repositories before deployment. This cryptographic utility integrates directly with CI/CD platforms to protect values in transit. Highly stable cryptography library still referenced in modern platforms.','Go','Library','Medium',0,'online','manual','dc51dc2ef9e0675da15a20513c781d396760eff71566a1ebdb1ec3fb38e0f38e',100.0,1.77903101719385099e+09,1,'2026-04-23T22:37:37Z',NULL,NULL,NULL,'["Networking & Security", "Secret Management", "Encryption"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "BSD-3-Clause", "gh_pushed": "2026-04-23T22:37:37Z", "gh_stars": 183}');
INSERT INTO "resources" VALUES('https://github.com/cloudflare/sciuro','sciuro','','2021',2,'An experimental graphical interface developed by Cloudflare to visualize Kubernetes workloads, cluster nodes, and networking paths in real time. It was designed to highlight resource topology and mapping structures. In 2026, the repository is unmaintained but serves as an informative architectural archetype for web UI mapping.','TypeScript','Web Application','Medium',1,'online','manual','2fb02ebcd733d6320f3037287b7967cf6fde6b15a231274e7167e39d47f2ef97',100.0,1.779031715197263e+09,1,'2026-04-23T22:52:03Z',NULL,NULL,NULL,'["Operations", "Observability", "Visualizer"]','["[EMERGING]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-04-23T22:52:03Z", "gh_stars": 180}');
INSERT INTO "resources" VALUES('https://github.com/cloudfoundry/cf-for-k8s','cf-for-k8s','','2022',2,'An implementation of Cloud Foundry designed to run natively on Kubernetes, blending the Cloud Foundry developer experience (cf push) with Kubernetes infrastructure. By 2026, this repository is archived as Cloud Foundry has transitioned its Kubernetes strategy toward more modular tools (like Korifi), rendering this specific integrated project a legacy reference.','Go','Application Platform','High',1,'online','manual','5badd2857efd39600e8073bf023c6a93823e349066b6c8d844647f8228024456',100.0,1779032540.51896,1,'2022-08-03T22:59:25Z',NULL,NULL,NULL,'["Platform", "PaaS", "Cloud Foundry"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2022-08-03T22:59:25Z", "gh_stars": 292}');
INSERT INTO "resources" VALUES('https://github.com/cloudnativelabs/kube-shell','==github.com/cloudnativelabs/kube-shell== ⭐','','2023',3,'An interactive command shell wrapper for kubectl that features context indicators, command completion, and inline help. While visually compelling, native terminal enhancements (such as zsh completions combined with fzf) have largely rendered this dedicated wrapper legacy.','Python','Interactive Shell CLI','Intermediate',0,'online','manual','b1713285344920ab656e80de1eaf56475ef556603f8f2d9624e0578d32da3304',100.0,1779031497.62229,1,'2022-11-02T12:34:48Z',NULL,NULL,NULL,'["Operations", "CLI Tooling", "Interactive Shell"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2022-11-02T12:34:48Z", "gh_stars": 2393}');
INSERT INTO "resources" VALUES('https://github.com/cloudogu/gitops-patterns','==github.com/cloudogu/gitops-patterns==','','2021',5,'An open directory detailing tested structural patterns for GitOps repo layouts. Helps architectural teams implement scalable environment propagation, secure branch systems, and robust template overlays cleanly.','Markdown','Repository','Intermediate',0,'online','manual','f19a9fe0d5737e1c19fb96869334f6eef6b21c3f6a15e8f27816f6cb3daa8c6c',100.0,1.77903108939878201e+09,1,'2025-06-30T16:08:02Z',NULL,NULL,NULL,'["Continuous Delivery", "GitOps", "Design Patterns"]','["[DE FACTO STANDARD]"]','["docs/gitops.md"]','["gitops.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2025-06-30T16:08:02Z", "gh_stars": 359}');
INSERT INTO "resources" VALUES('https://github.com/cloudogu/gitops-playground','github.com/cloudogu/gitops-playground#example-applications','','2021',5,'A fully configured local testing playground that showcases multi-tool GitOps pipelines. Includes pre-wired sample apps to help developers analyze live sync processes, drift reconciliation, and integration dynamics using ArgoCD and Flux.','Shell','Repository','Intermediate',1,'online','manual','a0429396c0d451066023ec05f8e6ce054c85c4f2b2d91a548401b5766a65c032',100.0,1.77903125584823894e+09,1,'2026-06-12T09:57:11Z',NULL,NULL,NULL,'["Continuous Delivery", "GitOps", "Testing Environments"]','["[DE FACTO STANDARD]"]','["docs/gitops.md"]','["gitops.md"]','{}','{"gh_license": "AGPL-3.0", "gh_pushed": "2026-06-12T09:57:11Z", "gh_stars": 266}');
INSERT INTO "resources" VALUES('https://github.com/cloudogu/jenkinsfiles','cloudogu/jenkinsfiles 🌟🌟🌟','','2021',5,'A comprehensive repository of production-ready Jenkinsfiles designed for modern enterprise software lifecycles. Offers reusable build scripts, container integration routines, and test suite automation loops.','Groovy','Code Repository','Intermediate',0,'online','manual','359d3987e7e51eaa143d920b4185887131c580def58388d8f4da4a990a60b4f3',100.0,1.77903073042681503e+09,1,'2023-10-31T08:24:10Z',NULL,NULL,NULL,'["DevSecOps & Automation", "Jenkins-based CI-CD", "Jenkins Architecture"]','["[DE FACTO STANDARD]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2023-10-31T08:24:10Z", "gh_stars": 299}');
INSERT INTO "resources" VALUES('https://github.com/cloudogu/k8s-diagrams','==cloudogu/k8s-diagrams==','','2021',3,'A specialized CLI utility built to parse Kubernetes live states and manifest specifications directly into clean, structured architectural diagrams. Resolves the operational pain point of manual cluster mapping, providing engineers with an accurate visual layout of active workloads, routes, and cluster components.','Go','CLI Tool','Intermediate',0,'online','manual','357885af0faa759dba9d088cac75fe5c6bb3e95ea6828537acfbec65fdf4723e',100.0,1.77903413499064207e+09,1,'2025-01-09T10:26:06Z',NULL,NULL,NULL,'["Architecture & Visualization", "Kubernetes Visualizer", "Go"]','["[COMMUNITY-TOOL]"]','["docs/cloud-arch-diagrams.md", "docs/kubernetes-tools.md", "docs/kubernetes-tutorials.md"]','["kubernetes-tutorials.md", "cloud-arch-diagrams.md", "kubernetes-tools.md"]','{}','{"gh_license": "AGPL-3.0", "gh_pushed": "2025-01-09T10:26:06Z", "gh_stars": 339}');
INSERT INTO "resources" VALUES('https://github.com/cloudposse-terraform-components/aws-eks-argocd','AWS EKS Argo CD Terraform Component','','2023',4,'Enterprise-ready Terraform submodule designed to deploy, configure, and bootstrap Argo CD onto an existing AWS EKS cluster. Standardizes complex security configurations, integrates with IAM Roles for Service Accounts (IRSA), and provisions preconfigured Helm releases.','HCL','Repository','Advanced',0,'online','manual','a9cedc5f0da32caf8a3e3fb228149e1dd3f7ebdbe428bfdde20904a90b25f24e',100.0,1.78173587651289606e+09,1,'2026-06-18T00:37:56.512896+02:00',NULL,NULL,NULL,'["Platform Engineering", "Infrastructure as Code", "Terraform & AWS", "EKS Modules"]','["[ENTERPRISE-STABLE]"]','["docs/argo.md", "docs/gitops.md", "docs/kubernetes-tools.md"]','["argo.md", "gitops.md", "kubernetes-tools.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/cloudposse/atmos','github.com/cloudposse/atmos','','2024',3,'Atmos is a production-grade orchestration framework developed to coordinate large-scale multi-account, multi-region cloud configurations. By utilizing a clean hierarchical YAML stack structure, it integrates Terraform, OpenTofu, and Helmfile into consolidated environment manifests. It streamlines modular patterns and enforces strict security and tagging architectures.','Go','Framework','Advanced',0,'online','manual','20d5de9ef09c1eb07b18e0db2146be3215adea59d789d498bb2760d09dcb71e0',100.0,1.77903109741586709e+09,1,'2026-06-14T06:09:40Z',NULL,NULL,NULL,'["Infrastructure as Code", "Orchestration", "Enterprise Architectures"]','["[COMMUNITY-TOOL]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-14T06:09:40Z", "gh_stars": 1310}');
INSERT INTO "resources" VALUES('https://github.com/chen-keinan/mesh-kridik','chen-keinan/mesh-kridik','','2021',1,'A security auditing and compliance verification tool for cloud-native Service Meshes, validating configurations against strict benchmark rulesets. It supports meshes like Istio, Linkerd, and Consul.','Go','Security Tool','High',1,'online','manual',NULL,NULL,1.7793885983602519e+09,0,'2024-12-09T16:56:32Z',NULL,NULL,NULL,'["Security", "Service Mesh Security", "Audit Tools"]','["[COMMUNITY-TOOL]"]','[]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2024-12-09T16:56:32Z", "gh_stars": 27, "gh_open_issues_30d": 6, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:18.679511+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/chenjd/terraform-101','==https://github.com/chenjd/terraform-101== 🌟','','2021',0,'A highly practical beginner-level code index focusing on Terraform basics, state management, module syntax, and provider declarations for deploying cloud infrastructure safely.','HCL','Repository','Beginner',0,'online','manual','125f6c2be505c4d1e2cb2932a9f8bec5e1e02cee514f6c61eb8c31bdefc0a857',100.0,1.7817359212821989e+09,1,'2026-06-18T00:38:41.282199+02:00',NULL,NULL,NULL,'["Infrastructure as Code", "Terraform Ecosystem", "Fundamental Syntaxes"]','["[COMMUNITY-TOOL]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:19.401314+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/chenjiandongx/kubectl-count','github.com/chenjiandongx/kubectl-count','','2023',0,'A fast and minimal kubectl plugin designed to return resource counts grouped by namespace or specific kinds. It targets fast CLI inspections, though modern system administrators frequently replace it with k9s configurations or basic custom scripting.','Go','CLI Plugin','Beginner',0,'online','manual','01617c6a4198156e3ce2bb0ec9551eedf2c5993e7e7c2353355563c2340b99a8',100.0,1.77902947574851202e+09,1,'2022-08-02T06:39:24Z',NULL,NULL,NULL,'["Operations", "CLI Tooling", "Resource Auditing"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2022-08-02T06:39:24Z", "gh_stars": 39, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:20.107136+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/chenjiandongx/kubectl-images','kubectl-images','','2023',5,'A CLI plugin designed to scan, inventory, and display the exact container images actively deployed inside a cluster namespace. Essential for identifying outdated registry links and resolving missing image version tags.','Go','CLI Plugin','Beginner',0,'online','manual','13e98236ba3c418d71801ffe86340015965970737745a3ec9f6478e2aac5fd64',100.0,1.77903184483116698e+09,1,'2026-03-19T03:56:28Z',NULL,NULL,NULL,'["Observability", "CLI Utilities", "Image Security"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-03-19T03:56:28Z", "gh_stars": 277, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:20.816055+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/chmouel/kss','KSS - Kubernetes pod status on steroid','','2023',5,'A CLI utility designed to enhance pod status visibility, extracting high-fidelity information from Kubernetes clusters in real-time. It visualizes container terminations, restarts, and readiness probes with rich colors and status indicators, addressing the visual limitations of native `kubectl get pods`.','Rust','CLI Tool','Intermediate',0,'online','manual','c2896a9e8114fec52c2449b0bcaa1ade652c55a80699d08f20de4fc16b6228ac',100.0,1.77903035060924506e+09,1,'2026-01-31T17:46:22Z',NULL,NULL,NULL,'["Observability", "CLI Utilities", "Pod Status"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-01-31T17:46:22Z", "gh_stars": 43, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:21.506151+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/chr-fritz/csi-sshfs','chr-fritz/csi-sshfs','','2019',1,'A Container Storage Interface (CSI) plugin designed to mount remote directories securely over SSHFS/SFTP. It enables microservice instances to read and write directly to legacy external filesystems without custom FTP setups.','Go','CSI Driver','Advanced',0,'online','manual','a158dd061ff0926b72df24dc12c73014a8233f0f9c7485cb7cfc93ed9b4959a6',100.0,1779030025.31795,1,'2020-01-29T21:18:12Z',NULL,NULL,NULL,'["Storage & Data", "CSI Plugins", "Remote Mounting"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2020-01-29T21:18:12Z", "gh_stars": 30, "gh_open_issues_30d": 2, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:22.254880+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/chrislusf/seaweedfs','chrislusf/seaweedfs','','2020',1,'A fast, highly scalable distributed storage engine that provides file and object hosting. This repository features native integration paths, enabling microservice workloads to access high-throughput file structures with rapid lookup times.','Go','Storage Platform','Advanced',0,'online','manual','de61a9b3d109057426969c8a7d760944d3795ffa627822a5be380f0c61eb3e90',100.0,1.7790314650983591e+09,1,'2026-06-08T06:18:52Z',NULL,NULL,NULL,'["Storage & Data", "Distributed File Systems", "Object Storage"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-08T06:18:52Z", "gh_stars": 26, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:22.998105+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/chrisns/cosign-keyless-demo','chrisns/cosign-keyless-demo: Cosign Keyless GitHub Action Demo','','2021',2,'A practical reference repository showcasing how to perform keyless container image signing inside GitHub Actions using Cosign. The blueprint demonstrates authenticating against Fulcio and Rekor using GitHub''s temporary identity tokens. Essential for platform engineers looking to implement secure-by-default CI/CD pipelines.','Go','Repository','Intermediate',1,'online','manual','d9b118c22b91aa81144ead0562da99a0ed5acfe3abf3c239535a8f8905b64325',100.0,1.77903342220426511e+09,1,'2023-01-31T22:31:51Z',NULL,NULL,NULL,'["Security", "Supply Chain Security", "Keyless Signing"]','["[COMMUNITY-TOOL]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2023-01-31T22:31:51Z", "gh_stars": 14, "gh_open_issues_30d": 5, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:23.720612+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/chrisns/k8s-opa-boilerplate','chrisns/k8s-opa-boilerplate','','2020',1,'A minimal, highly instructional boilerplate repository demonstrating Open Policy Agent (OPA) integration inside Kubernetes using Gatekeeper. Helps bootstrap policy-as-code paradigms to secure deployments and enforce structural admission controls.','Rego','Repository','Advanced',0,'online','manual','8a0b016f5f851d2b242d57ece34c8c4e59db74b3c5f76f5453c0f8fe58d69c84',100.0,1779033773.44563,1,'2026-06-02T18:15:17Z',NULL,NULL,NULL,'["Cloud Native", "Security", "Policy Enforcement"]','["[COMMUNITY-TOOL]"]','["docs/demos.md", "docs/kustomize.md"]','["kustomize.md", "demos.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-02T18:15:17Z", "gh_stars": 18, "gh_open_issues_30d": 3, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:24.458194+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/christopherhein/awesome-eks','christopherhein/awesome-eks: Awesome EKS','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','93a9e5db618cb592b0f77817d16fab80c32bf37548e360f8f15b7b0d147ee9df',100.0,1.77903114718230199e+09,0,'2026-05-17T17:19:07.182302+02:00',NULL,NULL,NULL,'[]','[]','["docs/other-awesome-lists.md"]','[]','{}','{"duplicate_of": "https://github.com/jimmyraywv/awesome-eks", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:25.113846+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cicdops/awesome-ciandcd','Awesome CI/CD 🌟','','2025',3,'An extensive curated list capturing modern DevOps platforms, delivery engines, automated linting, security scanning, and container validation tools, acting as a foundational technical index for engineering teams.','Markdown','Repository','Intermediate',1,'online','manual','5a5b7c5fa80a5882bee04d962414e0db0c1332043f674bdac2b3db4bd7a9fbe5',100.0,1.7790310263363161e+09,1,'2026-04-14T12:29:54Z',NULL,NULL,NULL,'["Deployment & Delivery", "CI/CD & Delivery", "Resource Portals"]','["[COMMUNITY-TOOL]"]','["docs/cicd.md", "docs/other-awesome-lists.md"]','["cicd.md", "other-awesome-lists.md"]','{}','{"gh_license": "GPL-2.0", "gh_pushed": "2026-04-14T12:29:54Z", "gh_stars": 1999, "is_special": true, "gh_open_issues_30d": 30, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:27:25.857165+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cilium/tetragon','Tetragon (Cilium)','','2022',5,'An eBPF-powered security observability and runtime enforcement platform. It monitors and blocks system events at the kernel level, providing granular process execution, network activity, and file system audit streams with zero container overhead.','Go','platform','Advanced',1,'online','manual','68c450ba0fe25e40514df915223a5935099e45961a55a65fa4f4551626c2b41d',100.0,1779031109.34794,1,'2026-06-14T09:06:49Z',NULL,NULL,NULL,'["Observability & Monitoring", "eBPF Runtime Enforcement", "Tetragon Platform"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-security.md"]','["kubernetes-security.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-14T09:06:49Z", "gh_stars": 4749, "gh_open_issues_30d": 252, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:27:26.583956+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cinhtau/sonatype-nexus-waffle','github.com/cinhtau/sonatype-nexus-waffle','','2018',5,'An archived community plugin targeting Windows Active Directory single sign-on (SSO) authentication within Sonatype Nexus. Live grounding confirms it is obsolete, unmaintained, and legacy. Useful primarily as vintage integration code, modern Nexus deployments utilize modern OIDC and LDAP endpoints.','Java','Repository','Advanced',0,'online','manual','c430ab3d6f9179affd62ed9be3ed0189f8b99d15e900eeb970e8a68664b314db',100.0,1.77902961371268296e+09,1,'2019-05-17T19:12:19Z',NULL,NULL,NULL,'["Artifact Management", "Package Repositories", "Nexus Integrations"]','["[DE FACTO STANDARD]", "[LEGACY]"]','["docs/registries.md"]','["registries.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2019-05-17T19:12:19Z", "gh_stars": 6, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:27.342900+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/circa10a/terraform-provider-mailform','github.com/circa10a/terraform-provider-mailform','','2021',1,'A niche experimental Terraform provider for the Mailform SaaS API. Serves as a great programmatic example for developers seeking to build customized provider architectures using standard SDK specifications.','Go','Provider','Intermediate',0,'online','manual','179c6253105400bd3692883c5767318d8a344c169d207f1887df3eb388847fae',100.0,1.77903215769201803e+09,1,'2025-11-12T03:06:44Z',NULL,NULL,NULL,'["Infrastructure as Code", "SaaS Integration", "Providers"]','["[EMERGING]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_license": "MPL-2.0", "gh_pushed": "2025-11-12T03:06:44Z", "gh_stars": 14, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:28.053305+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cisagov/log4j-scanner','==cisagov/log4j-scanner==','','2021',0,'CISA''s open-source scanning tool designed to verify Log4j vulnerabilities by executing safe, targeted callback requests. It is a highly reliable diagnostic utility for auditing external attack surfaces and ensuring regulatory compliance. The tool remains an essential resource for enterprise security audits.','Python','Tool','Intermediate',0,'online','manual','48b61235254336a836b0f1b1ccccb13bfe62a090c6f91c115c0112ac63e4bae1',100.0,1.78173593004124498e+09,1,'2026-06-18T00:38:50.041245+02:00',NULL,NULL,NULL,'["Security", "Vulnerabilities", "Log4Shell Scanners"]','["[COMMUNITY-TOOL]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 13, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:27:28.754797+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/ckotzbauer/chekr','chekr','','2022',1,'A lightweight utility designed to inspect Kubernetes configurations and validate them against upcoming resource deprecations and removals. By mapping API versions in manifest files to deprecation roadmaps, it prevents cluster upgrade disruptions. Active through 2026, it remains a useful command-line tool for pre-flight deployment audits.','Go','CLI Tool','Medium',0,'online','manual','7051b38f708de41e58bdb9317a2523365211292d7599f817c8c551fca5b23cc2',100.0,1.77903112635894703e+09,1,'2023-09-16T06:23:32Z',NULL,NULL,NULL,'["Security", "Policy Enforcement", "Deprecation Check"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2023-09-16T06:23:32Z", "gh_stars": 9, "gh_open_issues_30d": 2, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:29.446848+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/ckotzbauer/chekr/issues/61','github.com issues: Generate Kyverno deprecation policies with chekr','','2022',1,'A specific technical issue and discussion detailing how to dynamically generate Kyverno deprecation policies using chekr. This represents an advanced integration pattern where declarative deprecation rules can be continuously generated and enforced at admission time. An invaluable resource in 2026 for automated platform upgrades.','Markdown','Documentation / Issue','Medium',0,'online','manual','64981e18ca235f20e325e03f8bd8e65477f0b0858a8a19b3df882c11da23659e',100.0,1.77903450002723503e+09,1,'2023-09-16T06:23:32Z',NULL,NULL,NULL,'["Security", "Policy Enforcement", "Kyverno Integration"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2023-09-16T06:23:32Z", "gh_stars": 9, "gh_open_issues_30d": 2, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:30.138805+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/ckotzbauer/vulnerability-operator','ckotzbauer/vulnerability-operator','','2023',5,'Integrates scanning engines with active cluster runtimes, cross-referencing running container image tags against security databases to alert administrators to new vulnerabilities.','Go','Operator','Advanced',0,'online','manual','48b51a396e0e94d654e5e238dd08cc407cc44898fccfa028445cd33f29032737',100.0,1779032255.36903,1,'2026-06-13T13:29:42Z',NULL,NULL,NULL,'["Security", "Vulnerability Management", "Scanning", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-06-13T13:29:42Z", "gh_stars": 87, "gh_open_issues_30d": 5, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:30.868902+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/clanktron/k3s-ansible','clanktron/k3s-ansible','','2022',2,'A robust, multi-node Ansible playbook developed to cleanly orchestrate K3s setups, handle system dependencies, bind node components, and extract active kubeconfigs automatically.','YML','IaC','Intermediate',0,'online','manual','34d9e871c6f5b42ebfb9cdf1bf0744ffc0710c729a4535ea63be7ddf4f792add',100.0,1.779032017760185e+09,1,'2022-09-15T05:51:01Z',NULL,NULL,NULL,'["Edge & IoT", "Cluster Provisioning", "Ansible Roles"]','["[COMMUNITY-TOOL]"]','["docs/rancher.md"]','["rancher.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2022-09-15T05:51:01Z", "gh_stars": 36, "gh_open_issues_30d": 2, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:31.614963+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/clastix/capsule','==Capsule Operator==','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','82756c4742f62a3e237316762b895ce70a87796f7ece4032aa7093de049c5e65',100.0,1.77902931026936197e+09,0,'2026-05-17T16:48:30.269362+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-operators-controllers.md"]','[]','{}','{"duplicate_of": "https://github.com/projectcapsule/capsule", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:32.254111+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cli/cli','github.com/cli/cli','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','a52e2e804b83b6dcd5c62fb973c6a49c969cf2ab698cf1ceb6de5e8c6cc46782',100.0,1.77903292066923809e+09,1,'2026-05-17T17:48:40.669238+02:00',NULL,NULL,NULL,'[]','[]','["docs/git.md"]','[]','{}','{"gh_license": "MIT", "gh_open_issues_30d": 1011, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:27:32.988555+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloud-ark/caastle','cloud-ark/caastle','','2021',1,'An application-focused operator designed to manage multi-tiered applications in Kubernetes using structured Custom Resources. By coordinating complex dependency lifecycles across different services, it attempts to simplify custom operator architecture. In 2026, it is primarily viewed as a research-level project.','Python','Kubernetes Operator','High',0,'online','manual','463ff6042883048fb4ccbba61b567694071bc7725dc37e8ba0a63107f2d49222',100.0,1.77903135669877791e+09,1,'2018-10-29T16:57:29Z',NULL,NULL,NULL,'["Platform", "Application Platform", "Custom Resources"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2018-10-29T16:57:29Z", "gh_stars": 26, "gh_open_issues_30d": 29, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:27:33.713260+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloud-ark/kubeplus','KubePlus - Kubernetes Operator to deliver Helm charts as-a-service 🌟','','2024',5,'Delivers Helm charts as managed services by generating dynamic APIs. It secures multi-tenant pipelines, enforces platform utilization policies, and integrates Helm deployments with custom billing engines.','Go','Operator','Advanced',0,'online','manual','e5a88a7c5feb987add38a79bfaec017b7fb35ebac325b9ec8f25e243ac32e335',100.0,1.77903002124825692e+09,1,'2026-06-03T15:05:24Z',NULL,NULL,NULL,'["Application Delivery", "Packaging", "SaaS Provisioning", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-03T15:05:24Z", "gh_stars": 735, "gh_open_issues_30d": 36, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:27:34.438902+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloud-bulldozer/benchmark-operator','cloud-bulldozer/benchmark-operator: The Chuck Norris of cloud benchmarks','','2024',5,'Automates heavy performance testing (e.g., FIO, uperf) within active clusters. It deploys targets, isolates benchmark metrics, and exports execution data to visualization layers.','Go','Operator','Advanced',0,'online','manual','edfe3b8caa1da00123cb823ef49ca923957b0463f59db375b03fcd8ed2cef680',100.0,1.77903452153634905e+09,1,'2025-05-28T10:48:27Z',NULL,NULL,NULL,'["Reliability", "Testing", "Performance Benchmarking", "Operators"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md", "docs/kubernetes-tools.md"]','["kubernetes-tools.md", "kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-05-28T10:48:27Z", "gh_stars": 305, "gh_open_issues_30d": 4, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:35.162248+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloud-bulldozer/kube-burner','kube-burner 🌟','','N/A',0,NULL,NULL,NULL,NULL,0,'duplicate','manual','59ce31168e8f6a50d9531f032f45f6daff0742dc413c3ff7f8c1467a566de664',100.0,1.77903102699635291e+09,0,'2026-05-17T17:17:06.996353+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-tools.md"]','[]','{}','{"duplicate_of": "https://github.com/kube-burner/kube-burner", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:35.810741+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloud-custodian/cloud-custodian','Cloud Custodian','','2026',5,'A robust, YAML-configured rules engine used by enterprise platform engineers to manage multi-cloud compliance, cost control, and security posture across AWS, Azure, and GCP. Automates cost-saving resource deletions, tag compliance, and real-time security remediation.','Python','Software','Advanced',0,'online','manual','4122fb4f0d8f8b9b1d5e3fd765197751c957199983189d480fa145cd59f6fc46',100.0,1.77903154029675197e+09,1,'2026-06-10T18:53:37Z',NULL,NULL,NULL,'["Cloud-Native Platforms", "Multi-Cloud Governance", "Compliance Engine"]','["[DE FACTO STANDARD]"]','["docs/securityascode.md"]','["securityascode.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-10T18:53:37Z", "gh_stars": 6007, "gh_open_issues_30d": 1669, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:27:36.563031+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloud-native-toolkit/multi-tenancy-gitops','==cloud-native-toolkit/multi-tenancy-gitops== 🌟','','2023',5,'A production-grade toolkit mapping GitOps and Argo CD architectures onto multi-tenant Kubernetes clusters. Outlines secure separation patterns, namespace isolations, and policy sync mechanisms for scaling environments.','Yaml / Shell','Repository','Advanced',0,'online','manual','9ee4507bfa3837182a87995eb7b7b398017cf6866580d56db23d50633424d1be',100.0,1.77903068091314291e+09,1,'2025-05-09T18:47:42Z',NULL,NULL,NULL,'["Application Delivery", "GitOps", "Multi-Tenancy"]','["[DE FACTO STANDARD]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-05-09T18:47:42Z", "gh_stars": 120, "gh_open_issues_30d": 9, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:37.280054+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloud66-oss/copper','Copper','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','771e183c89c06d4a087f0f058f4b331548fb3e0102fc42394040c8ab2fdeec2e',100.0,1.77902995028408288e+09,1,'2026-05-17T16:59:10.284083+02:00',NULL,NULL,NULL,'[]','[]','["docs/yaml.md"]','[]','{}','{"gh_license": "Apache-2.0", "is_special": true, "gh_open_issues_30d": 5, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:37.977563+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloudalchemy/ansible-grafana','Grafana provisioning Ansible Role','','2026',5,'An automated Ansible role engineered by Cloud Alchemy to deploy, configure, and maintain Grafana services. It translates Grafana''s file-based provisioning API parameters into clean Ansible playbooks, standardizing monitoring stack deployments across virtualized environments.','Ansible','Ansible Role','Medium',0,'online','manual','3a341740ea64c94a440597d1bcb210033a257776c21175198d1f3bdea0086d82',100.0,1.77903042310657811e+09,1,'2023-05-31T04:20:45Z',NULL,NULL,NULL,'["Observability", "Visualization", "Infrastructure as Code"]','["[DE FACTO STANDARD]"]','["docs/grafana.md"]','["grafana.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2023-05-31T04:20:45Z", "gh_stars": 503, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:38.684823+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloudalchemy/ansible-prometheus','github.com/cloudalchemy/ansible-prometheus','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','49fbffd8ca22637aabd9d0dfd6ed58b745d8ab892342cbf63b7aa50a1693f875',100.0,1.77903258929198908e+09,1,'2026-05-17T17:43:09.291989+02:00',NULL,NULL,NULL,'[]','[]','["docs/prometheus.md"]','[]','{}','{"gh_license": "MIT", "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:39.370077+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloudbees/groovy-cps','Continuation Passing Style (CPS)','','2021',5,'Curator Insight introduces the underlying Continuation Passing Style (CPS) engine used for executing asynchronous Groovy scripts in Jenkins pipelines. Live Grounding reveals that understanding CPS is critical for debugging serialization errors during master restarts. This technical library ensures execution state can survive controller crashes and resume safely.','Java','Repository','Advanced',0,'online','manual','eef92e14e2cb59c30055868b0d43826b08d5c782554e0cdd1dd79d84b8a624d4',100.0,1.77903429226672506e+09,1,'2022-11-04T20:42:58Z',NULL,NULL,NULL,'["DevOps", "Pipeline Execution Engine", "Groovy CPS", "Continuation Passing Style"]','["[DE FACTO STANDARD]"]','["docs/demos.md", "docs/jenkins.md"]','["demos.md", "jenkins.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2022-11-04T20:42:58Z", "gh_stars": 95, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:40.086599+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloudflare/cf-terraforming',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','64fc22ae8c4fdef0283f5a3c2088ff9d4bea2f63b2941fc5838d496f091fba74',100.0,1.77903050011604094e+09,0,'2026-05-17T17:08:20.116041+02:00',NULL,NULL,NULL,'[]','[]','["docs/terraform.md"]','[]','{}','{"gh_open_issues_30d": 13, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:27:40.813987+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloudflare/lockbox','github.com/cloudflare/lockbox','','2022',5,'Cloudflare''s implementation of public-key encryption workflows to store secrets safely in git repositories before deployment. This cryptographic utility integrates directly with CI/CD platforms to protect values in transit. Highly stable cryptography library still referenced in modern platforms.','Go','Library','Medium',0,'online','manual','dc51dc2ef9e0675da15a20513c781d396760eff71566a1ebdb1ec3fb38e0f38e',100.0,1.77903101719385099e+09,1,'2026-04-23T22:37:37Z',NULL,NULL,NULL,'["Networking & Security", "Secret Management", "Encryption"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "BSD-3-Clause", "gh_pushed": "2026-04-23T22:37:37Z", "gh_stars": 183, "gh_open_issues_30d": 4, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:41.539130+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloudflare/sciuro','sciuro','','2021',2,'An experimental graphical interface developed by Cloudflare to visualize Kubernetes workloads, cluster nodes, and networking paths in real time. It was designed to highlight resource topology and mapping structures. In 2026, the repository is unmaintained but serves as an informative architectural archetype for web UI mapping.','TypeScript','Web Application','Medium',1,'online','manual','2fb02ebcd733d6320f3037287b7967cf6fde6b15a231274e7167e39d47f2ef97',100.0,1.779031715197263e+09,1,'2026-04-23T22:52:03Z',NULL,NULL,NULL,'["Operations", "Observability", "Visualizer"]','["[EMERGING]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-04-23T22:52:03Z", "gh_stars": 180, "gh_open_issues_30d": 7, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:42.262627+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloudfoundry/cf-for-k8s','cf-for-k8s','','2022',2,'An implementation of Cloud Foundry designed to run natively on Kubernetes, blending the Cloud Foundry developer experience (cf push) with Kubernetes infrastructure. By 2026, this repository is archived as Cloud Foundry has transitioned its Kubernetes strategy toward more modular tools (like Korifi), rendering this specific integrated project a legacy reference.','Go','Application Platform','High',1,'online','manual','5badd2857efd39600e8073bf023c6a93823e349066b6c8d844647f8228024456',100.0,1779032540.51896,1,'2022-08-03T22:59:25Z',NULL,NULL,NULL,'["Platform", "PaaS", "Cloud Foundry"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2022-08-03T22:59:25Z", "gh_stars": 292, "gh_open_issues_30d": 76, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:27:42.979123+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloudnativelabs/kube-shell','==github.com/cloudnativelabs/kube-shell== ⭐','','2023',3,'An interactive command shell wrapper for kubectl that features context indicators, command completion, and inline help. While visually compelling, native terminal enhancements (such as zsh completions combined with fzf) have largely rendered this dedicated wrapper legacy.','Python','Interactive Shell CLI','Intermediate',0,'online','manual','b1713285344920ab656e80de1eaf56475ef556603f8f2d9624e0578d32da3304',100.0,1779031497.62229,1,'2022-11-02T12:34:48Z',NULL,NULL,NULL,'["Operations", "CLI Tooling", "Interactive Shell"]','["[LEGACY]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2022-11-02T12:34:48Z", "gh_stars": 2393, "gh_open_issues_30d": 67, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:27:43.688882+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloudogu/gitops-patterns','==github.com/cloudogu/gitops-patterns==','','2021',5,'An open directory detailing tested structural patterns for GitOps repo layouts. Helps architectural teams implement scalable environment propagation, secure branch systems, and robust template overlays cleanly.','Markdown','Repository','Intermediate',0,'online','manual','f19a9fe0d5737e1c19fb96869334f6eef6b21c3f6a15e8f27816f6cb3daa8c6c',100.0,1.77903108939878201e+09,1,'2025-06-30T16:08:02Z',NULL,NULL,NULL,'["Continuous Delivery", "GitOps", "Design Patterns"]','["[DE FACTO STANDARD]"]','["docs/gitops.md"]','["gitops.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2025-06-30T16:08:02Z", "gh_stars": 359, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:44.470790+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloudogu/gitops-playground','github.com/cloudogu/gitops-playground#example-applications','','2021',5,'A fully configured local testing playground that showcases multi-tool GitOps pipelines. Includes pre-wired sample apps to help developers analyze live sync processes, drift reconciliation, and integration dynamics using ArgoCD and Flux.','Shell','Repository','Intermediate',1,'online','manual','a0429396c0d451066023ec05f8e6ce054c85c4f2b2d91a548401b5766a65c032',100.0,1.77903125584823894e+09,1,'2026-06-12T09:57:11Z',NULL,NULL,NULL,'["Continuous Delivery", "GitOps", "Testing Environments"]','["[DE FACTO STANDARD]"]','["docs/gitops.md"]','["gitops.md"]','{}','{"gh_license": "AGPL-3.0", "gh_pushed": "2026-06-12T09:57:11Z", "gh_stars": 266, "gh_open_issues_30d": 2, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:45.192576+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloudogu/jenkinsfiles','cloudogu/jenkinsfiles 🌟🌟🌟','','2021',5,'A comprehensive repository of production-ready Jenkinsfiles designed for modern enterprise software lifecycles. Offers reusable build scripts, container integration routines, and test suite automation loops.','Groovy','Code Repository','Intermediate',0,'online','manual','359d3987e7e51eaa143d920b4185887131c580def58388d8f4da4a990a60b4f3',100.0,1.77903073042681503e+09,1,'2023-10-31T08:24:10Z',NULL,NULL,NULL,'["DevSecOps & Automation", "Jenkins-based CI-CD", "Jenkins Architecture"]','["[DE FACTO STANDARD]"]','["docs/demos.md"]','["demos.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2023-10-31T08:24:10Z", "gh_stars": 299, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:45.937051+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloudogu/k8s-diagrams','==cloudogu/k8s-diagrams==','','2021',3,'A specialized CLI utility built to parse Kubernetes live states and manifest specifications directly into clean, structured architectural diagrams. Resolves the operational pain point of manual cluster mapping, providing engineers with an accurate visual layout of active workloads, routes, and cluster components.','Go','CLI Tool','Intermediate',0,'online','manual','357885af0faa759dba9d088cac75fe5c6bb3e95ea6828537acfbec65fdf4723e',100.0,1.77903413499064207e+09,1,'2025-01-09T10:26:06Z',NULL,NULL,NULL,'["Architecture & Visualization", "Kubernetes Visualizer", "Go"]','["[COMMUNITY-TOOL]"]','["docs/cloud-arch-diagrams.md", "docs/kubernetes-tools.md", "docs/kubernetes-tutorials.md"]','["kubernetes-tutorials.md", "cloud-arch-diagrams.md", "kubernetes-tools.md"]','{}','{"gh_license": "AGPL-3.0", "gh_pushed": "2025-01-09T10:26:06Z", "gh_stars": 339, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:46.663065+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloudposse-terraform-components/aws-eks-argocd','AWS EKS Argo CD Terraform Component','','2023',4,'Enterprise-ready Terraform submodule designed to deploy, configure, and bootstrap Argo CD onto an existing AWS EKS cluster. Standardizes complex security configurations, integrates with IAM Roles for Service Accounts (IRSA), and provisions preconfigured Helm releases.','HCL','Repository','Advanced',0,'online','manual','a9cedc5f0da32caf8a3e3fb228149e1dd3f7ebdbe428bfdde20904a90b25f24e',100.0,1.78173587651289606e+09,1,'2026-06-18T00:37:56.512896+02:00',NULL,NULL,NULL,'["Platform Engineering", "Infrastructure as Code", "Terraform & AWS", "EKS Modules"]','["[ENTERPRISE-STABLE]"]','["docs/argo.md", "docs/gitops.md", "docs/kubernetes-tools.md"]','["argo.md", "gitops.md", "kubernetes-tools.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 9, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:47.448587+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloudposse/atmos','github.com/cloudposse/atmos','','2024',3,'Atmos is a production-grade orchestration framework developed to coordinate large-scale multi-account, multi-region cloud configurations. By utilizing a clean hierarchical YAML stack structure, it integrates Terraform, OpenTofu, and Helmfile into consolidated environment manifests. It streamlines modular patterns and enforces strict security and tagging architectures.','Go','Framework','Advanced',0,'online','manual','20d5de9ef09c1eb07b18e0db2146be3215adea59d789d498bb2760d09dcb71e0',100.0,1.77903109741586709e+09,1,'2026-06-14T06:09:40Z',NULL,NULL,NULL,'["Infrastructure as Code", "Orchestration", "Enterprise Architectures"]','["[COMMUNITY-TOOL]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-14T06:09:40Z", "gh_stars": 1310, "gh_open_issues_30d": 289, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:27:48.199777+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cloudposse?q=terraform-','github.com/cloudposse?q=terraform-','','2025',5,'The premier repository suite of highly modular, enterprise-tested blueprints authored by Cloud Posse. These patterns are widely adopted for orchestrating complex AWS and Kubernetes infrastructure layers using declarative conventions.','HCL','Repository','Intermediate',1,'online','manual','222cf30de23f4494dc58700def560592c26ee19d8182496a9cec9e63d098a0f6',100.0,1779033806.74093,1,'2026-05-17T18:03:26.740930+02:00',NULL,NULL,NULL,'["Infrastructure as Code", "Curation", "Cloud Posse Modules"]','["[DE FACTO STANDARD]"]','["docs/terraform.md"]','["terraform.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/cloudtty/cloudtty','cloudtty/cloudtty: A Kubernetes Cloud Shell (Web Terminal) Operator','','2025',2,'CloudTTY is an operator-backed web terminal designed to securely run browser-based command shell windows inside Kubernetes. Leveraging native container APIs, it provides access to authorized shells without external SSH configurations, proving invaluable for multi-tenant developer portal integration.','Go','Operator / Web UI','Advanced',1,'online','manual','3028047efca167255852e833c529b4ebbc136ff241c39a55f7bfef920bff078c',100.0,1779029421.90367,1,'2026-05-21T06:52:50Z',NULL,NULL,NULL,'["Operations", "CLI Tooling", "Web Terminal"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-05-21T06:52:50Z", "gh_stars": 655}');
INSERT INTO "resources" VALUES('https://github.com/clusternet/clusternet','==github.com/clusternet==','','2021',5,'Clusternet is an open-source, multi-cluster management framework designed to orchestrate application deployment across heterogeneous cloud-to-edge Kubernetes networks. It decouples control planes by introducing push and pull-based scheduling mechanisms, allowing seamless policy propagation.','Go','Multi-cluster Controller','Advanced',0,'online','manual','fc6d32ef3d10ebd1ade3e69b4b3e71cda12fe6bc09e44bcb5e38c24a8900c685',100.0,1.77903421195224404e+09,1,'2026-06-08T04:23:14Z',NULL,NULL,NULL,'["Platform Engineering", "Multi-Cluster Routing", "Fleet Orchestration"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-08T04:23:14Z", "gh_stars": 1437}');
INSERT INTO "resources" VALUES('https://github.com/clusterpedia-io/clusterpedia','clusterpedia-io/clusterpedia 🌟','','2023',5,'Clusterpedia is a high-performance open-source search engine for multi-cluster Kubernetes resources. It periodically synchronizes objects from countless distinct environments into a centralized database, exposing a standard Kubernetes API endpoint to enable low-latency, cross-cluster resource discovery and management.','Go','Software','Advanced',0,'online','manual','3775a48570c85b1417c09243062e2d6cb3e17462b934251c9410f1215318fa6d',100.0,1.77903146890533399e+09,1,'2026-05-30T00:47:17Z',NULL,NULL,NULL,'["Kubernetes Management", "Multi-Cluster", "Search Engine"]','["[DE FACTO STANDARD]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-05-30T00:47:17Z", "gh_stars": 873, "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/clvx/k8s-rbac-model','github.com/clvx/k8s-rbac-model: Kubernetes RBAC Model','','2019',5,'Curator Insight: A conceptual visualization framework for modeling Kubernetes RBAC policies. Live Grounding: The project has seen zero updates in over 5 years. Deprioritized under MVQ rules due to structural obsolescence against modern apiGroups.','JavaScript','Code Repository','Intermediate',0,'online','manual','47af26afb1e6187c9e511f90ee627aaf989c3bb6d9012c8b95ff36a969aa242d',100.0,1.77903392552799105e+09,1,'2020-09-01T20:19:40Z',NULL,NULL,NULL,'["Security", "Identity & Access", "RBAC", "Legacy Tools"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-security.md"]','["kubernetes-security.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2020-09-01T20:19:40Z", "gh_stars": 26}');
INSERT INTO "resources" VALUES('https://github.com/cncf/tag-security','cncf/tag-security: CNCF Security Technical Advisory Group 🌟','','2026',3,'The premier open-source governance and advisory group defining cloud-native security, compliance, and secure software supply chains. Provides critical specifications including the CNCF Security Whitepaper and Cloud Native Threat Matrix, which serve as foundational guides for platform architects.','English','GitHub Repository','Advanced',0,'online','manual','fbaed98c63fc735d027aaa6ca925d7db7cc292526f16fb9a3c807331039634b5',100.0,1.7790343949634521e+09,1,'2025-12-08T07:51:51Z',NULL,NULL,NULL,'["Security", "Cloud-Native", "Governance Standards"]','["[COMMUNITY-TOOL]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2025-12-08T07:51:51Z", "gh_stars": 2264}');
INSERT INTO "resources" VALUES('https://github.com/cni-genie/CNI-Genie','CNI-Genie','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','86431846eeb87d1bd76fb941fa4b2156d7b39cf1ceb2cf7e0be39dd82f532351',100.0,1.77903134989142489e+09,1,'2026-05-17T17:22:29.891425+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-networking.md"]','[]','{}','{"gh_license": "Apache-2.0"}');
INSERT INTO "resources" VALUES('https://github.com/cnrancher/autok3s','cnrancher/autok3s','','2023',3,'Curator Insight defines autok3s as a lightweight tool to provision and manage K3s clusters across various cloud providers. Live engineering truth in 2026 notes that its development has stabilized, functioning well for localized multi-cloud rapid prototyping. It provides an API and a CLI wrapper to simplify provisioning on AWS, Alibaba, and Tencent Cloud.','Go','Code Repository','Medium',0,'online','manual','1c1ad8e505e61906ce2c7b545f0e5cd62a00cc56b4fbf1dda53728c345269f05',100.0,1.779030022644068e+09,1,'2025-11-25T08:19:31Z',NULL,NULL,NULL,'["Edge Computing", "Kubernetes Provisioning", "AutoK3s"]','["[COMMUNITY-TOOL]"]','["docs/rancher.md"]','["rancher.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-11-25T08:19:31Z", "gh_stars": 938}');
INSERT INTO "resources" VALUES('https://github.com/cockroachdb/copyist','copyist','','2020',4,'Details copyist, a Go library developed by CockroachDB to automate SQL mock generations. Records and plays back transactions to let developers perform database testing without spinning up full DBMS clusters.','English','GitHub Repository','Advanced',0,'online','manual','ba28e669744ae9985c71af064756c8bc779898666820d377644e609ec280f7bc',100.0,1779029573.66604,1,'2026-06-04T18:30:28Z',NULL,NULL,NULL,'["DevOps & Quality Assurance", "Continuous Testing", "Database Mocking"]','["[ENTERPRISE-STABLE]"]','["docs/testops.md"]','["testops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-04T18:30:28Z", "gh_stars": 853}');
INSERT INTO "resources" VALUES('https://github.com/codecentric/helm-charts','Codecentric Jenkins 🌟','','2025',3,'An active, community-maintained collection of high-quality Helm charts, featuring a robust configuration path for DevOps tooling like Jenkins. It provides clean, production-ready, security-hardened manifests optimized for enterprise use.','YAML','Helm Chart','Intermediate',1,'online','manual','99e7b1b7ee743f0f3b3cea0e279681350b7fe180bdc3f25c723909fe85b0ae84',100.0,1.77903095227094793e+09,1,'2026-06-08T12:05:48Z',NULL,NULL,NULL,'["Platform Engineering", "Kubernetes GitOps & Packaging", "DevOps Pipelines"]','["[COMMUNITY-TOOL]"]','["docs/helm.md"]','["helm.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-08T12:05:48Z", "gh_stars": 733}');
INSERT INTO "resources" VALUES('https://github.com/codecentric/spring-boot-admin','codecentric''s Spring Boot Admin UI 🌟','','2026',5,'A popular community dashboard engineered to coordinate, monitor, and manage Spring Boot applications. By parsing actuator telemetry data, it displays real-time statistics including thread states, JVM metrics, memory usage, dynamic logging levels, and distributed transaction status.','Java','Tool','Intermediate',1,'online','manual','68187b3accb6b796cf3f24c30de656df4f4bf632336a27078b4401d695c31da1',100.0,1.77903101255946898e+09,1,'2026-06-13T18:44:23Z',NULL,NULL,NULL,'["Spring Ecosystem", "Observability", "Administration UI"]','["[DE FACTO STANDARD]"]','["docs/java_frameworks.md"]','["java_frameworks.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T18:44:23Z", "gh_stars": 12828}');
INSERT INTO "resources" VALUES('https://github.com/codecrafters-io/build-your-own-x','Build Your Own X','','2024',5,'An immensely popular community-driven compilation of step-by-step guides for building complex software systems (compilers, databases, operating systems, Docker) from scratch. Perfect for deep pedagogical exploration of core engineering systems.','English','Repository','Advanced',0,'online','manual','b2853cf5c0430a748f639c71fd07733cc66e705c5ace8005cc37bdeca30e97e0',100.0,1.78173592113429904e+09,1,'2026-06-18T00:38:41.134299+02:00',NULL,NULL,NULL,'["Software Engineering", "Education", "Systems Programming"]','["[DE FACTO STANDARD]"]','["docs/devel-sites.md", "docs/introduction.md", "docs/kubernetes-tutorials.md"]','["kubernetes-tutorials.md", "devel-sites.md", "introduction.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A"}');
INSERT INTO "resources" VALUES('https://github.com/coderanger/migrations-operator','coderanger/migrations-operator: Migrations-Operator','','2024',5,'This controller coordinates database schema migration jobs relative to active deployment rollouts. By intercepting deployment events, it executes schema changes as blocking preparatory steps, ensuring application microservices only start up once target database structures align.','Go','Repository','Intermediate',1,'online','manual','621080d14963a805f53f5cb620b78e4b254f7aceb764eded9b214d0ace704973',100.0,1.77903144914970588e+09,1,'2025-06-10T07:31:27Z',NULL,NULL,NULL,'["Data & Databases", "Lifecycle Management", "Schema Migrations"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-06-10T07:31:27Z", "gh_stars": 136}');
INSERT INTO "resources" VALUES('https://github.com/codesenberg/bombardier','codesenberg/bombardier 🌟','','2017',4,'A high-performance, concurrent HTTP benchmarking and load generation tool written in Go. Utilizing standard fasthttp routines, it generates substantial networking loads to test the horizontal scalability and limits of Kubernetes services.','Go','CLI Tool','Intermediate',0,'online','manual','4448392cd8e9b16e3e7d2107e19aa3d457adee5d229d47139ad4911f1cdf4019',100.0,1.77903358397102594e+09,1,'2026-03-31T13:01:05Z',NULL,NULL,NULL,'["Observability & Performance", "Performance Testing", "Load Generation"]','["[ENTERPRISE-STABLE]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-03-31T13:01:05Z", "gh_stars": 6796}');
INSERT INTO "resources" VALUES('https://github.com/colbymchenry/codegraph','CodeGraph','Pre-indexed local code knowledge graph designed to optimize context and tool usage for AI coding agents.','2026',4,'An advanced, local-first code intelligence tool that generates a semantic knowledge graph of repository structures, symbols, and dependencies using Tree-sitter parsing. Explicitly designed to support AI coding agents such as Claude Code, Cursor, and Codex over Model Context Protocol (MCP), it enables agents to resolve queries through lightweight graph traversals rather than expensive, repetitive file scans. By caching symbol relationships locally, it cuts agent exploration tool calls by up to 70% and drastically reduces LLM token consumption in active development workflows.','en','GitHub Repository','Advanced',0,'online','automatic','aa066a24524051cced36b29d95217065cf3460f6289ee45d67e2bd5314cc1c0d',NULL,1.78035214849394392e+09,0,'2026-06-01T00:22:31Z',NULL,NULL,NULL,'["AI Agents", "Model Context Protocol", "Semantic Search", "Developer Tools"]','["EMERGING", "COMMUNITY-TOOL"]','[]','[]','{}','{"category": "ai-agents-mcp", "gh_license": "MIT", "gh_pushed": "2026-06-01T00:22:31Z", "gh_stars": 36643, "reputation_status": "Vetted", "reputation_summary": "Vetted and trending tool with viral adoption in the developer community, praised for cutting Claude Code token costs.", "social_preview_url": "https://opengraph.githubassets.com/1bc2c1f9b88a9c7fccf7a845c9f892fcf6f65efa74d296b40081a8452f0a6d80/colbymchenry/codegraph", "source_provenance": "X.com (midudev)", "suggested_new_category": "ai-development-tools"}');
INSERT INTO "resources" VALUES('https://github.com/collabnix/kubetools',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','601a1e421a215648e6e2a4a0ff9b01304a57b267f5564df9808d9c14e39757f1',100.0,1.77903297808875393e+09,0,'2026-05-17T17:49:38.088754+02:00',NULL,NULL,NULL,'[]','[]','["docs/other-awesome-lists.md"]','[]','{}','{"is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/collections/learn-to-code','github.com/collections/learn-to-code 🌟','','2026',0,'An official curated GitHub collection designed to outline primary programming routes, fundamental data structures, and foundational algorithms. Helps novice and intermediate engineers rapidly build software development skills.','N/A','GitHub Collection','Beginner',0,'online','manual','88f419dec7275f96ab2855afcc2f49d1899b97dfae0ee30d0ce630bbff52ffe9',100.0,1.78173612287694692e+09,1,'2026-06-18T00:42:02.876947+02:00',NULL,NULL,NULL,'["Software Engineering", "Education", "Foundations"]','["[COMMUNITY-TOOL]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "is_special": true}');
INSERT INTO "resources" VALUES('https://github.com/commjoen/wrongsecrets','==commjoen/wrongsecrets: OWASP WrongSecrets==','','2026',4,'OWASP WrongSecrets is an interactive training app containing purposely exposed secrets across various cloud-native scenarios (e.g., inside Docker layers, K8s configs, cloud stores). Excellent for developer training, team labs, and security awareness auditing.','Java','Repository','Intermediate',1,'online','manual','39e152f28c760f881808bd94a569729ed8f9a09702af02f5671d792e3fcac423',100.0,1.77902980221870398e+09,1,'2026-04-18T04:13:48Z',NULL,NULL,NULL,'["Security", "Education & Training", "Vulnerable Labs"]','["[ENTERPRISE-STABLE]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_license": "AGPL-3.0", "gh_pushed": "2026-04-18T04:13:48Z", "gh_stars": 0}');
INSERT INTO "resources" VALUES('https://github.com/cloudtty/cloudtty','cloudtty/cloudtty: A Kubernetes Cloud Shell (Web Terminal) Operator','','2025',2,'CloudTTY is an operator-backed web terminal designed to securely run browser-based command shell windows inside Kubernetes. Leveraging native container APIs, it provides access to authorized shells without external SSH configurations, proving invaluable for multi-tenant developer portal integration.','Go','Operator / Web UI','Advanced',1,'online','manual','3028047efca167255852e833c529b4ebbc136ff241c39a55f7bfef920bff078c',100.0,1779029421.90367,1,'2026-05-21T06:52:50Z',NULL,NULL,NULL,'["Operations", "CLI Tooling", "Web Terminal"]','["[COMMUNITY-TOOL]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-05-21T06:52:50Z", "gh_stars": 655, "gh_open_issues_30d": 12, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:27:48.931653+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/clusternet/clusternet','==github.com/clusternet==','','2021',5,'Clusternet is an open-source, multi-cluster management framework designed to orchestrate application deployment across heterogeneous cloud-to-edge Kubernetes networks. It decouples control planes by introducing push and pull-based scheduling mechanisms, allowing seamless policy propagation.','Go','Multi-cluster Controller','Advanced',0,'online','manual','fc6d32ef3d10ebd1ade3e69b4b3e71cda12fe6bc09e44bcb5e38c24a8900c685',100.0,1.77903421195224404e+09,1,'2026-06-08T04:23:14Z',NULL,NULL,NULL,'["Platform Engineering", "Multi-Cluster Routing", "Fleet Orchestration"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-08T04:23:14Z", "gh_stars": 1437, "gh_open_issues_30d": 69, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:27:49.660589+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/clusterpedia-io/clusterpedia','clusterpedia-io/clusterpedia 🌟','','2023',5,'Clusterpedia is a high-performance open-source search engine for multi-cluster Kubernetes resources. It periodically synchronizes objects from countless distinct environments into a centralized database, exposing a standard Kubernetes API endpoint to enable low-latency, cross-cluster resource discovery and management.','Go','Software','Advanced',0,'online','manual','3775a48570c85b1417c09243062e2d6cb3e17462b934251c9410f1215318fa6d',100.0,1.77903146890533399e+09,1,'2026-05-30T00:47:17Z',NULL,NULL,NULL,'["Kubernetes Management", "Multi-Cluster", "Search Engine"]','["[DE FACTO STANDARD]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-05-30T00:47:17Z", "gh_stars": 873, "is_special": true, "gh_open_issues_30d": 64, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:27:50.367284+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/clvx/k8s-rbac-model','github.com/clvx/k8s-rbac-model: Kubernetes RBAC Model','','2019',5,'Curator Insight: A conceptual visualization framework for modeling Kubernetes RBAC policies. Live Grounding: The project has seen zero updates in over 5 years. Deprioritized under MVQ rules due to structural obsolescence against modern apiGroups.','JavaScript','Code Repository','Intermediate',0,'online','manual','47af26afb1e6187c9e511f90ee627aaf989c3bb6d9012c8b95ff36a969aa242d',100.0,1.77903392552799105e+09,1,'2020-09-01T20:19:40Z',NULL,NULL,NULL,'["Security", "Identity & Access", "RBAC", "Legacy Tools"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-security.md"]','["kubernetes-security.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2020-09-01T20:19:40Z", "gh_stars": 26, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:51.077601+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cncf/tag-security','cncf/tag-security: CNCF Security Technical Advisory Group 🌟','','2026',3,'The premier open-source governance and advisory group defining cloud-native security, compliance, and secure software supply chains. Provides critical specifications including the CNCF Security Whitepaper and Cloud Native Threat Matrix, which serve as foundational guides for platform architects.','English','GitHub Repository','Advanced',0,'online','manual','fbaed98c63fc735d027aaa6ca925d7db7cc292526f16fb9a3c807331039634b5',100.0,1.7790343949634521e+09,1,'2025-12-08T07:51:51Z',NULL,NULL,NULL,'["Security", "Cloud-Native", "Governance Standards"]','["[COMMUNITY-TOOL]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_license": "NOASSERTION", "gh_pushed": "2025-12-08T07:51:51Z", "gh_stars": 2264, "gh_open_issues_30d": 20, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:27:51.869207+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cni-genie/CNI-Genie','CNI-Genie','','N/A',0,NULL,NULL,NULL,NULL,0,NULL,'manual','86431846eeb87d1bd76fb941fa4b2156d7b39cf1ceb2cf7e0be39dd82f532351',100.0,1.77903134989142489e+09,1,'2026-05-17T17:22:29.891425+02:00',NULL,NULL,NULL,'[]','[]','["docs/kubernetes-networking.md"]','[]','{}','{"gh_license": "Apache-2.0", "gh_open_issues_30d": 42, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:27:52.586676+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cnrancher/autok3s','cnrancher/autok3s','','2023',3,'Curator Insight defines autok3s as a lightweight tool to provision and manage K3s clusters across various cloud providers. Live engineering truth in 2026 notes that its development has stabilized, functioning well for localized multi-cloud rapid prototyping. It provides an API and a CLI wrapper to simplify provisioning on AWS, Alibaba, and Tencent Cloud.','Go','Code Repository','Medium',0,'online','manual','1c1ad8e505e61906ce2c7b545f0e5cd62a00cc56b4fbf1dda53728c345269f05',100.0,1.779030022644068e+09,1,'2025-11-25T08:19:31Z',NULL,NULL,NULL,'["Edge Computing", "Kubernetes Provisioning", "AutoK3s"]','["[COMMUNITY-TOOL]"]','["docs/rancher.md"]','["rancher.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-11-25T08:19:31Z", "gh_stars": 938, "gh_open_issues_30d": 52, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:27:53.321235+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/cockroachdb/copyist','copyist','','2020',4,'Details copyist, a Go library developed by CockroachDB to automate SQL mock generations. Records and plays back transactions to let developers perform database testing without spinning up full DBMS clusters.','English','GitHub Repository','Advanced',0,'online','manual','ba28e669744ae9985c71af064756c8bc779898666820d377644e609ec280f7bc',100.0,1779029573.66604,1,'2026-06-04T18:30:28Z',NULL,NULL,NULL,'["DevOps & Quality Assurance", "Continuous Testing", "Database Mocking"]','["[ENTERPRISE-STABLE]"]','["docs/testops.md"]','["testops.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-04T18:30:28Z", "gh_stars": 853, "gh_open_issues_30d": 11, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:27:54.085607+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/codecentric/helm-charts','Codecentric Jenkins 🌟','','2025',3,'An active, community-maintained collection of high-quality Helm charts, featuring a robust configuration path for DevOps tooling like Jenkins. It provides clean, production-ready, security-hardened manifests optimized for enterprise use.','YAML','Helm Chart','Intermediate',1,'online','manual','99e7b1b7ee743f0f3b3cea0e279681350b7fe180bdc3f25c723909fe85b0ae84',100.0,1.77903095227094793e+09,1,'2026-06-08T12:05:48Z',NULL,NULL,NULL,'["Platform Engineering", "Kubernetes GitOps & Packaging", "DevOps Pipelines"]','["[COMMUNITY-TOOL]"]','["docs/helm.md"]','["helm.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-08T12:05:48Z", "gh_stars": 733, "gh_open_issues_30d": 3, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:54.794364+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/codecentric/spring-boot-admin','codecentric''s Spring Boot Admin UI 🌟','','2026',5,'A popular community dashboard engineered to coordinate, monitor, and manage Spring Boot applications. By parsing actuator telemetry data, it displays real-time statistics including thread states, JVM metrics, memory usage, dynamic logging levels, and distributed transaction status.','Java','Tool','Intermediate',1,'online','manual','68187b3accb6b796cf3f24c30de656df4f4bf632336a27078b4401d695c31da1',100.0,1.77903101255946898e+09,1,'2026-06-13T18:44:23Z',NULL,NULL,NULL,'["Spring Ecosystem", "Observability", "Administration UI"]','["[DE FACTO STANDARD]"]','["docs/java_frameworks.md"]','["java_frameworks.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T18:44:23Z", "gh_stars": 12828, "gh_open_issues_30d": 47, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:27:55.502699+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/codecrafters-io/build-your-own-x','Build Your Own X','','2024',5,'An immensely popular community-driven compilation of step-by-step guides for building complex software systems (compilers, databases, operating systems, Docker) from scratch. Perfect for deep pedagogical exploration of core engineering systems.','English','Repository','Advanced',0,'online','manual','b2853cf5c0430a748f639c71fd07733cc66e705c5ace8005cc37bdeca30e97e0',100.0,1.78173592113429904e+09,1,'2026-06-18T00:38:41.134299+02:00',NULL,NULL,NULL,'["Software Engineering", "Education", "Systems Programming"]','["[DE FACTO STANDARD]"]','["docs/devel-sites.md", "docs/introduction.md", "docs/kubernetes-tutorials.md"]','["kubernetes-tutorials.md", "devel-sites.md", "introduction.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "gh_open_issues_30d": 506, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:27:56.263798+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/coderanger/migrations-operator','coderanger/migrations-operator: Migrations-Operator','','2024',5,'This controller coordinates database schema migration jobs relative to active deployment rollouts. By intercepting deployment events, it executes schema changes as blocking preparatory steps, ensuring application microservices only start up once target database structures align.','Go','Repository','Intermediate',1,'online','manual','621080d14963a805f53f5cb620b78e4b254f7aceb764eded9b214d0ace704973',100.0,1.77903144914970588e+09,1,'2025-06-10T07:31:27Z',NULL,NULL,NULL,'["Data & Databases", "Lifecycle Management", "Schema Migrations"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-operators-controllers.md"]','["kubernetes-operators-controllers.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2025-06-10T07:31:27Z", "gh_stars": 136, "gh_open_issues_30d": 4, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:56.969768+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/codesenberg/bombardier','codesenberg/bombardier 🌟','','2017',4,'A high-performance, concurrent HTTP benchmarking and load generation tool written in Go. Utilizing standard fasthttp routines, it generates substantial networking loads to test the horizontal scalability and limits of Kubernetes services.','Go','CLI Tool','Intermediate',0,'online','manual','4448392cd8e9b16e3e7d2107e19aa3d457adee5d229d47139ad4911f1cdf4019',100.0,1.77903358397102594e+09,1,'2026-03-31T13:01:05Z',NULL,NULL,NULL,'["Observability & Performance", "Performance Testing", "Load Generation"]','["[ENTERPRISE-STABLE]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2026-03-31T13:01:05Z", "gh_stars": 6796, "gh_open_issues_30d": 27, "gh_open_prs_30d": 0, "gh_community_health": "healthy", "gh_activity_checked": "2026-06-19T15:27:57.657643+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/colbymchenry/codegraph','CodeGraph','Pre-indexed local code knowledge graph designed to optimize context and tool usage for AI coding agents.','2026',4,'An advanced, local-first code intelligence tool that generates a semantic knowledge graph of repository structures, symbols, and dependencies using Tree-sitter parsing. Explicitly designed to support AI coding agents such as Claude Code, Cursor, and Codex over Model Context Protocol (MCP), it enables agents to resolve queries through lightweight graph traversals rather than expensive, repetitive file scans. By caching symbol relationships locally, it cuts agent exploration tool calls by up to 70% and drastically reduces LLM token consumption in active development workflows.','en','GitHub Repository','Advanced',0,'online','automatic','aa066a24524051cced36b29d95217065cf3460f6289ee45d67e2bd5314cc1c0d',NULL,1.78035214849394392e+09,0,'2026-06-01T00:22:31Z',NULL,NULL,NULL,'["AI Agents", "Model Context Protocol", "Semantic Search", "Developer Tools"]','["EMERGING", "COMMUNITY-TOOL"]','[]','[]','{}','{"category": "ai-agents-mcp", "gh_license": "MIT", "gh_pushed": "2026-06-01T00:22:31Z", "gh_stars": 36643, "reputation_status": "Vetted", "reputation_summary": "Vetted and trending tool with viral adoption in the developer community, praised for cutting Claude Code token costs.", "social_preview_url": "https://opengraph.githubassets.com/1bc2c1f9b88a9c7fccf7a845c9f892fcf6f65efa74d296b40081a8452f0a6d80/colbymchenry/codegraph", "source_provenance": "X.com (midudev)", "suggested_new_category": "ai-development-tools", "gh_open_issues_30d": 273, "gh_open_prs_30d": 0, "gh_community_health": "active", "gh_activity_checked": "2026-06-19T15:27:58.328400+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/collabnix/kubetools',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'manual','601a1e421a215648e6e2a4a0ff9b01304a57b267f5564df9808d9c14e39757f1',100.0,1.77903297808875393e+09,0,'2026-05-17T17:49:38.088754+02:00',NULL,NULL,NULL,'[]','[]','["docs/other-awesome-lists.md"]','[]','{}','{"is_special": true, "gh_open_issues_30d": 7, "gh_open_prs_30d": 0, "gh_community_health": "low", "gh_activity_checked": "2026-06-19T15:27:59.041407+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/collections/learn-to-code','github.com/collections/learn-to-code 🌟','','2026',0,'An official curated GitHub collection designed to outline primary programming routes, fundamental data structures, and foundational algorithms. Helps novice and intermediate engineers rapidly build software development skills.','N/A','GitHub Collection','Beginner',0,'online','manual','88f419dec7275f96ab2855afcc2f49d1899b97dfae0ee30d0ce630bbff52ffe9',100.0,1.78173612287694692e+09,1,'2026-06-18T00:42:02.876947+02:00',NULL,NULL,NULL,'["Software Engineering", "Education", "Foundations"]','["[COMMUNITY-TOOL]"]','["docs/other-awesome-lists.md"]','["architectural-foundations.md", "other-awesome-lists.md"]','{}','{"gh_stars": 0, "gh_pushed": "N/A", "gh_license": "N/A", "is_special": true, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:27:59.661397+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/commjoen/wrongsecrets','==commjoen/wrongsecrets: OWASP WrongSecrets==','','2026',4,'OWASP WrongSecrets is an interactive training app containing purposely exposed secrets across various cloud-native scenarios (e.g., inside Docker layers, K8s configs, cloud stores). Excellent for developer training, team labs, and security awareness auditing.','Java','Repository','Intermediate',1,'online','manual','39e152f28c760f881808bd94a569729ed8f9a09702af02f5671d792e3fcac423',100.0,1.77902980221870398e+09,1,'2026-04-18T04:13:48Z',NULL,NULL,NULL,'["Security", "Education & Training", "Vulnerable Labs"]','["[ENTERPRISE-STABLE]"]','["docs/devsecops.md"]','["devsecops.md"]','{}','{"gh_license": "AGPL-3.0", "gh_pushed": "2026-04-18T04:13:48Z", "gh_stars": 0, "gh_open_issues_30d": 0, "gh_open_prs_30d": 0, "gh_community_health": "dormant", "gh_activity_checked": "2026-06-19T15:28:00.431888+02:00"}');
INSERT INTO "resources" VALUES('https://github.com/config-syncer/config-syncer','kubeops/config-syncer: Config Syncer (previously Kubed)','','2017',4,'Config Syncer (previously known as Kubed) is a Kubernetes operator designed to sync ConfigMaps and Secrets across multiple namespaces or cluster systems. It allows operations teams to configure central payloads with dynamic automated replication.','Go','Operator','Medium',1,'online','manual','754c57db37a7ea1db931009daa59653fbc5d9e9b1efe6165576e68eca559a84b',100.0,1.77913049496918392e+09,1,'2026-05-16T02:04:01Z',NULL,NULL,NULL,'["Application Delivery", "Configuration Management", "Secret Distribution"]','["[ENTERPRISE-STABLE]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-05-16T02:04:01Z", "gh_stars": 1017}');
INSERT INTO "resources" VALUES('https://github.com/configurator/kubefs','kubefs','','2021',5,'A virtual file system mount that represents active Kubernetes configuration namespaces and resources as standard local directory paths. Allows operators to inspect running container configs and logs using standard file explorers.','Go','CLI Tool','Advanced',0,'online','manual','8b986e8658e951ec1116fe47a0ca27d15fcc58a43f050b427af34dbf0caeb86c',100.0,1.77903053177552294e+09,1,'2020-06-23T19:38:50Z',NULL,NULL,NULL,'["Developer Experience", "Filesystems", "Resource Visualization"]','["[DE FACTO STANDARD]"]','["docs/kubernetes-tools.md"]','["kubernetes-tools.md"]','{}','{"gh_license": "MIT", "gh_pushed": "2020-06-23T19:38:50Z", "gh_stars": 93}');
INSERT INTO "resources" VALUES('https://github.com/containerd/containerd','containerd - An open and reliable container runtime','','2026',5,'containerd is an industry-standard container runtime designed to be embedded into larger systems like Kubernetes. Following the deprecation of Docker''s native runtime engine in Kubernetes, containerd has emerged as the de facto execution engine for production-grade orchestrators.','Go','Repository','Advanced',0,'online','manual','ce5d5ddc82dcb8a73ef4182dc00d67cdcbd4cd05311a18d932eb4ac6dd55b7f4',100.0,1.77902912140910291e+09,1,'2026-06-13T19:17:34Z',NULL,NULL,NULL,'["Container Runtime", "Core Infrastructure", "Execution Engines"]','["[DE FACTO STANDARD]"]','["docs/container-managers.md", "docs/docker.md", "docs/kubernetes.md"]','["container-managers.md", "docker.md", "kubernetes.md"]','{}','{"gh_license": "Apache-2.0", "gh_pushed": "2026-06-13T19:17:34Z", "gh_stars": 20835}');
+1602 -1
View File
File diff suppressed because it is too large Load Diff
+4018 -3613
View File
File diff suppressed because it is too large Load Diff
+1 -1684
View File
File diff suppressed because it is too large Load Diff
+53
View File
@@ -0,0 +1,53 @@
"""One-off migration: normalize `gh_pushed` to None.
The enrichment writers historically stored the string "N/A" in the date
field `gh_pushed` when GitHub data was unavailable. That literal reached
`datetime.fromisoformat()` in the safety audit and curator, producing
"Invalid isoformat string: 'N/A'" warnings (and, combined with other null
fields, an aborted audit). The writers now emit None; this script cleans
the existing inventory so the stored data matches.
Usage:
python3 -m scripts.normalize_gh_pushed --dry-run # report only
python3 -m scripts.normalize_gh_pushed # apply + save (YAML+SQL)
NOTE: save_inventory() round-trips through in-memory SQLite, and SQLite's
iterdump renders REAL columns (e.g. epoch timestamps) with version-specific
float precision. Running this on a machine whose SQLite differs from the one
that generated the committed inventory.sql will rewrite ~all rows with no
semantic change. Run it in CI (same SQLite as the pipeline) so the committed
diff stays limited to the actual gh_pushed values.
"""
import sys
from src.inventory_manager import load_inventory, save_inventory
from src.logger import log_event
BAD_VALUES = {"N/A", "NONE", ""}
def main(dry_run: bool):
inv = load_inventory()
changed = 0
for url, meta in inv.items():
if not isinstance(meta, dict):
continue
pushed = meta.get("gh_pushed")
if isinstance(pushed, str) and pushed.strip().upper() in BAD_VALUES:
changed += 1
if not dry_run:
meta["gh_pushed"] = None
log_event(f"[Migration] gh_pushed normalize: {changed} entries with non-date value")
if dry_run:
log_event("[Migration] dry-run — no files written")
return
if changed:
save_inventory(inv)
log_event(f"[Migration] saved inventory (YAML+SQL); normalized {changed} entries")
else:
log_event("[Migration] nothing to change")
if __name__ == "__main__":
main(dry_run="--dry-run" in sys.argv)
+7 -3
View File
@@ -115,9 +115,13 @@ async def evaluate_extracted_assets(raw_assets: List[Dict]) -> Dict[str, Dict]:
gh_meta = await _get_github_activity(asset["url"]) if "github.com" in asset["url"] else {}
mvq_penalty = False
if gh_meta.get("gh_pushed"):
ld = datetime.fromisoformat(gh_meta["gh_pushed"].replace("Z", "+00:00"))
if (datetime.now(ld.tzinfo) - ld).days > (365 * 4): mvq_penalty = True
pushed = gh_meta.get("gh_pushed")
if pushed and str(pushed).strip().upper() not in ("N/A", "NONE"):
try:
ld = datetime.fromisoformat(str(pushed).replace("Z", "+00:00"))
if (datetime.now(ld.tzinfo) - ld).days > (365 * 4): mvq_penalty = True
except Exception as e:
log_event(f"[WARN] MVQ penalty date parse for {asset['url']}: {str(e)[:100]}")
batch_data.append({
"asset": asset, "content": web_content[:1500], "hash": c_hash,
+4 -4
View File
@@ -50,7 +50,7 @@ def get_readable_category(category: str) -> str:
async def fetch_github_metadata(client: httpx.AsyncClient, url: str, sem: asyncio.Semaphore) -> tuple[str, dict]:
default_meta = {
"gh_stars": 0,
"gh_pushed": "N/A",
"gh_pushed": None, # date field: unknown = None, never the string "N/A"
"gh_license": "N/A"
}
match = re.search(r'github\.com/([^/]+/[^/]+)', url)
@@ -72,20 +72,20 @@ async def fetch_github_metadata(client: httpx.AsyncClient, url: str, sem: asynci
lic_id = lic.get("spdx_id", "N/A") if isinstance(lic, dict) else "N/A"
return url, {
"gh_stars": data.get("stargazers_count", 0),
"gh_pushed": data.get("pushed_at", "N/A"),
"gh_pushed": data.get("pushed_at"),
"gh_license": lic_id
}
elif resp.status_code == 404:
return url, {
"gh_stars": 0,
"gh_pushed": "N/A",
"gh_pushed": None,
"gh_license": "N/A",
"status": "dead"
}
else:
return url, {
"gh_stars": 0,
"gh_pushed": "N/A",
"gh_pushed": None,
"gh_license": "N/A",
"status": "unreachable"
}
+2 -2
View File
@@ -211,7 +211,7 @@ async def get_github_activity(url: str) -> Dict:
"""
default_meta = {
"gh_stars": 0,
"gh_pushed": "N/A",
"gh_pushed": None, # date field: unknown = None, never the string "N/A"
"gh_license": "N/A"
}
match = re.search(r'github\.com/([^/]+/[^/]+)', url)
@@ -236,7 +236,7 @@ async def get_github_activity(url: str) -> Dict:
lic_id = lic.get("spdx_id", "N/A") if isinstance(lic, dict) else "N/A"
return {
"gh_stars": data.get("stargazers_count", 0),
"gh_pushed": data.get("pushed_at", "N/A"),
"gh_pushed": data.get("pushed_at"),
"gh_license": lic_id
}
except Exception as e:
+12 -3
View File
@@ -113,7 +113,7 @@ def save_inventory(inv: Dict, shard_file: str = None):
addition_method TEXT,
content_hash TEXT,
health_score REAL,
last_checked REAL,
last_checked INTEGER,
needs_ai_refresh BOOLEAN,
discovered_at TEXT,
last_ai_eval TEXT,
@@ -139,7 +139,16 @@ def save_inventory(inv: Dict, shard_file: str = None):
for url, entry in inv.items():
if not isinstance(entry, dict):
continue
# last_checked is a coarse staleness timestamp (epoch seconds). Normalize
# it to int on the entry itself — before building the SQL record AND the
# YAML dump below — so both serializations agree, and SQLite's
# version-specific REAL->text float formatting can't rewrite every row on
# dump. Sub-second precision is not used by any reader.
lc = entry.get("last_checked")
if isinstance(lc, float):
entry["last_checked"] = int(lc)
record = {col: entry.get(col) for col in columns if col not in ["hierarchy", "tags", "v1_locations", "v2_locations", "youtube_mosaic", "extra_metadata"]}
record["url"] = url
@@ -160,7 +169,7 @@ def save_inventory(inv: Dict, shard_file: str = None):
# Conversions
record["is_microservice"] = 1 if record.get("is_microservice") else 0
record["needs_ai_refresh"] = 1 if record.get("needs_ai_refresh") else 0
placeholders = ", ".join(["?"] * len(columns))
values = [record[col] for col in columns]
cursor.execute(f"INSERT OR REPLACE INTO resources ({', '.join(columns)}) VALUES ({placeholders})", values)
+18 -10
View File
@@ -18,16 +18,24 @@ def load_inventory_channels():
channels = []
for url, entry in inventory.items():
if isinstance(entry, dict) and 'youtube_mosaic' in entry:
metadata = entry['youtube_mosaic']
channels.append({
'title': entry.get('title', 'Unknown Channel'),
'url': url,
'image': metadata.get('image', ''),
'category': metadata.get('category', 'learning_influencers_communities'),
'order_v1': metadata.get('order_v1', 9999),
'order_v2': metadata.get('order_v2', 9999)
})
if not isinstance(entry, dict):
continue
metadata = entry.get('youtube_mosaic')
# Every inventory entry carries a 'youtube_mosaic' column that the SQL
# round-trip materializes as an empty dict {}, so a bare key-presence
# check matches the entire inventory and explodes the mosaic to ~18k
# logos. Only treat an entry as a mosaic channel when it actually has
# mosaic metadata with a logo image.
if not isinstance(metadata, dict) or not metadata.get('image'):
continue
channels.append({
'title': entry.get('title', 'Unknown Channel'),
'url': url,
'image': metadata.get('image', ''),
'category': metadata.get('category', 'learning_influencers_communities'),
'order_v1': metadata.get('order_v1', 9999),
'order_v2': metadata.get('order_v2', 9999)
})
return channels
def build_v2_mosaic_markdown_from_channels(channels):
+38 -19
View File
@@ -86,15 +86,23 @@ class SafetyGuard:
for url, meta in self.inventory.items():
if "github.com" in url and meta.get("v2_locations"):
pushed = meta.get("gh_pushed", "")
if pushed:
try:
last_date = datetime.fromisoformat(pushed.replace("Z", "+00:00"))
inactive_years = (datetime.now(last_date.tzinfo) - last_date).days / 365
stars = meta.get("gh_stars", meta.get("stars", 0) * 100)
if inactive_years > 4 and stars < 30:
self.warnings.append(f"🏚️ **MVQ Violation**: Stale repo `{url}` (>4yrs) in V2 with low impact")
except Exception as e:
log_event(f"[WARN] MVQ compliance check for {url}: {str(e)[:100]}")
# Skip entries with no usable push date. Enrichment stores "N/A"
# (and historically None/empty) when GitHub data is unavailable;
# these are not ISO dates and must not reach fromisoformat().
if not pushed or str(pushed).strip().upper() in ("N/A", "NONE"):
continue
try:
last_date = datetime.fromisoformat(str(pushed).replace("Z", "+00:00"))
inactive_years = (datetime.now(last_date.tzinfo) - last_date).days / 365
# gh_stars may be missing; fall back to V1 stars (×100 heuristic).
# Coalesce None so a stored null never reaches the multiplication.
stars = meta.get("gh_stars")
if stars is None:
stars = (meta.get("stars") or 0) * 100
if inactive_years > 4 and stars < 30:
self.warnings.append(f"🏚️ **MVQ Violation**: Stale repo `{url}` (>4yrs) in V2 with low impact")
except Exception as e:
log_event(f"[WARN] MVQ compliance check for {url}: {str(e)[:100]}")
def validate_linguistic_tagging(self):
"""Mandate 10: Explicit Language Tagging."""
@@ -104,7 +112,9 @@ class SafetyGuard:
with open(os.path.join(V2_DIR, file), "r") as f:
content = f.read()
for url, meta in self.inventory.items():
lang = meta.get("language", "English")
# language may be stored as null; coalesce to avoid None.lower()
# aborting the entire audit.
lang = meta.get("language") or "English"
if lang.lower() != "english" and url in content:
tag = f"[{lang.upper()} CONTENT]"
if tag not in content:
@@ -289,15 +299,24 @@ class SafetyGuard:
except Exception as e:
log_event(f"[WARN] load old inventory for data integrity check: {str(e)[:100]}")
self.validate_semantic_interlinking()
self.validate_special_assets_completeness()
self.validate_mvq_compliance()
self.validate_linguistic_tagging()
self.validate_platinum_schema()
self.validate_structural_standards() # Mandate 30 & 19
self.validate_v2_architecture()
self.validate_navigation_sync() # Mandate 11
self.validate_forbidden_tags() # Safety Hardening
# Run each mandate in isolation so one bad entry can't abort the
# entire audit (e.g. a null field raising mid-validation).
validations = [
self.validate_semantic_interlinking,
self.validate_special_assets_completeness,
self.validate_mvq_compliance,
self.validate_linguistic_tagging,
self.validate_platinum_schema,
self.validate_structural_standards, # Mandate 30 & 19
self.validate_v2_architecture,
self.validate_navigation_sync, # Mandate 11
self.validate_forbidden_tags, # Safety Hardening
]
for check in validations:
try:
check()
except Exception as e:
log_event(f"[WARN] audit mandate {check.__name__} failed: {str(e)[:100]}")
status = "✅ PASS" if not self.errors else "❌ FAILED"
if not self.errors and self.warnings: status = "⚠️ WARNING"
+56 -56
View File
@@ -5,15 +5,15 @@
<link>https://nubenetes.com/</link>
<description>AI-curated top picks from the Cloud Native &amp; Kubernetes ecosystem</description>
<language>en</language>
<lastBuildDate>Fri, 19 Jun 2026 11:58:33 -0000</lastBuildDate>
<lastBuildDate>Fri, 19 Jun 2026 13:30:36 -0000</lastBuildDate>
<atom:link href="https://nubenetes.com/feed.xml" rel="self" type="application/rss+xml"/>
<item>
<title>docs.anthropic.com: Claude Code CLI</title>
<link>https://docs.anthropic.com/en/docs/agents-and-tools/claude-code/overview</link>
<guid isPermaLink="true">https://docs.anthropic.com/en/docs/agents-and-tools/claude-code/overview</guid>
<title>Kubecost 🌟</title>
<link>https://www.apptio.com/products/kubecost/?src=kc-com</link>
<guid isPermaLink="true">https://www.apptio.com/products/kubecost/?src=kc-com</guid>
<pubDate>Thu, 18 Jun 2026 00:00:00 -0000</pubDate>
<category>AI &amp; Agents</category>
<description>[CRITICAL] Anthropic's official agentic CLI redefines developer workflows by allowing autonomous agents to execute terminal commands, run tests, and manage Git directly.</description>
<category>Kubernetes &amp; Orchestration</category>
<description>[CRITICAL] It is the industry-standard tool for real-time cost allocation, critical for FinOps practices in multi-cluster environments.</description>
</item>
<item>
<title>antigravity.google: Google Antigravity Agentic Platform</title>
@@ -21,15 +21,23 @@
<guid isPermaLink="true">https://antigravity.google</guid>
<pubDate>Thu, 18 Jun 2026 00:00:00 -0000</pubDate>
<category>AI &amp; Agents</category>
<description>[CRITICAL] Bridges the gap between local agent prototypes and production-grade deployments on secure Google Kubernetes Engine (GKE) clusters.</description>
<description>[CRITICAL] It directly bridges the gap between local agent prototypes and production-grade Google Kubernetes Engine (GKE) deployments for stateful AI agents.</description>
</item>
<item>
<title>cursor.com: Cursor AI Code Editor</title>
<link>https://cursor.com</link>
<guid isPermaLink="true">https://cursor.com</guid>
<title>docs.anthropic.com: Claude Code CLI</title>
<link>https://docs.anthropic.com/en/docs/agents-and-tools/claude-code/overview</link>
<guid isPermaLink="true">https://docs.anthropic.com/en/docs/agents-and-tools/claude-code/overview</guid>
<pubDate>Thu, 18 Jun 2026 00:00:00 -0000</pubDate>
<category>AI &amp; Agents</category>
<description>[CRITICAL] As the leading AI-first IDE, it has shifted the industry paradigm of daily software engineering through multi-file agentic code generation.</description>
<description>[CRITICAL] Anthropic's official tool fundamentally shifts developer workflows by bringing autonomous agentic coding and execution directly into the terminal.</description>
</item>
<item>
<title>Project Calico 🌟</title>
<link>https://www.tigera.io/project-calico</link>
<guid isPermaLink="true">https://www.tigera.io/project-calico</guid>
<pubDate>Thu, 18 Jun 2026 00:00:00 -0000</pubDate>
<category>Security &amp; Compliance</category>
<description>[CRITICAL] Calico is an industry-standard networking and security engine enabling high-performance eBPF container network interface enforcement.</description>
</item>
<item>
<title>Crossplane</title>
@@ -37,7 +45,15 @@
<guid isPermaLink="true">https://nubenetes.com/crossplane</guid>
<pubDate>Sun, 14 Jun 2026 00:00:00 -0000</pubDate>
<category>Kubernetes &amp; Orchestration</category>
<description>[CRITICAL] It represents a major paradigm shift, transforming Kubernetes from a container orchestrator into a universal control plane for all cloud infrastructure.</description>
<description>[CRITICAL] Crossplane spearheads a major paradigm shift by turning Kubernetes into a universal control plane to declaratively manage any cloud infrastructure.</description>
</item>
<item>
<title>==Azure/azure-workload-identity==</title>
<link>https://github.com/Azure/azure-workload-identity</link>
<guid isPermaLink="true">https://github.com/Azure/azure-workload-identity</guid>
<pubDate>Sun, 14 Jun 2026 00:00:00 -0000</pubDate>
<category>Kubernetes &amp; Orchestration</category>
<description>[CRITICAL] This is the enterprise standard for secure, zero-trust OIDC identity federation between Kubernetes and Microsoft Entra ID.</description>
</item>
<item>
<title>NVIDIA/k8s-device-plugin: NVIDIA device plugin for Kubernetes</title>
@@ -45,7 +61,7 @@
<guid isPermaLink="true">https://github.com/NVIDIA/k8s-device-plugin</guid>
<pubDate>Sun, 14 Jun 2026 00:00:00 -0000</pubDate>
<category>Kubernetes &amp; Orchestration</category>
<description>[CRITICAL] It is the essential hardware-enablement layer allowing Kubernetes to dynamically schedule and manage physical GPUs for demanding AI and ML workloads.</description>
<description>[CRITICAL] It acts as the indispensable hardware integration layer required to orchestrate GPU-accelerated AI and ML workloads on Kubernetes.</description>
</item>
<item>
<title>vLLM on Kubernetes</title>
@@ -53,7 +69,7 @@
<guid isPermaLink="true">https://github.com/vllm-project/vllm</guid>
<pubDate>Sun, 14 Jun 2026 00:00:00 -0000</pubDate>
<category>AI &amp; Agents</category>
<description>[CRITICAL] Standardizes memory-efficient LLM serving via PagedAttention and provides concrete deployment templates for production Kubernetes clusters.</description>
<description>[CRITICAL] It provides the definitive standard for hosting highly optimized, memory-efficient LLM serving engines using PagedAttention on Kubernetes.</description>
</item>
<item>
<title>Tetragon (Cilium)</title>
@@ -61,7 +77,15 @@
<guid isPermaLink="true">https://github.com/cilium/tetragon</guid>
<pubDate>Sun, 14 Jun 2026 00:00:00 -0000</pubDate>
<category>Security &amp; Compliance</category>
<description>[CRITICAL] Provides kernel-level, eBPF-powered security observability and real-time threat enforcement directly within Kubernetes clusters.</description>
<description>[CRITICAL] eBPF-powered security observability at the kernel level represents a paradigm shift for Kubernetes runtime enforcement.</description>
</item>
<item>
<title>==dagger/dagger: Dagger is a portable devkit for CICD==</title>
<link>https://github.com/dagger/dagger</link>
<guid isPermaLink="true">https://github.com/dagger/dagger</guid>
<pubDate>Sun, 14 Jun 2026 00:00:00 -0000</pubDate>
<category>CI/CD &amp; GitOps</category>
<description>[CRITICAL] Dagger represents a major paradigm shift in CI/CD by replacing brittle YAML pipelines with portable, code-driven workflows executed on BuildKit.</description>
</item>
<item>
<title>kube-state-metrics 🌟</title>
@@ -69,15 +93,7 @@
<guid isPermaLink="true">https://github.com/kubernetes/kube-state-metrics</guid>
<pubDate>Sun, 14 Jun 2026 00:00:00 -0000</pubDate>
<category>Observability, SRE &amp; Testing</category>
<description>[CRITICAL] This indispensable agent translates raw Kubernetes API server states into actionable Prometheus metrics for cluster-wide health tracking.</description>
</item>
<item>
<title>buildkit</title>
<link>https://docs.docker.com/build</link>
<guid isPermaLink="true">https://docs.docker.com/build</guid>
<pubDate>Sun, 14 Jun 2026 00:00:00 -0000</pubDate>
<category>Containers &amp; Runtime</category>
<description>[CRITICAL] Docker's next-generation build engine radically accelerates container image creation through concurrent stage execution and advanced caching.</description>
<description>[CRITICAL] Essential cluster service that translates internal Kubernetes API resources into Prometheus metrics for accurate, real-time infrastructure state analysis.</description>
</item>
<item>
<title>github.com: Istio</title>
@@ -85,7 +101,15 @@
<guid isPermaLink="true">https://github.com/istio/istio</guid>
<pubDate>Sun, 14 Jun 2026 00:00:00 -0000</pubDate>
<category>Networking &amp; Service Mesh</category>
<description>[CRITICAL] As the dominant enterprise service mesh, Istio defines the standard for secure, high-performance microservices traffic management and observability.</description>
<description>[CRITICAL] The leading enterprise-grade service mesh that defines how modern cloud-native architectures secure, control, and observe traffic.</description>
</item>
<item>
<title>Teleport 🌟</title>
<link>https://github.com/gravitational/teleport</link>
<guid isPermaLink="true">https://github.com/gravitational/teleport</guid>
<pubDate>Sat, 13 Jun 2026 00:00:00 -0000</pubDate>
<category>Kubernetes &amp; Orchestration</category>
<description>[CRITICAL] Teleport is a leading zero-trust access gateway that consolidates and audits multi-protocol, multi-cluster infrastructure access.</description>
</item>
<item>
<title>github: Flux Version 2</title>
@@ -93,7 +117,7 @@
<guid isPermaLink="true">https://github.com/fluxcd/flux2</guid>
<pubDate>Sat, 13 Jun 2026 00:00:00 -0000</pubDate>
<category>CI/CD &amp; GitOps</category>
<description>[CRITICAL] A foundational GitOps controller toolkit that provides highly parallel, decoupled resource reconciliation directly inside Kubernetes.</description>
<description>[CRITICAL] Flux v2 is a foundational CNCF graduated project that implements a highly parallelized, modular GitOps controller architecture for enterprise-grade reconciliation.</description>
</item>
<item>
<title>github.com/prometheus/prometheus</title>
@@ -101,7 +125,7 @@
<guid isPermaLink="true">https://github.com/prometheus/prometheus</guid>
<pubDate>Sat, 13 Jun 2026 00:00:00 -0000</pubDate>
<category>Observability, SRE &amp; Testing</category>
<description>[CRITICAL] Prometheus remains the absolute cornerstone of cloud-native telemetry and the primary backend for modern SRE observability.</description>
<description>[CRITICAL] Serves as the foundational, de-facto standard metrics database and query engine powering the entire cloud-native observability ecosystem.</description>
</item>
<item>
<title>containerd - An open and reliable container runtime</title>
@@ -109,7 +133,7 @@
<guid isPermaLink="true">https://github.com/containerd/containerd</guid>
<pubDate>Sat, 13 Jun 2026 00:00:00 -0000</pubDate>
<category>Containers &amp; Runtime</category>
<description>[CRITICAL] Following Docker's runtime deprecation, containerd has become the industry-standard, CNCF-graduated core runtime powering Kubernetes clusters globally.</description>
<description>[CRITICAL] As the industry-standard container runtime for Kubernetes, containerd is foundational for modern cloud-native container execution.</description>
</item>
<item>
<title>runc</title>
@@ -117,7 +141,7 @@
<guid isPermaLink="true">https://github.com/opencontainers/runc</guid>
<pubDate>Sat, 13 Jun 2026 00:00:00 -0000</pubDate>
<category>Containers &amp; Runtime</category>
<description>[CRITICAL] As the canonical, OCI-compliant low-level runtime engine, runc is the fundamental foundation upon which most modern container ecosystems are built.</description>
<description>[CRITICAL] It is the canonical, low-level OCI-compliant container runtime that directly spawns and runs container processes across the industry.</description>
</item>
<item>
<title>hashicorp/vault</title>
@@ -125,7 +149,7 @@
<guid isPermaLink="true">https://github.com/hashicorp/vault</guid>
<pubDate>Fri, 12 Jun 2026 00:00:00 -0000</pubDate>
<category>Security &amp; Compliance</category>
<description>[CRITICAL] Acts as the industry-standard engine for dynamic secrets management, data protection, and enterprise Zero Trust identity broker.</description>
<description>[CRITICAL] It remains the absolute backbone of enterprise Zero Trust architectures and dynamic secrets management across multi-cloud environments.</description>
</item>
<item>
<title>OpenTelemetry Collector</title>
@@ -133,15 +157,7 @@
<guid isPermaLink="true">https://github.com/open-telemetry/opentelemetry-collector</guid>
<pubDate>Fri, 12 Jun 2026 00:00:00 -0000</pubDate>
<category>Observability, SRE &amp; Testing</category>
<description>[CRITICAL] The OpenTelemetry Collector is the industry-standard pipeline for vendor-agnostic telemetry collection, processing, and routing.</description>
</item>
<item>
<title>kube-prometheus</title>
<link>https://github.com/prometheus-operator/kube-prometheus</link>
<guid isPermaLink="true">https://github.com/prometheus-operator/kube-prometheus</guid>
<pubDate>Fri, 12 Jun 2026 00:00:00 -0000</pubDate>
<category>Observability, SRE &amp; Testing</category>
<description>[CRITICAL] It serves as the de facto reference architecture and deployment pattern for comprehensive Kubernetes cluster monitoring.</description>
<description>[CRITICAL] Acts as the industry-standard, vendor-agnostic pipeline for receiving, processing, and routing metrics, logs, and traces across diverse cloud-native environments.</description>
</item>
<item>
<title>Kubernetes Gateway API</title>
@@ -149,23 +165,7 @@
<guid isPermaLink="true">https://github.com/kubernetes-sigs/gateway-api</guid>
<pubDate>Fri, 12 Jun 2026 00:00:00 -0000</pubDate>
<category>Networking &amp; Service Mesh</category>
<description>[CRITICAL] As the official next-generation routing standard in Kubernetes, it provides highly expressive, role-oriented alternatives to the legacy Ingress API.</description>
</item>
<item>
<title>github.com/vmware-tanzu/velero</title>
<link>https://github.com/velero-io/velero</link>
<guid isPermaLink="true">https://github.com/velero-io/velero</guid>
<pubDate>Fri, 12 Jun 2026 00:00:00 -0000</pubDate>
<category>Data, Messaging &amp; Storage</category>
<description>[CRITICAL] Velero is the industry-standard tool for backing up, restoring, and migrating Kubernetes cluster resources and persistent volumes.</description>
</item>
<item>
<title>Announcing Claude Managed Agents on Cloudflare</title>
<link>https://blog.cloudflare.com/claude-managed-agents</link>
<guid isPermaLink="true">https://blog.cloudflare.com/claude-managed-agents</guid>
<pubDate>Tue, 02 Jun 2026 00:00:00 -0000</pubDate>
<category>AI &amp; Agents</category>
<description>[CRITICAL] Establishes a secure, sandboxed serverless runtime on Cloudflare Workers for orchestrating complex, autonomous AI agent workflows at the edge.</description>
<description>[CRITICAL] Establishes the next-generation standard for expressive, role-oriented, and extensible routing and ingress configurations in Kubernetes.</description>
</item>
</channel>
</rss>
+14 -14
View File
File diff suppressed because one or more lines are too long
+660 -660
View File
File diff suppressed because it is too large Load Diff