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

Last edited by David Lam Nov 08, 2017
Page history

get started

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 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) 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)

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 for more help and other options.

Clone repository
  • Documentation
    • Installing Kubernetes
    • Introduction to Kubernetes
    • get started
  • Home
  • lab
    • Task01
    • task02