Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,7 @@ Monitoring & observability tools **track system health, performance, and securit

### 🔥 **Best Monitoring & Observability Platforms**

🔹 **[KubeStellar Console](https://console.kubestellar.io)** (Open Source) – An **AI-powered multi-cluster Kubernetes dashboard** with real-time observability, GPU monitoring, and 20+ CNCF integrations (Argo, Kyverno, Prometheus, Grafana, Istio, Flux, Falco). CNCF Sandbox project (Apache 2.0).
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Verify KubeStellar Console links and project metadata

echo "=== Checking live demo URL ==="
curl -s -o /dev/null -w "HTTP Status: %{http_code}\n" https://console.kubestellar.io

echo -e "\n=== Checking GitHub repository ==="
curl -s -o /dev/null -w "HTTP Status: %{http_code}\n" https://github.com/kubestellar/console

echo -e "\n=== Fetching GitHub repository metadata ==="
gh api repos/kubestellar/console --jq '{name: .name, license: .license.spdx_id, description: .description, stars: .stargazers_count, topics: .topics}'

echo -e "\n=== Checking for CNCF affiliation in repository ==="
rg -i "cncf|sandbox" --max-count 5 <(gh api repos/kubestellar/console/readme --jq '.content' | base64 -d)

Repository: NotHarshhaa/devops-tools

Length of output: 515


🌐 Web query:

Is KubeStellar Console a CNCF Sandbox project?

💡 Result:

No, KubeStellar Console is not a CNCF Sandbox project. It is a standalone project (github.com/kubestellar/console) related to but distinct from KubeStellar, which is the CNCF Sandbox project accepted on December 19, 2023. Official CNCF pages list KubeStellar (cncf.io/projects/kubestellar/), not the Console. Project docs describe the Console as separate from core KubeStellar components like KubeFlex and WECs.

Citations:


Remove the "CNCF Sandbox project" claim—it is inaccurate.

The entry states KubeStellar Console is a "CNCF Sandbox project," but verification confirms only the main KubeStellar project (the core framework) is a CNCF Sandbox project (accepted December 19, 2023). The Console is a separate, distinct tool and should not claim CNCF Sandbox status. The Apache 2.0 license claim is accurate.

Additionally, consider using the GitHub repository link (https://github.com/kubestellar/console) instead of the live demo URL, as it's more conventional for a tools list and provides direct access to documentation and source code.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@README.md` at line 367, Update the README entry for "KubeStellar Console" to
remove the inaccurate "CNCF Sandbox project" claim and keep the Apache 2.0
license note; specifically edit the line containing the text "🔹 **[KubeStellar
Console]...CNCF Sandbox project (Apache 2.0)." to delete the "CNCF Sandbox
project" phrase, and replace the live demo URL with the GitHub repository URL
"https://github.com/kubestellar/console" so the entry reads like the other tools
(name, brief description, license, and repo link).

🔹 **[Prometheus](https://prometheus.io/)** (Open Source) – A **highly scalable monitoring and alerting toolkit**, commonly used in Kubernetes environments.
🔹 **[Thanos](https://thanos.io/)** (Open Source) – **Extends Prometheus** with long-term storage, high availability, and multi-cluster monitoring.
🔹 **[Cilium](https://cilium.io/)** (Open Source & Enterprise) – **eBPF-powered observability, security, and networking** for cloud-native workloads.
Expand Down