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
setup.sh•356 B
#!/bin/bash
set -e
NAMESPACE="canary-deployment-ns"
# Create the namespace
kubectl delete namespace $NAMESPACE --ignore-not-found
kubectl create namespace $NAMESPACE
# Apply the initial stable deployment and the service pointing only to it
kubectl apply -n $NAMESPACE -f artifacts/deployment-v1.yaml
kubectl apply -n $NAMESPACE -f artifacts/service.yaml