8aca1e74f9
Running pip as root (runAsUser: 0) created /home/jovyan/.cache with root ownership, causing permission issues for the jovyan user at runtime.
13 lines
315 B
YAML
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
|