Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kubespray
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
Kubespray
Commits
05c9169c
Unverified
Commit
05c9169c
authored
4 years ago
by
Florian Ruynat
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix example value for etcd_quota_backend_bytes (#6724)
parent
bd49c993
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
inventory/sample/group_vars/etcd.yml
+1
-1
1 addition, 1 deletion
inventory/sample/group_vars/etcd.yml
roles/etcd/defaults/main.yml
+1
-1
1 addition, 1 deletion
roles/etcd/defaults/main.yml
roles/kubernetes/master/defaults/main/etcd.yml
+1
-1
1 addition, 1 deletion
roles/kubernetes/master/defaults/main/etcd.yml
with
3 additions
and
3 deletions
inventory/sample/group_vars/etcd.yml
+
1
−
1
View file @
05c9169c
...
...
@@ -12,7 +12,7 @@
## Etcd has a default of 2G for its space quota. If you put a value in etcd_memory_limit which is less than
## etcd_quota_backend_bytes, you may encounter out of memory terminations of the etcd cluster. Please check
## etcd documentation for more information.
# etcd_quota_backend_bytes: "2
G
"
# etcd_quota_backend_bytes: "2
147483648
"
### ETCD: disable peer client cert authentication.
# This affects ETCD_PEER_CLIENT_CERT_AUTH variable
...
...
This diff is collapsed.
Click to expand it.
roles/etcd/defaults/main.yml
+
1
−
1
View file @
05c9169c
...
...
@@ -49,7 +49,7 @@ etcd_extra_vars: {}
# Limit memory only if <4GB memory on host. 0=unlimited
etcd_memory_limit
:
"
{%
if
ansible_memtotal_mb
<
4096
%}512M{%
else
%}0{%
endif
%}"
# etcd_quota_backend_bytes: "2
G
"
# etcd_quota_backend_bytes: "2
147483648
"
# Uncomment to set CPU share for etcd
# etcd_cpu_limit: 300m
...
...
This diff is collapsed.
Click to expand it.
roles/kubernetes/master/defaults/main/etcd.yml
+
1
−
1
View file @
05c9169c
...
...
@@ -27,6 +27,6 @@ etcd_metrics: "basic"
## Note this is different from the etcd role with ETCD_ prfexi, caps, and underscores
etcd_extra_vars
:
{}
# etcd_quota_backend_bytes: "2
G
"
# etcd_quota_backend_bytes: "2
147483648
"
etcd_compaction_retention
:
"
8"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment