diff --git a/deploy/operator.yaml b/deploy/operator.yaml index 0459115b3c7..0925ba1a04a 100644 --- a/deploy/operator.yaml +++ b/deploy/operator.yaml @@ -1205,7 +1205,7 @@ spec: type: object type: array cpuset: - description: cpuset determines if the cluster will use cpu-pinning for max performance. + description: 'cpuset determines if the cluster will use cpu-pinning. Deprecated: `cpuset` is deprecated and may be ignored in the future.' type: boolean datacenter: description: datacenter holds a specification of a datacenter. diff --git a/docs/source/api-reference/groups/scylla.scylladb.com/scyllaclusters.rst b/docs/source/api-reference/groups/scylla.scylladb.com/scyllaclusters.rst index ba04f9cbb23..c492cf51d1a 100755 --- a/docs/source/api-reference/groups/scylla.scylladb.com/scyllaclusters.rst +++ b/docs/source/api-reference/groups/scylla.scylladb.com/scyllaclusters.rst @@ -92,7 +92,7 @@ object - backups specifies backup tasks in Scylla Manager. When Scylla Manager is not installed, these will be ignored. * - cpuset - boolean - - cpuset determines if the cluster will use cpu-pinning for max performance. + - cpuset determines if the cluster will use cpu-pinning. Deprecated: `cpuset` is deprecated and may be ignored in the future. * - :ref:`datacenter` - object - datacenter holds a specification of a datacenter. diff --git a/examples/eks/cluster.yaml b/examples/eks/cluster.yaml index a16e1fc290b..6f9320205e1 100644 --- a/examples/eks/cluster.yaml +++ b/examples/eks/cluster.yaml @@ -15,7 +15,6 @@ metadata: spec: agentVersion: 3.3.0 version: 5.4.3 - cpuset: true sysctls: - "fs.aio-max-nr=2097152" datacenter: diff --git a/examples/gke/cluster.yaml b/examples/gke/cluster.yaml index 9b75af4f6b0..40ac15e17b0 100644 --- a/examples/gke/cluster.yaml +++ b/examples/gke/cluster.yaml @@ -15,7 +15,6 @@ metadata: spec: agentVersion: 3.3.0 version: 5.4.3 - cpuset: true automaticOrphanedNodeCleanup: true sysctls: - "fs.aio-max-nr=2097152" diff --git a/helm/scylla-manager/values.schema.json b/helm/scylla-manager/values.schema.json index 4fa784dfb26..0617790a5d2 100644 --- a/helm/scylla-manager/values.schema.json +++ b/helm/scylla-manager/values.schema.json @@ -281,7 +281,7 @@ "type": "array" }, "cpuset": { - "description": "cpuset determines if the cluster will use cpu-pinning for max performance.", + "description": "cpuset determines if the cluster will use cpu-pinning. Deprecated: `cpuset` is deprecated and may be ignored in the future.", "type": "boolean" }, "datacenter": { diff --git a/helm/scylla/values.schema.json b/helm/scylla/values.schema.json index 630e1c03286..d1a1926179b 100644 --- a/helm/scylla/values.schema.json +++ b/helm/scylla/values.schema.json @@ -170,7 +170,7 @@ "type": "array" }, "cpuset": { - "description": "cpuset determines if the cluster will use cpu-pinning for max performance.", + "description": "cpuset determines if the cluster will use cpu-pinning. Deprecated: `cpuset` is deprecated and may be ignored in the future.", "type": "boolean" }, "datacenter": { diff --git a/pkg/api/scylla/v1/scylla.scylladb.com_scyllaclusters.yaml b/pkg/api/scylla/v1/scylla.scylladb.com_scyllaclusters.yaml index 7d3a9f219aa..dc0c07f90da 100644 --- a/pkg/api/scylla/v1/scylla.scylladb.com_scyllaclusters.yaml +++ b/pkg/api/scylla/v1/scylla.scylladb.com_scyllaclusters.yaml @@ -176,7 +176,7 @@ spec: type: object type: array cpuset: - description: cpuset determines if the cluster will use cpu-pinning for max performance. + description: 'cpuset determines if the cluster will use cpu-pinning. Deprecated: `cpuset` is deprecated and may be ignored in the future.' type: boolean datacenter: description: datacenter holds a specification of a datacenter. diff --git a/pkg/api/scylla/v1/types_cluster.go b/pkg/api/scylla/v1/types_cluster.go index 6dd66bf7d01..c7c6cc475ea 100644 --- a/pkg/api/scylla/v1/types_cluster.go +++ b/pkg/api/scylla/v1/types_cluster.go @@ -63,7 +63,8 @@ type ScyllaClusterSpec struct { // +optional DeveloperMode bool `json:"developerMode,omitempty"` - // cpuset determines if the cluster will use cpu-pinning for max performance. + // cpuset determines if the cluster will use cpu-pinning. + // Deprecated: `cpuset` is deprecated and may be ignored in the future. // +optional CpuSet bool `json:"cpuset,omitempty"`