Skip to content

Commit c42bf6b

Browse files
committed
Merge remote-tracking branch 'upstream/main' into rhoai-3.0
2 parents af901a0 + e746416 commit c42bf6b

File tree

11 files changed

+3
-10
lines changed

11 files changed

+3
-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

runtimes/datascience/ubi9-python-3.12/Dockerfile.cpu

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,9 @@ RUN --mount=type=cache,target=/root/.cache/pip \
369369
# we often don't know the correct hashes and `--require-hashes` would therefore fail on non amd64, where building is common.
370370
uv pip install --strict --no-deps --no-cache --no-config --no-progress --verify-hashes --compile-bytecode --index-strategy=unsafe-best-match --requirements=./pylock.toml; \
371371
fi && \
372+
# change ownership to default user (all packages were installed as root and has root:root ownership
373+
chown -R 1001:0 /opt/app-root/ && \
374+
chmod -R g=u /opt/app-root && \
372375
# Fix permissions to support pip in Openshift environments
373376
chmod -R g+w /opt/app-root/lib/python3.12/site-packages && \
374377
fix-permissions /opt/app-root -P

0 commit comments

Comments
 (0)