Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Configure Microk8s

I am migrating from minikube to Microk8s and I want to change the configs of Microk8s and control the resources that it can use (cpu, memory, etc.).

In minikube we can use commands like below to set the amount of resources for minikube:

minikube config set memory 8192
minikube config set cpus 2

But I don't know how to do it in Microk8s. I used below commands (with and without sudo):

microk8s.config set cpus 4
microk8s.config set cpu 4

And they returned:

apiVersion: v1
clusters:
- cluster:
    certificate-authority-data: VORCBDRVJUSUZJQ0FURS0tLS0...
    server: https://10.203.101.163:16443
  name: microk8s-cluster
contexts:
- context:
    cluster: microk8s-cluster
    user: admin
  name: microk8s
current-context: microk8s
kind: Config
preferences: {}
users:
- name: admin
  user:
    username: admin
    password: ...

But when I get the describe for that node I see that Microk8s is using 8 cpu:

Capacity:
 cpu:                8
 ephemeral-storage:  220173272Ki
 hugepages-1Gi:      0
 hugepages-2Mi:      0
 memory:             32649924Ki
 pods:               110
Allocatable:
 cpu:                8
 ephemeral-storage:  219124696Ki
 hugepages-1Gi:      0
 hugepages-2Mi:      0
 memory:             32547524Ki
 pods:               110

How can I change the config of Microk8s?

like image 359
AVarf Avatar asked May 22 '19 12:05

AVarf


People also ask

Where is microk8s config?

Under /var/snap/microk8s/current/credentials/ you can find the client. config kubeconfig file used by microk8s kubectl .

What can I do with microk8s?

Microk8s is a lightweight, pure-upstream Kubernetes aiming to reduce the barriers to entry for K8s and cloud-native application development. It comes in a single package that installs a single-node (standalone) K8s cluster in under 60 seconds. You can also use it to create a multi-node cluster with just a few commands.

Can I use kubectl with microk8s?

However, it is possible to run micro8s on MacOS and on Windows. In this case, it will set-up a Linux VM to run. At this points, you can already use microk8s if you have kubectl installed.


2 Answers

You have a wrong understanding of the microk8s concept.

Unlike minikube, microk8s is not provisioning any VMs for you, it's running on you host machine, hence all resources of the host are allocated for microk8s.

So, in order to keep your cluster resource in borders, you have to manage it with k8s pod/container resource limits

Let's say, your host has 4 CPUs and you don't want your microk8s cluster to use more then half of it's capacity.

You will need to set below limits based on the number of running pods. For a single pod, it'll be like follows:

resources:
      requests:
        memory: "64Mi"
        cpu: 2
      limits:
        memory: "128Mi"
        cpu: 2
like image 82
A_Suh Avatar answered Oct 13 '22 01:10

A_Suh


On OS/X ...

First stop multipass

sudo launchctl unload /Library/LaunchDaemons/com.canonical.multipassd.plist

Next edit the config file:

sudo su -
vi /var/root/Library/Application\ Support/multipassd/multipassd-vm-instances.json

Start multipassd again

sudo launchctl load /Library/LaunchDaemons/com.canonical.multipassd.plist

Source: https://github.com/canonical/multipass/issues/1158

like image 42
Chris Snow Avatar answered Oct 12 '22 23:10

Chris Snow