Skip to content

Commit f1a1578

Browse files
authored
RHAIENG-1439: chore: --ServerApp.tornado_settings removal (#2572)
This configuration has been removed from the Dashboard code as we decided to disable the Log out possibility from workbench. I think we can remove this option also from this codebase despite it's not necessary as the presence of this code doesn't affect the production code.
1 parent 3756f5d commit f1a1578

File tree

10 files changed

+0
-10
lines changed

10 files changed

+0
-10
lines changed

codeserver/ubi9-python-3.12/test/test_startup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ def get_notebook_args_configuration(self) -> str:
3939
"--ServerApp.password=''",
4040
f"--ServerApp.base_url=/notebook/{self.project_name}/{self.notebook_id}",
4141
"--ServerApp.quit_button=False",
42-
f'--ServerApp.tornado_settings={{"user":"{self.translated_username}","hub_host":"{self.origin}","hub_prefix":"/projects/{self.project_name}"}}',
4342
]
4443
)
4544
return expected_args

jupyter/datascience/ubi9-python-3.12/kustomize/base/statefulset.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ spec:
2828
--ServerApp.password=''
2929
--ServerApp.base_url=/notebook/opendatahub/jovyan
3030
--ServerApp.quit_button=False
31-
--ServerApp.tornado_settings={"user":"jovyan","hub_host":"https://opendatahub.io","hub_prefix":"/notebookController/jovyan"}
3231
ports:
3332
- name: notebook-port
3433
protocol: TCP

jupyter/minimal/ubi9-python-3.12/kustomize/base/statefulset.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ spec:
2828
--ServerApp.password=''
2929
--ServerApp.base_url=/notebook/opendatahub/jovyan
3030
--ServerApp.quit_button=False
31-
--ServerApp.tornado_settings={"user":"jovyan","hub_host":"https://opendatahub.io","hub_prefix":"/notebookController/jovyan"}
3231
ports:
3332
- name: notebook-port
3433
protocol: TCP

jupyter/pytorch+llmcompressor/ubi9-python-3.12/kustomize/base/statefulset.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ spec:
2828
--ServerApp.password=''
2929
--ServerApp.base_url=/notebook/opendatahub/jovyan
3030
--ServerApp.quit_button=False
31-
--ServerApp.tornado_settings={"user":"jovyan","hub_host":"https://opendatahub.io","hub_prefix":"/notebookController/jovyan"}
3231
ports:
3332
- name: notebook-port
3433
protocol: TCP

jupyter/pytorch/ubi9-python-3.12/kustomize/base/statefulset.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ spec:
2828
--ServerApp.password=''
2929
--ServerApp.base_url=/notebook/opendatahub/jovyan
3030
--ServerApp.quit_button=False
31-
--ServerApp.tornado_settings={"user":"jovyan","hub_host":"https://opendatahub.io","hub_prefix":"/notebookController/jovyan"}
3231
ports:
3332
- name: notebook-port
3433
protocol: TCP

jupyter/rocm/pytorch/ubi9-python-3.12/kustomize/base/statefulset.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ spec:
2828
--ServerApp.password=''
2929
--ServerApp.base_url=/notebook/opendatahub/jovyan
3030
--ServerApp.quit_button=False
31-
--ServerApp.tornado_settings={"user":"jovyan","hub_host":"https://opendatahub.io","hub_prefix":"/notebookController/jovyan"}
3231
ports:
3332
- name: notebook-port
3433
protocol: TCP

jupyter/rocm/tensorflow/ubi9-python-3.12/kustomize/base/statefulset.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ spec:
2828
--ServerApp.password=''
2929
--ServerApp.base_url=/notebook/opendatahub/jovyan
3030
--ServerApp.quit_button=False
31-
--ServerApp.tornado_settings={"user":"jovyan","hub_host":"https://opendatahub.io","hub_prefix":"/notebookController/jovyan"}
3231
ports:
3332
- name: notebook-port
3433
protocol: TCP

jupyter/tensorflow/ubi9-python-3.12/kustomize/base/statefulset.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ spec:
2828
--ServerApp.password=''
2929
--ServerApp.base_url=/notebook/opendatahub/jovyan
3030
--ServerApp.quit_button=False
31-
--ServerApp.tornado_settings={"user":"jovyan","hub_host":"https://opendatahub.io","hub_prefix":"/notebookController/jovyan"}
3231
ports:
3332
- name: notebook-port
3433
protocol: TCP

jupyter/trustyai/ubi9-python-3.12/kustomize/base/statefulset.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ spec:
2828
--ServerApp.password=''
2929
--ServerApp.base_url=/notebook/opendatahub/jovyan
3030
--ServerApp.quit_button=False
31-
--ServerApp.tornado_settings={"user":"jovyan","hub_host":"https://opendatahub.io","hub_prefix":"/notebookController/jovyan"}
3231
ports:
3332
- name: notebook-port
3433
protocol: TCP

tests/containers/workbenches/jupyterlab/jupyterlab_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ def test_spinner_html_loaded(self, jupyterlab_image: conftest.Image) -> None:
3636
"--ServerApp.password=''",
3737
"--ServerApp.base_url=/notebook/opendatahub/jovyan",
3838
"--ServerApp.quit_button=False",
39-
"""--ServerApp.tornado_settings={"user":"jovyan","hub_host":"https://opendatahub.io","hub_prefix":"/notebookController/jovyan"}""",
4039
]
4140
),
4241
)

0 commit comments

Comments
 (0)