Private Cloud 1.9.5

This commit is contained in:
Bastian Hofmann
2026-02-18 10:52:12 +01:00
parent 6cf3c8c77d
commit 71a2ae0711
3 changed files with 26 additions and 11 deletions
@@ -95,10 +95,7 @@ _Appears in:_
| Field | Description | Default | Validation |
| --- | --- | --- | --- |
| `lastResponseTime` _[Time](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.28/#time-v1-meta)_ | The last time the cluster-manager responded in UTC | | |
| `executed_actions` _[RawMessage](#rawmessage)_ | ExecutedActions are the actions that have been executed by the cluster-manager | | |
| `required_actions` _[RawMessage](#rawmessage)_ | RequiredActions are the actions that are required to be executed by the operator as instructed by cluster-manager | | |
| `suggested_actions` _[RawMessage](#rawmessage)_ | SuggestedActions are suggested but not required actions to be executed by the operator as instructed by cluster-manager | | |
| `description` _string_ | Description contains additional information about the last response | | |
#### ClusterPhase
@@ -577,6 +574,7 @@ _Appears in:_
| `state` _object (keys:[PodConditionType](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.28/#podconditiontype-v1-core), values:[ConditionStatus](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.28/#conditionstatus-v1-core))_ | States specifies the condition states of the node | | |
| `version` _string_ | Version specifies the version of Qdrant running on the node | | |
| `liveness` _boolean_ | Reports if qdrant node responded to liveness request (before readiness).<br />This is needed to beter report recovery process to the user. | | |
| `zone` _string_ | The availibility zone the node is running in. | | |
| `podPhase` _[PodPhase](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.28/#podphase-v1-core)_ | Status phase of the Pod of the node | | |
| `podConditions` _[PodCondition](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.28/#podcondition-v1-core) array_ | Conditions of the Pod of the node | | |
| `podMessage` _string_ | Status message of the Pod of the node | | |
@@ -5,6 +5,23 @@ weight: 5
# Changelog
## 1.9.5 (2026-02-18)
| Component | Version |
|-------------------------|---------|
| qdrant-kubernetes-api | v1.23.0 |
| operator | 2.14.0 |
| qdrant-cluster-manager | v0.3.17 |
| qdrant-cluster-exporter | 1.7.6 |
Latest validated Qdrant version: 1.16.3
* Performance and stability improvements
* Extended status information in QdrantCluster status
* Support for VolumeAttributeClasses for storage volumes
* Report Qdrant Pod zone in QdrantCluster status
* Metrics are additionally exposed on a separate port to allow more granular access control through NetworkPolicies
## 1.9.4 (2026-01-15)
| Component | Version |
@@ -67,13 +67,13 @@ helm registry login 'registry.cloud.qdrant.io' --username 'your-username' --pass
4. Install the Qdrant Kubernetes Operator Custom Resource Definitions (CRDs):
```bash
helm upgrade --install qdrant-private-cloud-crds oci://registry.cloud.qdrant.io/qdrant-charts/qdrant-kubernetes-api --namespace qdrant-private-cloud --version v1.22.1 --wait
helm upgrade --install qdrant-private-cloud-crds oci://registry.cloud.qdrant.io/qdrant-charts/qdrant-kubernetes-api --namespace qdrant-private-cloud --version v1.23.0 --wait
```
5. Install Qdrant Private Cloud:
```bash
helm upgrade --install qdrant-private-cloud oci://registry.cloud.qdrant.io/qdrant-charts/qdrant-private-cloud --namespace qdrant-private-cloud --version 1.9.4
helm upgrade --install qdrant-private-cloud oci://registry.cloud.qdrant.io/qdrant-charts/qdrant-private-cloud --namespace qdrant-private-cloud --version 1.9.5
```
Ensure that the `qdrant-kubernetes-api` version is compatible with the `qdrant-private-cloud` version you are installing.
@@ -82,8 +82,8 @@ For a list of available versions consult the [Private Cloud Changelog](/document
Current default versions are:
* qdrant-kubernetes-api v1.22.1
* qdrant-private-cloud 1.9.4
* qdrant-kubernetes-api v1.23.0
* qdrant-private-cloud 1.9.5
For more information also see the [Helm Install Documentation](https://helm.sh/docs/helm/helm_install/).
@@ -111,7 +111,7 @@ operator:
You can configure Qdrant Private Cloud like this:
```bash
helm upgrade --install qdrant-private-cloud oci://registry.cloud.qdrant.io/qdrant-charts/qdrant-private-cloud --namespace qdrant-private-cloud --version 1.9.4 -f values.yaml
helm upgrade --install qdrant-private-cloud oci://registry.cloud.qdrant.io/qdrant-charts/qdrant-private-cloud --namespace qdrant-private-cloud --version 1.9.5 -f values.yaml
```
## Upgrades
@@ -119,13 +119,13 @@ helm upgrade --install qdrant-private-cloud oci://registry.cloud.qdrant.io/qdran
To upgrade Qdrant Private Cloud to a new version, first upgrade the Qdrant Kubernetes Operator Custom Resource Definitions (CRDs):
```bash
helm upgrade --install qdrant-private-cloud-crds oci://registry.cloud.qdrant.io/qdrant-charts/qdrant-kubernetes-api --namespace qdrant-private-cloud --version v1.22.1 --wait
helm upgrade --install qdrant-private-cloud-crds oci://registry.cloud.qdrant.io/qdrant-charts/qdrant-kubernetes-api --namespace qdrant-private-cloud --version v1.23.0 --wait
```
Then upgrade the Qdrant Private Cloud Helm chart using the same configuration values, e.g.:
```bash
helm upgrade --install qdrant-private-cloud oci://registry.cloud.qdrant.io/qdrant-charts/qdrant-private-cloud --namespace qdrant-private-cloud --version 1.9.4 -f values.yaml
helm upgrade --install qdrant-private-cloud oci://registry.cloud.qdrant.io/qdrant-charts/qdrant-private-cloud --namespace qdrant-private-cloud --version 1.9.5 -f values.yaml
```
Note, that the image tag values are automatically derived from the chart's appVersions and should not be overridden in the `values.yaml`.