apiVersion: v1 kind: Pod metadata: name: research-stack-otom labels: app: research-stack spec: containers: - name: dev image: research-stack-otom:latest imagePullPolicy: IfNotPresent command: ["/bin/bash", "-c", "while true; do sleep 3600; done"] env: - name: PATH value: "/home/researcher/.elan/bin:/home/researcher/venv/bin:/home/researcher/.local/bin:${PATH}" - name: PYTHONUNBUFFERED value: "1" - name: XDG_CACHE_HOME value: "/home/researcher/.cache" securityContext: runAsUser: 1000 runAsGroup: 1000 allowPrivilegeEscalation: false volumeMounts: - name: workspace mountPath: /home/researcher/stack volumes: - name: workspace hostPath: path: /home/allaun/Research Stack type: Directory