Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BGD-4696-Fix-jupyterlab-extensions-mechanism #181

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ spec:
- containerPort: {{ .Values.containerPort.port }}
name: {{ .Values.containerPort.name }}
command:
- start-notebook.sh
- start-notebook.py
args:
{{- range $key, $value := .Values.server }}
- --ServerApp.{{ $key | snakecase }}={{$value}}
Expand Down
6 changes: 1 addition & 5 deletions charts/bigdata-notebook-workspace/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ image:
repository: public.ecr.aws/ocean-spark/bigdata-notebook
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: lab-4.0.10-ofas-d35201c
tag: lab-4.1.0-ofas-ea68b6c

imagePullSecrets:
- name: spot-bigdata-image-pull
Expand Down Expand Up @@ -49,10 +49,6 @@ volume:
name: workspace-data
mountPath: /home/jovyan

podSecurityContext:
runAsUser: 0
fsGroup: 0

containerPort:
port: 8888
name: workspace
Expand Down
Loading