Why is there No more Kubernetes for Latest version of Ubuntu - kubernetes

I am trying to install Kubernetes on Ubuntu 20.04 but the latest release is for Ubuntu 16.04. I am following the official tutorial by kubernetes https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/
Is it discontinued for Ubuntu?

As #jordanm and #mdaniel mentioned
likely the upstream disagreements in Debian about vendoring k8s dependencies. Lot of dev discussion about whether or not k8s should even be included in a stable release. OS provided packages are probably the least-common way to provision a cluster.
Related to that, kubernetes binaries are statically linked golang
programs, and thus have very little in the way of "dependency upon. Ubuntu whatever" so it's likely fine to just use the 16.04 repo.
Read: minikube-ubuntu-20.04.
See also: kubernetes-on-ubuntu.

Related

confluent-zookeeper not found

I tried installing confluent in Ubuntu 18.04 Bionic Beaver LTS using the below link:
https://docs.confluent.io/platform/current/installation/installing_cp/deb-ubuntu.html
But i am unable to find the zookeeper and kafka service that i require along with other components.
Could anyone guide me on how and where to find and install these components as well?
You can find the list of individual packages here
https://docs.confluent.io/platform/current/installation/available_packages.html#component-packages
There is no individual confluent-zookeeper package. That Systemd service gets installed alongside confluent-platform or confluent-kafka packages

Up-to-date recommendations for yocto build host version

Because the documentation recommends Ubuntu 15.10 as a yocto build host, we went to considerable effort to set this up, only to find that Bitbake still tells us that this is not a supported version.
What is the latest recommended Ubuntu version, please? I'm thinking we may as go with the latest LTS.
If you use Warrior Yocto version, you can use Ubuntu 18.04 as stated here. For older Yocto version, you'll need an older host distribution due to GCC support.
Anyway, I suggest you to build Yocto within a Docker environment, for example this one.

Kubernetes-Ubuntu14.04: How to install and configure kubernetes using Ubuntu 14.04

I'm new in using kubernetes and I need to know how can I install and use kubernetes with different nodes using ubuntu 14.04,
because all what I found is aroud ubuntu 16.04.
There is a huge difference between the two version concerning kubernetes.
I need to have a master and two slaves(using the same OS).
Is recommended to Work with kebernetes on ubuntu 14.4 ?
Thank you for your help.
Kubernetes makes use of systemd, which is not available in Ubuntu 14.04. While it is possible to install in Ubuntu 14.04, you would have to do some magic in order to make it work. You can find more info here: How to install latest Kubernetes in Ubuntu 14 (Thanks to Janos Lenart who shared in the comments)

Kubernetes 1.2 baremetal production

Is it recommended to deploy Kubernetes 1.2 on a bare-metal Ubuntu/ RedHat production cluster? If so, what is the recommended SDN tool (flanneld or OvS), docker version and etcd version to use?
Here is the getting started guide for Ubuntu. It hasn't been updated since Kubernetes v1.1.8, but it should still be applicable for v1.2.4. That getting started guide uses flannel, but you can also use Calico (Guide). The list of Kubernetes getting started guides might be a good place to start.
docker version need to be 1.2+
you can found flannel/etcd version in the script of download-release.sh

can't find openstack plugins for collectd

I'm working on a VM centos 6.6 on witch I installed collectd to gather metrics,
Everything is ok, but I want to edit some plugins to test collecting metrics from openstack that I've installed (single machine devstack)
I found this link
but the version was debian.
Is there an alternative solution to my problem?
I finally found ans answer for my question, due to fpm command that converts debian packages to rpm and vice versa.
Try to use this link: https://www.digitalocean.com/community/tutorials/how-to-use-fpm-to-easily-create-packages-in-multiple-formats
fondly