Skip to content

Commit

Permalink
Patch-level image updates (#303)
Browse files Browse the repository at this point in the history
* Patch-level image updates
* Add test for storage volume write-ability.
  • Loading branch information
mgruner authored Nov 21, 2024
1 parent b1d2031 commit 4a33acf
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/updatecli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ sources:
image: "zammad/zammad-docker-compose"
architecture: "linux/amd64"
# tagfilter: "^6\\.4\\.0$"
tagfilter: "^6\\.4\\.0-\\d{1}"
# tagfilter: "^6\\.4\\.0-\\d{2}"
# tagfilter: "^6\\.4\\.0-\\d{1}"
tagfilter: "^6\\.4\\.0-\\d{2}"
# tagfilter: "^6\\.4\\.0-\\d{3}"
alpine:
kind: dockerimage
Expand Down
10 changes: 5 additions & 5 deletions zammad/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: zammad
version: 13.0.1
appVersion: 6.4.0-4
version: 13.0.2
appVersion: 6.4.0-27
description: Zammad is a web based open source helpdesk/customer support system with many features to manage customer communication via several channels like telephone, facebook, twitter, chat and e-mails.
home: https://zammad.org
icon: https://raw.githubusercontent.com/zammad/zammad-documentation/main/images/zammad_logo_600x520.png
Expand All @@ -16,7 +16,7 @@ maintainers:
dependencies:
- name: elasticsearch
repository: https://charts.bitnami.com/bitnami
version: 21.3.22
version: 21.3.25
condition: zammadConfig.elasticsearch.enabled
- name: minio
version: 14.8.5
Expand All @@ -27,10 +27,10 @@ dependencies:
repository: https://charts.bitnami.com/bitnami
condition: zammadConfig.memcached.enabled
- name: postgresql
version: 16.1.2
version: 16.2.1
repository: https://charts.bitnami.com/bitnami
condition: zammadConfig.postgresql.enabled
- name: redis
version: 20.2.1
version: 20.3.0
repository: https://charts.bitnami.com/bitnami
condition: zammadConfig.redis.enabled
14 changes: 12 additions & 2 deletions zammad/templates/tests/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,20 @@ data:
namespace :helm do
desc 'Runs a set of Helm tests'
task test: :environment do |_task, args|
puts 'Checking if temporary file can be created...'
Tempfile.create do |f|
puts 'Checking if temporary file can be created…'
Tempfile.create do |_f|
puts ' Temporary file was created successfully.'
end
{{- if .Values.zammadConfig.storageVolume.enabled }}
puts 'Checking if storage file can be created…'
File.write('/opt/zammad/storage/test.txt', 'test content')
puts ' Storage file was created successfully.'
{{- else }}
puts 'Storage volume not enabled, not testing it…'
{{- end }}
end
end
end
Expand Down

0 comments on commit 4a33acf

Please sign in to comment.