Skip to content
Merged
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
4 changes: 3 additions & 1 deletion .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
check-latest: true

- name: Set up chart-testing
uses: helm/chart-testing-action@v2.7.0
uses: helm/chart-testing-action@0d28d3144d3a25ea2cc349d6e59901c4ff469b3b #v2.7.0
with:
yamale_version: "6.0.0"

- name: Run chart-testing (list-changed)
id: list-changed
Expand Down
4 changes: 2 additions & 2 deletions charts/cdash/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: cdash
description: CDash aggregates, analyzes and displays the results of software testing processes
type: application
version: "0.8.1"
appVersion: "4.4.0"
version: "0.9.0"
appVersion: "4.5.0"
dependencies:
- name: postgresql
version: "16.3.5"
Expand Down
2 changes: 2 additions & 0 deletions charts/cdash/templates/worker/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,6 @@ spec:
command: [ "/bin/bash", "/cdash/docker/docker-entrypoint.sh" ]
args: [ "start-worker" ]
env:
- name: WORKER_MEMORY_LIMIT
value: {{ .Values.cdash.worker.worker_memory | quote | default "256" }}
{{ template "cdash.environment" . }}
8 changes: 7 additions & 1 deletion charts/cdash/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cdash:
https: true

# cdash.image is the Docker image to use for this CDash instance.
image: "kitware/cdash:v4.4.0"
image: "kitware/cdash:v4.5.0"

# This Helm chart uses an embedded postgres database by default.
# To use an external database instead, set postgresql.enabled: false
Expand Down Expand Up @@ -55,6 +55,12 @@ cdash:
# we should create for this Helm release.
replicas: 1

# Terminate (and restart) the worker pod *after* it parses
# a submission if it consumes more than this amount of memory
# (in megabytes).
# This should probably match the memory request below.
worker_memory: 256

resources:
requests:
memory: 256Mi
Expand Down