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
rconway committed Aug 22, 2023
1 parent 404bc02 commit ca52b42
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
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.48
version: 2.0.49

# 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
20 changes: 10 additions & 10 deletions charts/application-hub/files/hub/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ profiles:
name: volume-workspace
mount_path: "/workspace"
persist: true
node_selector:
node-role.kubernetes.io/worker: "true"
node_selector:
{{ .Values.nodeSelector.key }}: {{ .Values.nodeSelector.value }}

- id: profile_studio_stac_browser_planet
groups:
Expand All @@ -59,7 +59,7 @@ profiles:
pod_env_vars:
STAC_URL: "https://raw.githubusercontent.com/cholmes/sample-stac/master/stac/catalog.json"
node_selector:
node-role.kubernetes.io/worker: "true"
{{ .Values.nodeSelector.key }}: {{ .Values.nodeSelector.value }}
config_maps:
- name: aws-credentials
key: aws-credentials
Expand Down Expand Up @@ -104,7 +104,7 @@ profiles:
STAC_URL: "https://api.radiant.earth/mlhub/v1/"
AUTH_CONFIG: "{ type: 'query', key: 'key', description: 'Please get the API key from your [Radiant MLHub Profile](https://mlhub.earth/profile).'}"
node_selector:
node-role.kubernetes.io/worker: "true"
{{ .Values.nodeSelector.key }}: {{ .Values.nodeSelector.value }}
config_maps:
- name: aws-credentials
key: aws-credentials
Expand Down Expand Up @@ -146,7 +146,7 @@ profiles:
image: eoepca/iga-remote-desktop:develop
default_url: "desktop"
node_selector:
node-role.kubernetes.io/worker: "true"
{{ .Values.nodeSelector.key }}: {{ .Values.nodeSelector.value }}
config_maps:
- name: aws-credentials
key: aws-credentials
Expand Down Expand Up @@ -188,7 +188,7 @@ profiles:
image: eoepca/iga-remote-desktop-snap:develop
default_url: "desktop"
node_selector:
node-role.kubernetes.io/worker: "true"
{{ .Values.nodeSelector.key }}: {{ .Values.nodeSelector.value }}
config_maps:
- name: aws-credentials
key: aws-credentials
Expand Down Expand Up @@ -230,7 +230,7 @@ profiles:
image: eoepca/iga-remote-desktop-qgis:develop
default_url: "desktop"
node_selector:
node-role.kubernetes.io/worker: "true"
{{ .Values.nodeSelector.key }}: {{ .Values.nodeSelector.value }}
config_maps:
- name: aws-credentials
key: aws-credentials
Expand Down Expand Up @@ -271,7 +271,7 @@ profiles:
mem_limit: 4G
image: eoepca/iga-streamlit-demo:develop
node_selector:
node-role.kubernetes.io/worker: "true"
{{ .Values.nodeSelector.key }}: {{ .Values.nodeSelector.value }}
config_maps:
- name: aws-credentials
key: aws-credentials
Expand Down Expand Up @@ -351,7 +351,7 @@ profiles:
A: 10
B: 20
node_selector:
node-role.kubernetes.io/worker: "true"
{{ .Values.nodeSelector.key }}: {{ .Values.nodeSelector.value }}

- id: profile_studio_coder
groups:
Expand All @@ -365,7 +365,7 @@ profiles:
mem_limit: 8G
image: eoepca/pde-code-server@sha256:98b77ef39830aec162d9a30311957a48f2b4010930e999969656db11fa788a1b
node_selector:
node-role.kubernetes.io/worker: "true"
{{ .Values.nodeSelector.key }}: {{ .Values.nodeSelector.value }}
volumes:
- name: volume-workspace
claim_name: claim-dev
Expand Down
4 changes: 3 additions & 1 deletion charts/application-hub/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ autoscaling:
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80

nodeSelector: {}
nodeSelector:
key: node-role.kubernetes.io/worker
value: \"true\"

tolerations: []

Expand Down

0 comments on commit ca52b42

Please sign in to comment.