Skip to content

Commit 0ccd95c

Browse files
authored
docs(k8s): promote remaining OIDC to stable (#119)
1 parent 5a07388 commit 0ccd95c

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

scaleway-async/scaleway_async/k8s/v1/api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,8 @@ async def create_cluster(
245245
This configuration enables to set a specific 2-hour time window in which the cluster can be automatically updated to the latest patch version in the current minor one.
246246
:param feature_gates: List of feature gates to enable.
247247
:param admission_plugins: List of admission plugins to enable.
248-
:param open_id_connect_config: ALPHA - OpenID Connect configuration of the cluster.
249-
This feature is in ALPHA state, it may be deleted or modified. This configuration enables to set the [OpenID Connect configuration](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#openid-connect-tokens) of the Kubernetes API server.
248+
:param open_id_connect_config: OpenID Connect configuration of the cluster.
249+
This configuration enables to update the OpenID Connect configuration of the Kubernetes API server.
250250
:param apiserver_cert_sans: Additional Subject Alternative Names for the Kubernetes API server certificate.
251251
:param private_network_id: Private network ID for internal cluster communication (cannot be changed later).
252252
:return: :class:`Cluster <Cluster>`

scaleway-async/scaleway_async/k8s/v1/types.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -295,8 +295,8 @@ class Cluster:
295295

296296
open_id_connect_config: Optional[ClusterOpenIDConnectConfig]
297297
"""
298-
ALPHA - The OpenID Connect configuration of the cluster.
299-
This feature is in ALPHA state, it may be deleted or modified. This configuration is the [OpenID Connect configuration](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#openid-connect-tokens) of the Kubernetes API server.
298+
OpenID Connect configuration of the cluster.
299+
This configuration enables to update the OpenID Connect configuration of the Kubernetes API server.
300300
"""
301301

302302
apiserver_cert_sans: List[str]
@@ -1304,8 +1304,8 @@ class CreateClusterRequest:
13041304

13051305
open_id_connect_config: Optional[CreateClusterRequestOpenIDConnectConfig]
13061306
"""
1307-
ALPHA - OpenID Connect configuration of the cluster.
1308-
This feature is in ALPHA state, it may be deleted or modified. This configuration enables to set the [OpenID Connect configuration](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#openid-connect-tokens) of the Kubernetes API server.
1307+
OpenID Connect configuration of the cluster.
1308+
This configuration enables to update the OpenID Connect configuration of the Kubernetes API server.
13091309
"""
13101310

13111311
apiserver_cert_sans: Optional[List[str]]

scaleway/scaleway/k8s/v1/api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,8 @@ def create_cluster(
245245
This configuration enables to set a specific 2-hour time window in which the cluster can be automatically updated to the latest patch version in the current minor one.
246246
:param feature_gates: List of feature gates to enable.
247247
:param admission_plugins: List of admission plugins to enable.
248-
:param open_id_connect_config: ALPHA - OpenID Connect configuration of the cluster.
249-
This feature is in ALPHA state, it may be deleted or modified. This configuration enables to set the [OpenID Connect configuration](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#openid-connect-tokens) of the Kubernetes API server.
248+
:param open_id_connect_config: OpenID Connect configuration of the cluster.
249+
This configuration enables to update the OpenID Connect configuration of the Kubernetes API server.
250250
:param apiserver_cert_sans: Additional Subject Alternative Names for the Kubernetes API server certificate.
251251
:param private_network_id: Private network ID for internal cluster communication (cannot be changed later).
252252
:return: :class:`Cluster <Cluster>`

scaleway/scaleway/k8s/v1/types.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -295,8 +295,8 @@ class Cluster:
295295

296296
open_id_connect_config: Optional[ClusterOpenIDConnectConfig]
297297
"""
298-
ALPHA - The OpenID Connect configuration of the cluster.
299-
This feature is in ALPHA state, it may be deleted or modified. This configuration is the [OpenID Connect configuration](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#openid-connect-tokens) of the Kubernetes API server.
298+
OpenID Connect configuration of the cluster.
299+
This configuration enables to update the OpenID Connect configuration of the Kubernetes API server.
300300
"""
301301

302302
apiserver_cert_sans: List[str]
@@ -1304,8 +1304,8 @@ class CreateClusterRequest:
13041304

13051305
open_id_connect_config: Optional[CreateClusterRequestOpenIDConnectConfig]
13061306
"""
1307-
ALPHA - OpenID Connect configuration of the cluster.
1308-
This feature is in ALPHA state, it may be deleted or modified. This configuration enables to set the [OpenID Connect configuration](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#openid-connect-tokens) of the Kubernetes API server.
1307+
OpenID Connect configuration of the cluster.
1308+
This configuration enables to update the OpenID Connect configuration of the Kubernetes API server.
13091309
"""
13101310

13111311
apiserver_cert_sans: Optional[List[str]]

0 commit comments

Comments
 (0)