Skip to content

Commit 04616fe

Browse files
fix product_name for the dbs which dont match whats in the db themselves (#195)
1 parent d568a3e commit 04616fe

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

python/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -169,3 +169,5 @@ cython_debug/
169169

170170
# PyPI configuration file
171171
.pypirc
172+
173+
.DS_Store

python/src/kagent/tools/docs/query_documentation.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@
1919
PRODUCT_DB_MAP = {
2020
"kubernetes": "kubernetes.db",
2121
"istio": "istio.db",
22-
"argo cd": "argo.db",
23-
"argo rollouts": "argo-rollouts.db",
22+
"argo": "argo.db",
23+
"argo-rollouts": "argo-rollouts.db",
2424
"helm": "helm.db",
2525
"prometheus": "prometheus.db",
2626
"gateway-api": "gateway-api.db",
2727
"gloo-gateway": "gloo-gateway.db",
2828
"gloo-edge": "gloo-edge.db",
2929
"otel": "otel.db",
3030
"cilium": "cilium.db",
31-
"istio ambient mesh": "ambient.db",
31+
"ambient": "ambient.db",
3232
}
3333

3434

0 commit comments

Comments
 (0)