We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/containers/kubernetes-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
kind: Task
metadata:
labels:
suite: kiali
name: "mesh-status"
difficulty: easy
steps:
setup:
inline: |-
#!/usr/bin/env bash
set -euo pipefail
cat <<'EOF' | kubectl apply -f -
apiVersion: networking.istio.io/v1
kind: DestinationRule
metadata:
namespace: bookinfo
name: ratings
labels:
gevals.kiali.io/test: delete-fault-injection
spec:
host: ratings.bookinfo.svc.cluster.local
subsets:
- name: v1
labels:
version: v1
---
apiVersion: networking.istio.io/v1
kind: VirtualService
metadata:
namespace: bookinfo
name: ratings
labels:
gevals.kiali.io/test: delete-fault-injection
spec:
hosts:
- ratings.bookinfo.svc.cluster.local
http:
- route:
- destination:
host: ratings.bookinfo.svc.cluster.local
subset: v1
weight: 100
fault:
abort:
percentage:
value: 100
httpStatus: 503
EOF
verify:
contains: "healthy"
cleanup:
inline: |-
#!/usr/bin/env bash
set -euo pipefail
NS="bookinfo"
LABEL="gevals.kiali.io/test=delete-fault-injection"
kubectl delete virtualservice -n "$NS" -l "$LABEL" --ignore-not-found
kubectl delete destinationrule -n "$NS" -l "$LABEL" --ignore-not-found
prompt:
inline: Check my mesh.