Lab 3.2 Creating deployment on Master
For Now I am just reading the labs due to my inability to install a master and worker node.
in lab 3.2 it says go back to the Master node to create the deployment.
Just confused does it matter which node you execute
kubectl create -f ....
As even if you execute this on the worker node would'nt it just communicate with the API server to create the deployment?
Or is there any specific reason why you want to create deployments on Master node.
Comments
-
I can think of 2 reasons to run kubectl on the master instead of the worker:
- kube-apiserver only runs on the master. If you run kubectl "somewhere else" (such as from the worker node), kubectl must connect to the master ip and port. In the case of this lab, the authors can always be sure that kubectl executed on the master will be able to reach kube-apiserver running on the master. If you run kubectl somewhere else, there's a chance some infrastructure config could block access to kube-apiserver.
- kubectl needs to authenticate to kube-apiserver. The k8smaster.sh setup process creates the ~/.kube/config file that kubectl uses to authenticate.
You could copy ~/.kube/config to your worker node
lets try it, on worker node, 'kubectl get pods' fails because I have not copied over the .kube/config file
root@node1:~# kubectl get pods The connection to the server localhost:8080 was refused - did you specify the right host or port?
I then copied ~/.kube/config from the master node to the worker. now the kubectl command works
root@node1:~# kubectl get nodes NAME STATUS ROLES AGE VERSION node1 Ready <none> 5d21h v1.16.1 node2 Ready master 5d22h v1.16.1
0 -
Hi @allensiho,
For simplicity, the lab environment setup configures
kubectlto run only from the master node - as pointed out by @bkclements, when the~/.kube/configfile is created.
Kubectl is the Kubernetes CLI tool, allowing you to manage Kubernetes API resources by communicating directly with the API server running on the master node. For cluster security reasonskubectlshould be configured to be used from a single location (either from inside or outside the cluster). In our case, it has been configured to run only from the master node. Thereforekubectl create -f ..., or any otherkubectl ...commands should be issued from the master node.You are right however about the creation of a Deployment. Regardless of the location of the kubectl CLI tool together with its configuration file, by talking to the API server running on the master node it will request the creation of the Deployment API object and all of its related resources.
Regards,
-Chris0 -
Thanks @chrispokorni , @bkclements
0
Categories
- All Categories
- 177 LFX Mentorship
- 177 LFX Mentorship: Linux Kernel
- 754 Linux Foundation IT Professional Programs
- 374 Cloud Engineer IT Professional Program
- 170 Advanced Cloud Engineer IT Professional Program
- 74 DevOps IT Professional Program - Discontinued
- 5 DevOps & GitOps IT Professional Program
- 100 Cloud Native Developer IT Professional Program
- 7.6K Training Courses & Learning Paths
- 2 AI & ML Training
- 1 Blockchain & Decentralized Identity Training
- 5 Cloud & Containers Training
- 1 Cybersecurity Training
- 2 DevOps & Site-Reliability Training
- 1 Linux Kernel Development Training
- 1 Networking Training
- 2 Open Source Best Practice Training
- 2 System Administration Training
- 1 System Engineering Training
- 1 Web & Application Development Training
- 794 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 95 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 89 Storage
- 769 Linux Distributions
- 81 Debian
- 68 Fedora
- 22 Linux Mint
- 13 Mageia
- 24 openSUSE
- 150 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 465 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 98 Linux Security
- 78 Network Management
- 101 System Management
- 46 Web Management
- 112 Mobile Computing
- 20 Android
- 77 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 393 Off Topic
- 121 Introductions
- 182 Small Talk
- 29 Study Material
- 977 Programming and Development
- 310 Kernel Development
- 649 Software Development
- 990 Software
- 382 Applications
- 182 Command Line
- 5 Compiling/Installing
- 68 Games
- 317 Installation
- Archived
- 2 LFD140 Class Forum
- 1.4K LFS258 Class Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)