Skip to content

Commit

Permalink
allow verify_ssl set to None
Browse files Browse the repository at this point in the history
  • Loading branch information
devenami committed Nov 7, 2023
1 parent 81f7eaf commit 687fa7f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion kubespawner/proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,8 @@ def _namespace_default(self):
)

k8s_api_verify_ssl = Bool(
True,
None,
allow_none=True,
config=True,
help="""
SSL/TLS verification
Expand Down
3 changes: 2 additions & 1 deletion kubespawner/spawner.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,8 @@ def __init__(self, *args, **kwargs):
self.api = shared_client("CoreV1Api")

k8s_api_verify_ssl = Bool(
True,
None,
allow_none=True,
config=True,
help="""
SSL/TLS verification
Expand Down

0 comments on commit 687fa7f

Please sign in to comment.