Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Openshift owned tmp #242

Merged
merged 3 commits into from
Dec 14, 2023
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
2 changes: 1 addition & 1 deletion zammad/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: zammad
version: 10.2.0
version: 10.2.1
appVersion: 6.2.0-1
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
Expand Down
16 changes: 3 additions & 13 deletions zammad/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,22 +57,12 @@ zammadConfig:
zammad:
securityContext:
runAsUser: null
customInit: |
# use an openshift uid owned /tmp for attachments upload
mkdir -pv /opt/zammad/var/tmp && chmod -v +t /opt/zammad/var/tmp
railsserver:
tmpdir: "/opt/zammad/var/tmp"


initContainers:
- name: railsserver-tmp-init
image: "alpine:3.18.2"
command:
- /bin/sh
- -cx
- |
mkdir -p /opt/zammad/var/tmp && chmod +t /opt/zammad/var/tmp
volumeMounts:
- name: zammad-var
mountPath: /opt/zammad/var

elasticsearch:
sysctlImage:
enabled: false
Expand Down