Files
deprecated-helm-charts/stable/dask/values.yaml
T
Ryan McCormick 387bb25492 [stable/dask] Update stable dask with new container versions, better documentation, more options. (#12552)
* 1) Update API versions to v1, 2) Refactor NOTES.txt to handle different serviceTypes, 3) Create OWNERS file, 4) Add comments for possible serviceType and GPU values in values.yaml, 5) Update README values and add some new sections for serviceTypes and Jupyter password, 6) Lint README, yaml files, and rendered yaml templates, 7) Update container images to v1.1.1

Signed-off-by: Ryan McCormick <rmccormick@nvidia.com>
Signed-off-by: Ryan McCormick <rmccorm4@binghamton.edu>

* address PR #1 comments, 1) Add newline to each EOF, 2) Update YAML comments to have no extra spacing, 3) Add --namespace flag description to README

Signed-off-by: Ryan McCormick <rmccormick@nvidia.com>
Signed-off-by: Ryan McCormick <rmccorm4@binghamton.edu>

* add nodeSelector and imagePullSecrets to deployments

Signed-off-by: Ryan McCormick <rmccorm4@binghamton.edu>

* add nodeSelector and imagePullSecrets to deployments

Signed-off-by: Ryan McCormick <rmccorm4@binghamton.edu>

* change worker arg to variable rather than hardcoded 'dask-worker'

Signed-off-by: Ryan McCormick <rmccorm4@binghamton.edu>

* Add jacobtomlinson to OWNERS

Signed-off-by: Ryan McCormick <rmccorm4@binghamton.edu>

* fix lint error for spaces after comments

Signed-off-by: Ryan McCormick <rmccorm4@binghamton.edu>

* Update README.md

Signed-off-by: Reinhard Nägele <unguiculus@gmail.com>

* apply left whitespace trim and nindent throughout chart templates per unguiculus suggestion

Signed-off-by: Ryan Mccormick <rmccormick@nvidia.com>

* improvement: replace 'default' namespace with '.Release.Namespace' in NOTES.txt output

Signed-off-by: Ryan McCormick <rmccorm4@binghamton.edu>
2019-08-13 00:11:56 -07:00

98 lines
2.0 KiB
YAML

---
# nameOverride: dask
# fullnameOverride: dask
scheduler:
name: scheduler
image:
repository: "daskdev/dask"
tag: 1.1.5
pullPolicy: IfNotPresent
# See https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
pullSecrets:
# - name: regcred
replicas: 1
# serviceType: "ClusterIP"
# serviceType: "NodePort"
serviceType: "LoadBalancer"
servicePort: 8786
resources: {}
# limits:
# cpu: 1.8
# memory: 6G
# requests:
# cpu: 1.8
# memory: 6G
tolerations: []
nodeSelector: {}
affinity: {}
webUI:
name: webui
servicePort: 80
worker:
name: worker
image:
repository: "daskdev/dask"
tag: 1.1.5
pullPolicy: IfNotPresent
# dask_worker: "dask-cuda-worker"
dask_worker: "dask-worker"
pullSecrets:
# - name: regcred
replicas: 3
aptPackages: >-
default_resources: # overwritten by resource limits if they exist
cpu: 1
memory: "4GiB"
env:
# - name: EXTRA_CONDA_PACKAGES
# value: numba xarray -c conda-forge
# - name: EXTRA_PIP_PACKAGES
# value: s3fs dask-ml --upgrade
resources: {}
# limits:
# cpu: 1
# memory: 3G
# nvidia.com/gpu: 1
# requests:
# cpu: 1
# memory: 3G
# nvidia.com/gpu: 1
tolerations: []
nodeSelector: {}
affinity: {}
jupyter:
name: jupyter
enabled: true
image:
repository: "daskdev/dask-notebook"
tag: 1.1.5
pullPolicy: IfNotPresent
pullSecrets:
# - name: regcred
replicas: 1
# serviceType: "ClusterIP"
# serviceType: "NodePort"
serviceType: "LoadBalancer"
servicePort: 80
# This hash corresponds to the password 'dask'
password: 'sha1:aae8550c0a44:9507d45e087d5ee481a5ce9f4f16f37a0867318c'
env:
# - name: EXTRA_CONDA_PACKAGES
# value: "numba xarray -c conda-forge"
# - name: EXTRA_PIP_PACKAGES
# value: "s3fs dask-ml --upgrade"
resources: {}
# limits:
# cpu: 2
# memory: 6G
# requests:
# cpu: 2
# memory: 6G
tolerations: []
nodeSelector: {}
affinity: {}