Skip to content

This Repository exists to help a workshop about basic kubernetes for devs

Notifications You must be signed in to change notification settings

oriol-canalias-movile/workshop-kubernetes

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Workshop Kubernetes

Guide for workshop of kubernetes.

Prerequesite

Install Docker

We can follow the instructions of the official docker's site.

if you are using mint, perhaps needs somelse diferent, because mint is ubutu based, but is not an ubuntu:

$ sudo apt-get update
$ sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    gnupg-agent \
    software-properties-common
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -    
$ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(. /etc/os-release; echo "$UBUNTU_CODENAME") stable"
$ sudo apt-get update
$ sudo apt-get install docker-ce docker-ce-cli containerd.io

The instruction . /etc/os-release; echo "$UBUNTU_CODENAME" translates the mint version to ubuntu version.

For run without sudo:

$ sudo usermod -aG docker $USER

(reboot the user session)

References

Post Install on official documentation

About

This Repository exists to help a workshop about basic kubernetes for devs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 85.0%
  • Groovy 10.0%
  • Dockerfile 5.0%