Files
truecharts/charts/stable/jupyter/values.yaml
T
Xstar97TheNoobandGitHub e6a70eef32 chore(repo) change charts to the upstream images (#14824)
**Description**
Apps with multiple images (multiple trains here)
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🪞 I have opened a PR on
[truecharts/containers](https://github.com/truecharts/containers) adding
the container to TrueCharts mirror repo.
- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2023-11-18 11:48:35 +01:00

70 lines
2.2 KiB
YAML

image:
repository: jupyter/base-notebook
pullPolicy: IfNotPresent
tag: 2023-10-20@sha256:0ec801994602a53d3917d0f07ccf4474a1ddf5ae419483b24681a3c42abc4ce5
minimalImage:
repository: jupyter/minimal-notebook
pullPolicy: IfNotPresent
tag: 2023-10-20@sha256:9aef9e53b7d8bdc7bdd9a2824fe6287081131bc02bf03edc1450ab9413646837
rImage:
repository: jupyter/r-notebook
pullPolicy: IfNotPresent
tag: 2023-10-20@sha256:037fbac4923318026e0e23365e667def5fb0e0baf333b6c90ffa145304c770a1
scipyImage:
repository: jupyter/scipy-notebook
pullPolicy: IfNotPresent
tag: 2023-10-20@sha256:bf4de44b0fa8a422ebc325e695d572d304bd290c055e028a6507921a294213bc
tensorflowImage:
repository: jupyter/tensorflow-notebook
pullPolicy: IfNotPresent
tag: 2023-10-20@sha256:173f124f638efe870bb2b535e01a76a80a95217e66ed00751058c51c09d6d85d
datascienceImage:
repository: jupyter/datascience-notebook
pullPolicy: IfNotPresent
tag: 2023-10-20@sha256:989636579136ff077456368ca44aed80cba7de7e9c30d989f23899bd79c9b5bf
pysparkImage:
repository: jupyter/pyspark-notebook
pullPolicy: IfNotPresent
tag: 2023-10-20@sha256:7d0b19de594978b8c0541194d91e29abba40e20aa124873bcf5e9cda2fe037f7
allsparkImage:
repository: jupyter/all-spark-notebook
pullPolicy: IfNotPresent
tag: 2023-10-20@sha256:9f84a5eb9e7454e7a440a5487d5eb1e8c8c8da452f0bb03d441bec5e06781f16
jupyter:
jupyter_cmd: lab
restartable: true
service:
main:
ports:
main:
port: 10300
protocol: http
targetPort: 8888
persistence:
data:
enabled: true
mountPath: /home/jovyan/work
portal:
open:
enabled: true
securityContext:
container:
readOnlyRootFilesystem: false
runAsNonRoot: false
runAsUser: 0
runAsGroup: 0
workload:
main:
podSpec:
containers:
main:
imageSelector: image
env:
NB_UID: "{{ .Values.securityContext.container.PUID }}"
NB_GID: "{{ .Values.securityContext.pod.fsGroup }}"
NB_UMASK: "{{ .Values.securityContext.container.UMASK }}"
# User Defined
DOCKER_STACKS_JUPYTER_CMD: "{{ .Values.jupyter.jupyter_cmd }}"
RESTARTABLE: '{{ ternary "yes" "no" .Values.jupyter.restartable }}'
updated: true