Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 1.47 KB

File metadata and controls

53 lines (40 loc) · 1.47 KB
page_title cozystack_qdrant Data Source - cozystack
subcategory
description Read an existing Cozystack Qdrant instance by name and namespace.

cozystack_qdrant (Data Source)

Read an existing Cozystack Qdrant instance by name and namespace.

Example Usage

data "cozystack_qdrant" "vectors" {
  name      = "vectors"
  namespace = "tenant-root"
}

output "vectors_ready" {
  value = data.cozystack_qdrant.vectors.ready
}

Schema

Required

  • name (String) Qdrant instance name.
  • namespace (String) Tenant namespace.

Read-Only

  • chart_version (String) Deployed chart version.
  • external (Boolean) Whether external access is enabled.
  • id (String) Synthetic identifier namespace/name.
  • ready (Boolean) Whether the instance's Ready condition is true.
  • replicas (Number) Number of Qdrant replicas.
  • resources (Attributes) Explicit CPU and memory per replica, when set. (see below for nested schema)
  • resources_preset (String) Sizing preset.
  • size (String) Persistent volume size.
  • storage_class (String) StorageClass used to store the data.
  • uid (String) Server-assigned object UID (metadata.uid).

Nested Schema for resources

Read-Only:

  • cpu (String) CPU available to each replica.
  • memory (String) Memory available to each replica.