Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions charts/tidepool/charts/task/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ A Helm chart for Kubernetes
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| affinity | object | `{}` | affinity |
| deployment.env.queue.dispatchTasksInterval | int | `5` | |
| deployment.env.queue.delay | int | `5` | |
| deployment.env.queue.workers | int | `5` | |
| deployment.image | string | `"tidepool/platform-task:master-latest"` | Docker image |
Expand Down
4 changes: 2 additions & 2 deletions charts/tidepool/charts/task/templates/1-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ spec:
name: dexcom
key: ClientURL
optional: true
- name: TIDEPOOL_TASK_QUEUE_DELAY
value: {{ .Values.deployment.env.queue.delay | quote }}
- name: TIDEPOOL_TASK_QUEUE_DISPATCH_TASKS_INTERVAL
value: {{ .Values.deployment.env.queue.dispatchTasksInterval | quote }}
- name: TIDEPOOL_TASK_QUEUE_DISPATCH_TASKS_DELAY
value: {{ .Values.deployment.env.queue.delay | quote }}
- name: TIDEPOOL_TASK_QUEUE_WORKERS
Comment thread
darinkrauss marked this conversation as resolved.
Expand Down
1 change: 1 addition & 0 deletions charts/tidepool/charts/task/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ deployment:
replicas: 1
env:
queue:
dispatchTasksInterval: 5
delay: 5
Comment thread
darinkrauss marked this conversation as resolved.
workers: 5
configmap:
Expand Down