Skip to content

Commit

Permalink
Commit triggered by a change on the main branch of helm-charts-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
CGuichard committed Oct 7, 2024
1 parent 99214a1 commit 37a9ff4
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/application-hub/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2.0.59
version: 2.1.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
68 changes: 68 additions & 0 deletions charts/application-hub/files/hub/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,74 @@ profiles:
- pods
persist: false

- id: profile_studio_mlops
groups:
- group-3
definition:
display_name: MLOps - Model Trainer (JupyterLab)
slug: studio_mlops
default: False
kubespawner_override:
cpu_limit: 1
mem_limit: 4G
image: eoepca/mlops-lab:latest
default_url: "lab"
config_maps:
- name: aws-credentials
key: aws-credentials
mount_path: /home/jovyan/.aws/credentials
default_mode: "0660"
readonly: true
- name: aws-config
key: aws-config
mount_path: /home/jovyan/.aws/config
default_mode: "0660"
readonly: true
- name: docker-config
key: docker-config
mount_path: /home/jovyan/.docker/config.json
default_mode: "0660"
readonly: true
- name: new-cm
key: new-cm
mount_path: /home/jovyan/new-cm
default_mode: "0660"
readonly: true
content: |-
Hello World!
persist: false
volumes:
- name: volume-workspace
claim_name: claim-workspace
size: 10Gi
storage_class: "{{ .Values.jupyterhub.hub.extraEnv.STORAGE_CLASS }}"
access_modes:
- "ReadWriteOnce"
volume_mount:
name: volume-workspace
mount_path: "/workspace"
persist: true
pod_env_vars:
A: "10"
B: "20"
node_selector:
{{ .Values.nodeSelector.key }}: {{ .Values.nodeSelector.value }}
role_bindings:
- name: pod_reader_role_binding
subjects:
- name: default
kind: ServiceAccount
role:
name: pod_reader_role
api_group: rbac.authorization.k8s.io
verbs:
- get
- list
- watch
resources:
- pods
persist: false

- id: profile_studio_coder
groups:
- group-2
Expand Down

0 comments on commit 37a9ff4

Please sign in to comment.