Skip to content

Commit 8d2f239

Browse files
Auto-update API to: 51d593f, 2026-03-25 09:59:11 +0000
1 parent da9c7ea commit 8d2f239

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

nebius-api

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "nebius"
7-
version = "0.3.51"
7+
version = "0.3.52"
88
description = "Nebius Python SDK"
99
authors = [
1010
{ name = "Daniil Drizhuk", email = "complynx@nebius.com" },

src/nebius/api/nebius/mk8s/v1/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2264,8 +2264,12 @@ def __dir__(self) ->abc.Iterable[builtins.str]:
22642264
def labels(self) -> "abc.MutableMapping[builtins.str,builtins.str]":
22652265
"""
22662266
Kubernetes Node labels.
2267+
2268+
Keys and values must follow Kubernetes label syntax:
2269+
https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
2270+
22672271
For now change will not be propagated to existing nodes, so will be applied only to Kubernetes Nodes created after the field change.
2268-
That behaviour may change later.
2272+
That behavior may change later.
22692273
So, for now you will need to manually set them to existing nodes, if that is needed.
22702274
22712275
System labels containing "kubernetes.io" and "k8s.io" will be ignored.

src/nebius/base/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Nebius SDK version information."""
22

3-
version = "0.3.51"
3+
version = "0.3.52"
44
"""Current Nebius SDK version string."""

0 commit comments

Comments
 (0)