Skip to content

GitLab

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
K KubernetesIntroduction
  • Project overview
    • Project overview
    • Details
    • Activity
    • Releases
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Operations
    • Operations
    • Incidents
    • Environments
  • Packages & Registries
    • Packages & Registries
    • Container Registry
  • Analytics
    • Analytics
    • CI/CD
    • Repository
    • Value Stream
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
    • Members
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • blank
  • KubernetesIntroduction
  • Wiki
    • Documentation
  • get started

get started · Changes

Page history
lamd created page: Documentation/get started authored Nov 08, 2017 by David  Lam's avatar David Lam
Hide whitespace changes
Inline Side-by-side
Showing with 26 additions and 0 deletions
+26 -0
  • Documentation/get-started.md Documentation/get-started.md +26 -0
  • No files found.
Documentation/get-started.md 0 → 100644
View page @ eef27660
# Getting started
## Local Utilities
### Minikube
Minikube is a tool for running Kubernetes locally, which can be useful as a sandbox, and for testing and learning Kubernetes.
Minikube requires a hypervisor (Virtual Machine Manager) to function. If you do not already have one, [VirtualBox](https://www.virtualbox.org/) is a popular option. On Ubuntu-based linux distributions, you can install VirtualBox with
```
sudo apt-get update
sudo apt-get install virtualbox-5.2
```
([more help and other platforms](https://www.virtualbox.org/wiki/Linux_Downloads))
and on any Linux distribution, you can install Minikube with
```
curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.22.3/minikube-linux-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/
```
([more help and other platforms](https://github.com/kubernetes/minikube/releases))
### Kubectl
Kubectl is a command-line interface for managing Kuberenetes clusters.
Kubectl can be installed on Linux with the following commands:
```
curl -LO https://storage.googleapis.com/kubernetes-release/release/`curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/darwin/amd64/kubectl
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
```
See [here](https://kubernetes.io/docs/tasks/tools/install-kubectl/#install-kubectl-binary-via-curl) for more help and other options.
\ No newline at end of file
Clone repository
  • Documentation
    • Installing Kubernetes
    • Introduction to Kubernetes
    • get started
  • Home
  • lab
    • Task01
    • task02