Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scaleway-async/scaleway_async/k8s/v1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1070,7 +1070,7 @@ async def create_pool(
:param public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
:param max_size: Defines the maximum size of the pool. Note that this field is only used when autoscaling is enabled on the pool.
:param container_runtime: Customization of the container runtime is available for each pool.
:param tags: Tags associated with the pool, see [managing tags](https://www.scaleway.com/en/docs/containers/kubernetes/api-cli/managing-tags).
:param tags: Tags associated with the pool, see [managing tags](https://www.scaleway.com/en/docs/kubernetes/api-cli/managing-tags).
:param kubelet_args: Kubelet arguments to be used by this pool. Note that this feature is experimental.
:param upgrade_policy: Pool upgrade policy.
:param zone: Zone in which the pool's nodes will be spawned.
Expand Down
6 changes: 3 additions & 3 deletions scaleway-async/scaleway_async/k8s/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ class Pool:

tags: list[str]
"""
Tags associated with the pool, see [managing tags](https://www.scaleway.com/en/docs/containers/kubernetes/api-cli/managing-tags).
Tags associated with the pool, see [managing tags](https://www.scaleway.com/en/docs/kubernetes/api-cli/managing-tags).
"""

kubelet_args: dict[str, str]
Expand Down Expand Up @@ -631,7 +631,7 @@ class CreateClusterRequestPoolConfig:

tags: list[str]
"""
Tags associated with the pool, see [managing tags](https://www.scaleway.com/en/docs/containers/kubernetes/api-cli/managing-tags).
Tags associated with the pool, see [managing tags](https://www.scaleway.com/en/docs/kubernetes/api-cli/managing-tags).
"""

kubelet_args: dict[str, str]
Expand Down Expand Up @@ -1359,7 +1359,7 @@ class CreatePoolRequest:

tags: Optional[list[str]] = field(default_factory=list)
"""
Tags associated with the pool, see [managing tags](https://www.scaleway.com/en/docs/containers/kubernetes/api-cli/managing-tags).
Tags associated with the pool, see [managing tags](https://www.scaleway.com/en/docs/kubernetes/api-cli/managing-tags).
"""

kubelet_args: Optional[dict[str, str]] = field(default_factory=dict)
Expand Down
2 changes: 1 addition & 1 deletion scaleway/scaleway/k8s/v1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1070,7 +1070,7 @@ def create_pool(
:param public_ip_disabled: Defines if the public IP should be removed from Nodes. To use this feature, your Cluster must have an attached Private Network set up with a Public Gateway.
:param max_size: Defines the maximum size of the pool. Note that this field is only used when autoscaling is enabled on the pool.
:param container_runtime: Customization of the container runtime is available for each pool.
:param tags: Tags associated with the pool, see [managing tags](https://www.scaleway.com/en/docs/containers/kubernetes/api-cli/managing-tags).
:param tags: Tags associated with the pool, see [managing tags](https://www.scaleway.com/en/docs/kubernetes/api-cli/managing-tags).
:param kubelet_args: Kubelet arguments to be used by this pool. Note that this feature is experimental.
:param upgrade_policy: Pool upgrade policy.
:param zone: Zone in which the pool's nodes will be spawned.
Expand Down
6 changes: 3 additions & 3 deletions scaleway/scaleway/k8s/v1/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ class Pool:

tags: list[str]
"""
Tags associated with the pool, see [managing tags](https://www.scaleway.com/en/docs/containers/kubernetes/api-cli/managing-tags).
Tags associated with the pool, see [managing tags](https://www.scaleway.com/en/docs/kubernetes/api-cli/managing-tags).
"""

kubelet_args: dict[str, str]
Expand Down Expand Up @@ -631,7 +631,7 @@ class CreateClusterRequestPoolConfig:

tags: list[str]
"""
Tags associated with the pool, see [managing tags](https://www.scaleway.com/en/docs/containers/kubernetes/api-cli/managing-tags).
Tags associated with the pool, see [managing tags](https://www.scaleway.com/en/docs/kubernetes/api-cli/managing-tags).
"""

kubelet_args: dict[str, str]
Expand Down Expand Up @@ -1359,7 +1359,7 @@ class CreatePoolRequest:

tags: Optional[list[str]] = field(default_factory=list)
"""
Tags associated with the pool, see [managing tags](https://www.scaleway.com/en/docs/containers/kubernetes/api-cli/managing-tags).
Tags associated with the pool, see [managing tags](https://www.scaleway.com/en/docs/kubernetes/api-cli/managing-tags).
"""

kubelet_args: Optional[dict[str, str]] = field(default_factory=dict)
Expand Down