You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Update to Zammad 7.0
- Adds support for Redis Sentinel. Fixes#391.
- Fix all `rails` invocations to use `bundle exec rails`.
- Pass POSTGRESQL_* variables directly rather than DATABASE_URL
- Zammad 7.0 is able to construct the DATABASE_URL itself, so it's better to pass the raw variables to it to avoid issues with special character escaping.
- The bitnami memcached subchart was replaced with [cloudpirates-memcached/memcached](https://artifacthub.io/packages/helm/cloudpirates-memcached/memcached).
This should be a seamless update.
Closes#402
- The bitnami redis subchart was replaced with [cloudpirates-redis/redis](https://artifacthub.io/packages/helm/cloudpirates-redis/redis).
Please check your values for this subchart, as there have been minor changes here (resources configuration is now on the top level rather than in `master`).
The name of the primary redis service has changed from `{{ .Release.Name }}-redis-master` to `{{ .Release.Name }}-redis`.
A data migration is not required here.
Fixes#367, closes: #401
Copy file name to clipboardExpand all lines: zammad/Chart.yaml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
apiVersion: v2
2
2
name: zammad
3
-
version: 15.7.0
4
-
appVersion: 6.5.2-85
3
+
version: 16.0.0
4
+
appVersion: 7.0.0
5
5
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.
This cronjob never runs by default, but you can channge`zammadConfig.cronJob.reindex.suspend`
196
+
This cronjob never runs by default, but you can change`zammadConfig.cronJob.reindex.suspend`
197
197
and `zammadConfig.cronJob.reindex.schedule` if you want to run it periodically.
198
198
199
199
## Upgrading
200
200
201
+
### From Chart Version 15.x to 16.0.0
202
+
203
+
- The bitnami memcached subchart was replaced with [cloudpirates-memcached/memcached](https://artifacthub.io/packages/helm/cloudpirates-memcached/memcached).
204
+
This should be a seamless update.
205
+
- The bitnami redis subchart was replaced with [cloudpirates-redis/redis](https://artifacthub.io/packages/helm/cloudpirates-redis/redis).
206
+
- Please check your values for this subchart, as there have been minor changes here (resources configuration is now on the top level rather than in `master`).
207
+
- The name of the primary redis service has changed from `{{ .Release.Name }}-redis-master` to `{{ .Release.Name }}-redis`.
208
+
- The new subchart creates its own `PersistentVolumeClaim`. As Zammad does not store permantent data in Redis, there is no data migration required here. Feel free to clean up the unused `PersistentVolumeClaim` from the previous subchart at your convenience (it has `master` in its name, e.g. `redis-data-zammad-redis-master-0`).
209
+
201
210
### From Chart Version 14.x to 15.0.0
202
211
203
-
- The selector matchLabels of all deployments changed which are unfortunately immutable. This means each deployment needs to
204
-
be deleted before upgrading the helm chart. To preserve high availability the `cascade=orphan` option can be used
212
+
- The selector matchLabels of all deployments changed which are unfortunately immutable. This means each deployment needs to
213
+
be deleted before upgrading the helm chart. To preserve high availability the `cascade=orphan` option can be used
0 commit comments