关于
This skill provides comprehensive guidance for deploying Qdrant Hybrid Cloud on your own Kubernetes infrastructure, covering prerequisites, storage configuration, and cluster management. It helps developers install the Qdrant agent/operator, set up storage classes, expose clusters securely, and handle registry mirroring. Use it when deploying Hybrid Cloud on EKS/GKE/AKS/OpenShift or troubleshooting installation failures related to storage or connectivity.
快速安装
Claude Code
推荐npx skills add qdrant/skills -a claude-code/plugin add https://github.com/qdrant/skillsgit clone https://github.com/qdrant/skills.git ~/.claude/skills/qdrant-hybrid-cloud-setup在 Claude Code 中复制并粘贴此命令以安装该技能
技能文档
Setting Up Qdrant Hybrid Cloud
You've already chosen Hybrid Cloud (managed control plane on your own infra). If you're still deciding, that's the qdrant-deployment-options skill. Most setup failures trace to one of two things: storage (the CSI driver can't do what Qdrant needs) or connectivity (the agent can't reach Qdrant Cloud). Diagnose which before touching anything else.
Preparing the Kubernetes cluster (do this first)
Use when: about to create the environment, or the install/cluster provisioning failed on storage.
- Qdrant needs a block-storage CSI driver. Network storage (NFS) and object storage (S3) are unsupported: a cluster wired to those will fail, not degrade Prerequisites.
- Create the
StorageClass(withallowVolumeExpansion: true) and theVolumeSnapshotClassbeforehand, not after. Without volume expansion you can't grow disk later; without aVolumeSnapshotClassand the CSI snapshot controller you can't take backups. - Any standards-compliant Kubernetes works, and there's platform-specific setup guidance for the managed ones: Akamai (Linode/LKE), AWS (EKS), Civo, DigitalOcean (DOKS), Gcore, GCP (GKE), Azure (AKS), Oracle (OKE), OVHcloud, Red Hat OpenShift, Scaleway, STACKIT, and Vultr Deployment Platforms.
- Platform matters for what storage supports: some (e.g. Linode/LKE, Vultr) don't support CSI volume snapshots at all, so backups are unavailable there. Check your provider's snapshot page and prefer its recommended instance and disk types (e.g. gp3 on EKS, Premium SSD v2 on AKS) before committing.
- Confirm outbound connectivity: the agent opens connections to
grpc.cloud.qdrant.ioandapi.cloud.qdrant.ioon 443. Firewalls/egress proxies block this silently: a "stuck installing" agent is usually this. - You need
cluster-adminpluskubectlandhelmconfigured against the target cluster.
Creating the environment
Use when: running the install wizard in the Cloud Console.
- The Kubernetes namespace is permanent: it's the one choice you can't change later. Everything else (node selectors, tolerations, registry URLs, proxy) is editable after creation, so don't over-think them now.
- The wizard generates a one-time install command that creates secrets and installs the agent + operator via Helm. You only need it for the initial install; updates happen from the Console afterward Setup guide.
- Advanced operator behavior (pod scheduling, security context, ingress, networking, and snapshot management) is tuned in the operator configuration at the environment level, and can be changed after install Operator configuration.
- Air-gapped or registry-restricted? Mirror the
/qdrant/images and/qdrant-charts/charts into your own registry and set the container + chart URLs in the environment's advanced section. Sync all architectures (or the right one) or ARM/x86 nodes will fail to pull.
Creating a cluster in the environment
Use when: the environment exists and you're provisioning a database.
- Pick the Database Storage Class and Volume Snapshot Class here. Setting Volume Snapshot Class to
Nonedisables backups;emptyDirfor the snapshot volume makes it ephemeral (lost on pod restart): deliberate choices, not defaults to accept blindly Cluster creation. - By default Qdrant Cloud reserves ~20% CPU/memory per pod for the OS and system components. Small nodes may need more reserved; large nodes less. Aim for one database pod per node.
- Use node selectors / tolerations / topology spread constraints to keep databases on dedicated nodes and spread across zones.
Exposing and securing a cluster
Use when: apps outside the Kubernetes cluster need to reach Qdrant, or asked about API keys/TLS.
- Default is a
ClusterIPservice: internal-only, no API key. The moment you expose it (LoadBalancer, NodePort, or Ingress) you MUST configure an API key, supplied as a Kubernetes secret referenced in the cluster config Networking & security. - Internal node-to-node gRPC uses port 6335 and is never protected by API key or TLS. It must never be publicly reachable; Hybrid Cloud ships a NetworkPolicy restricting it, so don't loosen that.
- TLS: offload at the ingress/LB, or terminate in Qdrant via a TLS secret. Don't do both by accident.
Logging
Use when: setting log levels or wiring cluster logs into your stack. (For metrics/Prometheus/Grafana, use the qdrant-monitoring skill instead.)
- Log levels are set in two different places: per-database in the Cluster detail page, but for the Agent and Operator in the Hybrid Cloud Environment config, not per-cluster Networking, Logging & Monitoring.
- Logs are plain pod logs with no Qdrant-specific format. Point any Kubernetes-aware log collector at all pods in the Qdrant namespace; nothing Qdrant-specific to configure.
What NOT to Do
- Provision on NFS, S3, or any non-block storage: it's unsupported and will fail outright, not just run slowly.
- Create the
StorageClass/VolumeSnapshotClass(or enableallowVolumeExpansion) after the fact, then discover you can't scale disk or take backups. They must exist beforehand. - Assume backups "just work" on Linode or Vultr: verify CSI snapshot support for your platform first.
- Expose a cluster via LoadBalancer/Ingress without setting an API key, or leave port 6335 publicly reachable.
- Regenerate the install command (or rotate secrets) and forget to reapply it: the agent-to-Cloud link breaks silently until you do.
- Delete a Hybrid Cloud environment before deleting its clusters: tear down clusters first, then the environment, then run the cleanup script, or you'll strand resources in the cluster.
GitHub 仓库
常见问题
什么是 qdrant-hybrid-cloud-setup Skill?
qdrant-hybrid-cloud-setup 是一个 Claude Skill,作者为 qdrant。Skill 将 Claude 按需加载的说明和资源打包,让 Claude 无需额外提示即可执行与 qdrant-hybrid-cloud-setup 相关的任务。
如何安装 qdrant-hybrid-cloud-setup?
使用本页的安装命令:将 qdrant-hybrid-cloud-setup 作为插件添加到 Claude Code,或将其仓库克隆到 skills 目录,然后重启 Claude 以加载该 Skill。
qdrant-hybrid-cloud-setup 属于哪个分类?
qdrant-hybrid-cloud-setup 属于元分类。
qdrant-hybrid-cloud-setup 可以免费使用吗?
可以。qdrant-hybrid-cloud-setup 已收录在 AIMCP,可免费安装。
相关推荐技能
Content Collections 是一个 TypeScript 优先的构建工具,可将本地 Markdown/MDX 文件转换为类型安全的数据集合。它专为构建博客、文档站和内容密集型 Vite+React 应用而设计,提供基于 Zod 的自动模式验证。该工具涵盖从 Vite 插件配置、MDX 编译到生产环境部署的完整工作流。
这个Claude Skill为开发者提供完整的Polymarket预测市场开发支持,涵盖API调用、交易执行和市场数据分析。关键特性包括实时WebSocket数据流,可监控实时交易、订单和市场动态。开发者可用它构建预测市场应用、实施交易策略并集成实时市场预测功能。
该Skill帮助开发者创建OpenCode插件,用于接入命令、文件、LSP等25+种事件。它提供了插件结构、事件API规范和JavaScript/TypeScript实现模式,适合需要拦截操作、扩展功能或自定义事件处理的场景。开发者可通过它快速构建响应式模块来增强OpenCode AI助手的能力。
SGLang是一个专为LLM设计的高性能推理框架,特别适用于需要结构化输出的场景。它通过RadixAttention前缀缓存技术,在处理JSON、正则表达式、工具调用等具有重复前缀的复杂工作流时,能实现极速生成。如果你正在构建智能体或多轮对话系统,并追求远超vLLM的推理性能,SGLang是理想选择。
