Created
March 25, 2026 15:51
-
-
Save nmagee/97341555d463c0d0c150f2537942cab7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: batch/v1 | |
| kind: Job | |
| metadata: | |
| name: papermill-job-NEM2P | |
| namespace: default | |
| spec: | |
| template: | |
| spec: | |
| containers: | |
| - name: papermill-container | |
| image: ghcr.io/uvasds-systems/papermill-jobs:1.3 | |
| resources: | |
| limits: | |
| cpu: "1.0" | |
| memory: 1024Mi | |
| requests: | |
| cpu: "1" | |
| memory: 1024Mi | |
| env: | |
| - name: NOTEBOOK_URL | |
| value: "https://raw.githubusercontent.com/uvasds-systems/jupyter-jobs/refs/heads/main/earthquakes.ipynb" | |
| - name: START | |
| value: "2024-01-01" | |
| - name: END | |
| value: "2024-12-31" | |
| restartPolicy: Never | |
| ttlSecondsAfterFinished: 86400 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment