From 0f9e8818f0ac20dee6b9f1a1fc2f2f76ee620a45 Mon Sep 17 00:00:00 2001 From: Blake Rosenthal Date: Wed, 18 Sep 2024 09:58:49 -0700 Subject: [PATCH] fix typo in KubernetesCredentials --- src/_nebari/stages/infrastructure/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_nebari/stages/infrastructure/__init__.py b/src/_nebari/stages/infrastructure/__init__.py index 498b2c9b1..13e88087b 100644 --- a/src/_nebari/stages/infrastructure/__init__.py +++ b/src/_nebari/stages/infrastructure/__init__.py @@ -625,7 +625,7 @@ class NodeSelectorKeyValue(schema.Base): class KubernetesCredentials(schema.Base): host: str - cluster_ca_certifiate: str # ignored for now. More info in https://github.com/nebari-dev/nebari/issues/2597. # typos: ignore + cluster_ca_certificate: str token: Optional[str] = None username: Optional[str] = None password: Optional[str] = None