Difference between revisions of "Tutorials:Install the Kubernetes infrastructure"

From Collective Computational Unit
Jump to navigation Jump to search
(Created page with "== Install Kubernetes packages == If you want to run containers on your own system, make sure to first follow all previous guides. If you just want to use the cluster, it is...")
 
m
Line 5: Line 5:
 
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
 
#!/bin/bash
 
#!/bin/bash
 +
sudo apt install snap
 +
sudo snap install kubectl --classic
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 12:48, 1 June 2019

Install Kubernetes packages

If you want to run containers on your own system, make sure to first follow all previous guides. If you just want to use the cluster, it is sufficient to install Kubernetes kubectl command line tool as follows:

#!/bin/bash
sudo apt install snap
sudo snap install kubectl --classic