-
Notifications
You must be signed in to change notification settings - Fork 549
[kubespray] Doc in contribute to guide user deploy k8s through kubespray #3757
Conversation
please review each component's configuration |
- "--eviction-hard=" | ||
- "--image-gc-high-threshold=100" | ||
- "--image-gc-low-threshold=95" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these flags have been deprecated in kubelet.
This parameter should be set via the config file specified by the Kubelet's --config flag. See https://kubernetes.io/docs/tasks/administer-cluster/kubelet-config-file/ for more information.
## Example: Up to 256 nodes, 100 pods per node (/16 network): | ||
## - kube_service_addresses: 10.233.0.0/17 | ||
## - kube_pods_subnet: 10.233.128.0/17 | ||
## - kube_network_node_prefix: 25 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
leading -
is not needed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
example
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the example makes it like a list
|
||
############## nginx configuration ############## | ||
|
||
# Requests for load balancer app |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pls keep the same format and use ##
--graph={{ docker_daemon_graph }} {% if ansible_os_family not in ["openSUSE Leap", "openSUSE Tumbleweed", "Suse"] %}{{ docker_log_opts }}{% endif %} | ||
{%- else %} | ||
--data-root={{ docker_daemon_graph }} {% if ansible_os_family not in ["openSUSE Leap", "openSUSE Tumbleweed", "Suse"] %}{{ docker_log_opts }}{% endif %} | ||
{%- endif %} | ||
{%- if ansible_architecture == "aarch64" and ansible_os_family == "RedHat" %} | ||
--add-runtime docker-runc=/usr/libexec/docker/docker-runc-current | ||
--default-runtime=docker-runc --exec-opt native.cgroupdriver=systemd | ||
--userland-proxy-path=/usr/libexec/docker/docker-proxy-current --signature-verification=false | ||
{%- endif -%} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wrong indent in yaml?
#3618