-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-2.2.0' into stable
- Loading branch information
Showing
12 changed files
with
99 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
apiVersion: extensions/v1beta1 | ||
kind: Deployment | ||
metadata: | ||
name: memcached | ||
namespace: default | ||
labels: | ||
app: memcached | ||
spec: | ||
replicas: 1 | ||
revisionHistoryLimit: 1 | ||
template: | ||
metadata: | ||
labels: | ||
app: memcached | ||
spec: | ||
terminationGracePeriodSeconds: 10 | ||
|
||
containers: | ||
- name: memcached | ||
image: zammad/zammad-docker-compose:zammad-memcached | ||
args: [ "zammad-memcached" ] | ||
ports: | ||
- containerPort: 11211 | ||
name: memcached | ||
imagePullPolicy: Always | ||
readinessProbe: | ||
tcpSocket: | ||
port: 11211 | ||
initialDelaySeconds: 20 | ||
periodSeconds: 10 | ||
livenessProbe: | ||
tcpSocket: | ||
port: 11211 | ||
initialDelaySeconds: 10 | ||
periodSeconds: 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: memcached | ||
namespace: default | ||
labels: | ||
app: memcached | ||
spec: | ||
ports: | ||
- port: 11211 | ||
selector: | ||
app: memcached |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,9 @@ MAINTAINER Bertrand Gouny <[email protected]> | |
ENV ZAMMAD_DIR /home/zammad | ||
ENV ZAMMAD_USER zammad | ||
ENV RAILS_ENV production | ||
ENV RAILS_SERVER puma | ||
|
||
ARG ZAMMAD_VERSION=2.1.0 | ||
ARG ZAMMAD_MD5=afc7471fef4214bfec638c65d37a58d1 | ||
ARG ZAMMAD_VERSION=2.2.0 | ||
ARG ZAMMAD_MD5=d3657d09d8f7cbfc3e37bf8f8d4d82c6 | ||
|
||
ARG GOSU_VERSION=1.10 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters