MicroK8s, developed by Canonical, is a lightweight Minimal CNCF-certified distribution of Kubernetes. Designed for local development, IoT appliances, CI/CD, and use at the edge, MicroK8s is available as a snap and available on Linux, Windows and Mac.
Questions tagged [microk8s]
415 questions
-1
votes
1 answer
Installing helm chart under custom namespace
I am trying to install some helm charts into custom namespaces on a Microk8s cluster but get the following errors. What am I doing wrong? The cluster is fresh and none of these namespaces or resources exist.
> helm install loki grafana/loki-stack -f…

Johan Book
- 153
- 1
- 3
- 10
-1
votes
2 answers
Reconnect grpc client
I have some pods running some services (e.g. an authentication service). It sends requests to the client service via grpc. When the client service is restarted, the IP address of the pod changes. And then the authentication service receives a new IP…

mide
- 23
- 3
-1
votes
1 answer
Microk8s Raspberry Pi 4 cluster
I am trying to setup a Microk8s Raspberry Pi 4 cluster with 6 Raspberry Pi SoC Ubuntu 20.4 servers. At first it was working after some restart none of the microk8s are working on servers. Getting not running status on microk8s status command. It was…

Simple Humble
- 9
- 3
-1
votes
1 answer
Microk8s ingress - defaultBackend
inside my ingress config i changed default backend.
spec:
defaultBackend:
service:
name: navigation-service
port:
number: 80
When I describe ingress i have got
Name: ingress-nginx
Namespace: …

Sekru
- 515
- 2
- 11
-1
votes
1 answer
Getting this error when creating a yaml file in kubernetes
Getting this error kindly give the solution and kindly see the attached screenshot[error][1]
-1
votes
2 answers
Error running Stern to look at microk8s logs
I’m getting an error when running stern as it didn’t have a config file. I gave it the .kube/config file but this errors, “..signed by an unknown authority” I need to generate a new config file for Stern to run on microk8s.kubectrl but can’t find…

Jane Swannington
- 3
- 3
-1
votes
1 answer
k8s use the local docker image
When I was trying to create a deployment in microk8s, I got some problem with docker images.
My yaml looks like this,as you can see,I use the IfNotPresent ImagePullPolicy to create my deployment:
I pull the image to my docker:
However, it seems…

朱江源
- 1
- 1
-2
votes
1 answer
Why i have no internet connectivity from inside Ubuntu VM?
The ubuntu local VM was launched using "multipass" on a MacOS machine.
Once in the VM, i used the microk8s command to download and install the "snap" app (this was part of a MS tutorial), but errors happened.
This is the code i tried to…

coding99
- 68
- 1
- 8
-5
votes
1 answer
docker-compose equivalent to kubernetes deployment
I have a custom docker-compose.yml file below. I created for my postgres cluster.
services:
pg-master:
build: '.'
restart: 'always'
environment:
POSTGRES_USER: 'postgres'
POSTGRES_PASSWORD: 'postgres'
PGDATA:…

Jayson Gonzaga
- 140
- 1
- 4
- 11