Skip to content

Latest commit

 

History

History
48 lines (40 loc) · 856 Bytes

kubernetes-cheatsheet.md

File metadata and controls

48 lines (40 loc) · 856 Bytes
aliases archive_links category classification date date_modified draft id image links local_archive_links pinned print series tags title type
kubernetes-cheatsheet
kubernetes
public
2021-12-07 03:18:37 -0800
2021-12-07 03:18:37 -0800
false
20211207111837
false
false
cheatsheet
kubernetes
orchestration
Kubernetes Cheatsheat
tech-note

Download & Install Kubernetes

Create Repository

Create a new repository file:

sudo vim /etc/yum.repos.d/kubernetes.repo

And insert the below:

[kubernetes]
name=Kubernetes
baseurl=https://packages.cloud.google.com/yum/repos/kubernetes-el7-x86_64
enabled=1
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://packages.cloud.google.com/yum/doc/yum-key.gpg https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg

Install kubectl

sudo dnf install kubectl