Your submission was sent successfully! Close

You have successfully unsubscribed! Close

Thank you for signing up for our newsletter!
In these regular emails you will find the latest updates about Ubuntu and upcoming events where you can meet our team.Close

The MicroK8s addons framework – now open to everyone!

This article was last updated 1 year ago.


This is a guest post, originally posted on Konstantinos Tsakalozos’ personal blog, adapted and reproduced here with his permission. Konstantinos is a Staff Engineer at Canonical and the Software Lead behind MicroK8s.

MicroK8s addons, extra services which can be added to your bare-bones cluster, are a great favourite with users as they allow you to bring diverse DevOps operations under the same homogeneous UX. Do you want to apply the CoreDNS manifest, reconfigure kubelet and restart the nodes on a cluster? microk8s enable dns is what you run. Do you want to install a hostpath storage provisioner and fire up Portainer? microk8s enable portainer does exactly that. There are no particular restrictions to what an addon can do – if you can do it in Kubernetes, you can write an addon to do it too.

With the upcoming v1.24 release, we have opened up the addons framework to the public. We have made sure software vendors and enthusiasts can create and use their own addon repositories and edit in place any available addons within a running cluster.

In what follows we look into :

  • How addons are used
  • How they can be tuned to match your needs
  • How to create addons and use them in your own repo
  • How to promote your work through the community addons repository

How to use MicroK8s addons

At the time of this writing, the v1.24 release is in release candidate, therefore you would need to install MicroK8s from the latest/edge channel to get the latest updates on the addons framework:

sudo snap install microk8s --classic --channel=latest/edge

With the microk8s status command you can see the list of the available addons:

To enable an addon, you need to call microk8s enable followed by the name of the addon, eg microk8s enable dns. Similarly, microk8s disablewill disable the named addon and uninstall it.

In the example output above you may notice that the description of each addon starts with “core”. This indicates the repository the addon is available from. Core addons are the ones maintained and supported by the MicroK8s team.  In addition to the core addons we ship MicroK8s with a set of community-maintained addons. To display those you just need to run the command microk8s enable community:

As we will see, adding, removing and updating repositories is done through the microk8s addons repo command. microk8s enable community is a shortcut to get the community contributions visible without knowing the exact URL of the respective repo.

Adapting addons to meet your needs

Addon repositories are git projects which are cloned under /var/snap/microk8s/common/addons . For example, the core repository is found in the /var/snap/microk8s/common/addons/core directory inside which there is a folder called addons with all its addons.

Notice the enable and disable executable files found on each addon? These are the hook scripts each addon implements and the microk8s enable and microk8s disable commands expect to be able to find and call.

It is possible an addon does 95% of what you want but not exactly what you need. There is nothing stopping you from editing the respective enable hook to match your needs. Although there are no restrictions on the language these hooks are written in, often they come as Bash or Python scripts.

Try this yourself. Edit /var/snap/microk8s/common/addons/helm3/enable and set the HELM_VERSION to “v3.7.0”. Save the enable file and call microk8s enable helm3. Yes, it is that simple!

Setup your own repository

The most exciting feature of the v1.24 release is the option to add 3rd-party repositories to a MicroK8s cluster.

To bootstrap the repository authoring process the MicroK8s team provides a template repository with two example addons (in python and bash) to fork. That repository can be found at https://github.com/canonical/microk8s-addons-repo-template. The README.md and HACKING.md pages will guide you through this task.

Here, we will briefly touch on the main steps you need to take:

Fork the template repository. If you are logged into Github just click on the “Use this template” button and fill out the “new repository” form.

The addons.yaml at the top level of each repo holds the list of the addons. Replace this list with the list of addons you will be shipping. Each entry has the following fields:

  • name: the name of the addon
  • description: printed in the microk8s status output
  • version: a string with the version of your addon
  • check_status: what would the microk8s status run to figure out if the addon is enabled or not. This can be a deployment within Kubernetes or a file acting as a lock file on the host.
  • supported_architectures: for now MicroK8s ships for AMD64, ARM64 and S390x.

Create a directory under addons named after the addon you would be implementing.

In that directory, add two executable files named enable and disable. These executables can be written in any language and are called by the microk8s enable/disable commands.

At this point, you are able to add your repository into MicroK8s with something similar to:

sudo microk8s addons repo add fantastic https://github.com/myorg/myrepo

fantastic is the ID you give to your repository. From this point on this ID is used to reference the repo when updating and removing it, eg:

sudo microk8s addons repo update fantastic

sudo microk8s addons repo remove fantastic

Knowing that addons are git projects allows for a number of workflows while developing:

Using the –reference flag you can add a repository and point to a branch/tag:

You can also add a git project as a repository that is local on your host:

Use microk8s addons repo update to fetch the latest changes pushed on the repository you are working on. Alternatively, you can clone a git repository directly under /var/snap/microk8s/common/addons/ and MicroK8s will pick it up as a repository.

Promote your work in the MicroK8s community repo

MicroK8s ships with both the core and community addons. In order not to clutter the user output the community addons are not visible by default. One needs to microk8s enable community or to add the community repository as any other repository:

sudo microk8s addons repo add community https://github.com/canonical/microk8s-addons.git

In order to promote your work, you can fork the community repository, add your addon, and place a PR against the upstream repo. Some things you should be aware of:

  • New addons are added only on new releases. This means that the set of addons of a release (eg v1.24) will not change during patch releases. Newly merged addons are available in the next release.
  • Each addon is expected to have a maintainer. The addons are not “donated” to the MicroK8s team.
  • Each addon is expected to have a test making sure it deploys correctly. Tests are Python-based at this point and are found under the tests directory. Before each patch release, we make sure all tests are passing.

Summing up

One of the most powerful features of MicroK8s, the addons, is now free and available to everyone. We hope you will enjoy this freedom, and look forward to seeing what addons you will come up with!

Do not hesitate to reach out if you need any help in your journey and feel free to check out the MicroK8s website for more information.


kubernetes logo

What is Kubernetes?

Kubernetes, or K8s for short, is an open source platform pioneered by Google, which started as a simple container orchestration tool but has grown into a platform for deploying, monitoring and managing apps and services across clouds.

Learn more about Kubernetes ›

Newsletter signup

Get the latest Ubuntu news and updates in your inbox.

By submitting this form, I confirm that I have read and agree to Canonical's Privacy Policy.

Related posts

Turbocharge your API and microservice delivery on MicroK8s with Microcks

Give Microcks on MicroK8s a try and experience the benefits of accelerated development cycles and robust testing.

How should a great K8s distro feel? Try the new Canonical Kubernetes, now in beta

Try the new Canonical Kubernetes beta, our new distribution that combines ZeroOps for small clusters and intelligent automation for larger production...

Canonical Kubernetes 1.29 is now generally available

A new upstream Kubernetes release, 1.29, is generally available, with significant new features and bugfixes. Canonical closely follows upstream development,...