Minikube

Introduction

Page on Minikube1.

Installation

Fedora

To install Minikube on Fedora use:

$ curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-latest.x86_64.rpm
$ sudo rpm -Uvh minikube-latest.x86_64.rpm

Setup

Most of the configuration settings can be set using the config subcommand.

Kubernetes version

To stet the Kubernetes cluster version (e.g 1.19) there are two options. Either permanently set it as a config option

$ minikube config set kubernetes-version v1.19.0

Or specify it as a parameter when starting, using

$ minikube start --kubernetes-version=v1.19.0

Memory

Set the available amount of memory.

$ minikube config set memory 8000

Deployment

From image

To build an image use the minikube command

minikube image build -t ruivieira/my-image .

Image deployment?