Files
service-catalog/manifests/helm/jupyterlab/1.0.0/templates/configmap.yaml
T
ychangkim 8aca1e74f9 fix: prevent root-owned .cache files by adding --no-cache-dir to pip upgrade
Running pip as root (runAsUser: 0) created /home/jovyan/.cache with root
ownership, causing permission issues for the jovyan user at runtime.
2026-04-20 14:37:27 +09:00

13 lines
315 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "jupyterlab.configMapName" . }}
namespace: {{ .Release.Namespace }}
labels:
{{- include "jupyterlab.labels" . | nindent 4 }}
data:
startup-script.sh: |
#!/bin/bash
apt-get update -y
python -m pip install --no-cache-dir --upgrade pip