Bug 1295487

Summary: KUBELET_ARTS typo
Product: Red Hat Enterprise Linux 7 Reporter: Alex Dellapenta <adellape>
Component: doc-RHEL-AtomicAssignee: Zac Dover <zdover>
Status: CLOSED CURRENTRELEASE QA Contact: ecs-bugs
Severity: medium Docs Contact: Vikram Goyal <vigoyal>
Priority: unspecified    
Version: 7.2CC: cnegus, yruseva, zdover
Target Milestone: rcKeywords: Documentation
Target Release: 7.2   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2016-01-28 11:07:25 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:

Description Alex Dellapenta 2016-01-04 16:46:16 UTC
Doc bug for RED HAT ENTERPRISE LINUX ATOMIC HOST 7 GETTING STARTED WITH CONTAINERS (https://access.redhat.com/documentation/en/red-hat-enterprise-linux-atomic-host/version-7/getting-started-with-containers/#setting_up_kubernetes_on_the_nodes).

In "3.5. SETTING UP KUBERNETES ON THE NODES", there's a typo of "KUBELET_ARTS" in the text that should be "KUBELET_ARGS" (as correctly shown in the example code block that follows):

=======

Edit /etc/kubernetes/kubelet: In this file on each node, modify KUBELET_ADDRESS (0.0.0.0 to listen on all network interfaces), KUBELET_HOSTNAME (replace hostname_override with the hostname or IP address of the local system: node1 or node2), set KUBELET_ARTS to "--register-node=true", and KUBELET_API_SERVER (set --api_servers=http://master.example.com:8080 or other location of the master), as shown below:

KUBELET_ADDRESS="--address=0.0.0.0"
KUBELET_HOSTNAME="--hostname-override=node?"
KUBELET_ARGS="--register-node=true"
KUBELET_API_SERVER="--api_servers=http://master.example.com:8080"