You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Skip configured custom workload resources when discovery shows the CRD is not served so clean clusters can continue with built-in informers.
Refresh README and quickstart docs for v0.1.1, add the topology viewer screenshot and Chinese overview, and include those assets in release archives.
Co-Authored-By: OpenAI Codex <noreply@openai.com>
-`kubernetes-ontologyd` runs as the local ontology server.
6
-
-`kubernetes-ontology` runs as a standalone CLI client.
7
-
- The server reads Kubernetes objects, maintains an in-memory ontology graph, and serves HTTP queries.
8
-
- The client queries the server for status, entities, relations, neighbors, and diagnostic subgraphs.
5
+
This guide gets `kubernetes-ontology` running in its recommended MVP mode:
9
6
10
-
The server is read-only. It does not create, update, patch, or delete Kubernetes resources.
11
-
The open-source MVP is in-memory only: restarting the daemon discards the
12
-
current graph and rebuilds it from Kubernetes. Persistent stores and external
13
-
graph backends are outside the MVP setup.
7
+
-`kubernetes-ontologyd` runs as the ontology server.
8
+
-`kubernetes-ontology` runs as the CLI client.
9
+
- The server reads Kubernetes objects and maintains an in-memory graph.
10
+
- The client queries status, entities, relations, neighbors, and diagnostic
11
+
subgraphs through the server.
12
+
13
+
The server is read-only. It does not create, update, patch, or delete
14
+
Kubernetes resources. The MVP stores graph state in memory only: restarting the
15
+
daemon rebuilds the graph from the Kubernetes API.
16
+
17
+
## Choose a Path
18
+
19
+
| Path | Best for | What runs where |
20
+
| ---- | -------- | --------------- |
21
+
| Helm + release CLI | Users who want to try the project without compiling Go code | Server and viewer run in Kubernetes. CLI runs on your workstation. |
22
+
| Source build | Contributors and local development | Server, CLI, and viewer run from this repository. |
23
+
24
+
If you are unsure, use the Helm path first. Use the source path when changing
0 commit comments