Skip to content

Commit

Permalink
Fix etcd size
Browse files Browse the repository at this point in the history
  • Loading branch information
immesys committed Jun 22, 2018
1 parent 3856f2f commit 61a5b5a
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 16 deletions.
35 changes: 20 additions & 15 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions manifest_templates/etcd-cluster.daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ spec:
- --initial-cluster-state
- new
image: quay.io/coreos/etcd:{{.SiteInfo.Etcd.Version}}
env:
- name: ETCD_AUTO_COMPACTION_RETENTION
value: "1"
- name: ETCD_QUOTA_BACKEND_BYTES
value: "8589934592"
volumeMounts:
- name: data
mountPath: /data
Expand Down Expand Up @@ -121,6 +126,11 @@ spec:
- --initial-cluster-state
- new
image: quay.io/coreos/etcd:{{.SiteInfo.Etcd.Version}}
env:
- name: ETCD_AUTO_COMPACTION_RETENTION
value: "1"
- name: ETCD_QUOTA_BACKEND_BYTES
value: "8589934592"
volumeMounts:
- name: data
mountPath: /data
Expand Down Expand Up @@ -193,6 +203,11 @@ spec:
- --initial-cluster-state
- new
image: quay.io/coreos/etcd:{{.SiteInfo.Etcd.Version}}
env:
- name: ETCD_AUTO_COMPACTION_RETENTION
value: "1"
- name: ETCD_QUOTA_BACKEND_BYTES
value: "8589934592"
volumeMounts:
- name: data
mountPath: /data
Expand Down
2 changes: 1 addition & 1 deletion tools/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ package tools

const VersionMajor = 4
const VersionMinor = 11
const VersionPatch = 0
const VersionPatch = 1

0 comments on commit 61a5b5a

Please sign in to comment.