Skip to main content

No project description provided

Project description

Community Hass.io Add-ons Repository Updater

PyPi Release GitHub Activity License

Project Stage Project Maintenance

Community Forum

About

Reads remote add-on repositories, determines versions and generates changelogs to update the add-on repository fully automated.

Mainly used by the Community Hass.io add-ons project.

Please note, this program cannot be used with the general documented Hass.io add-on repository approach and only works in the setup where each add-on has its own GitHub repository.

Installation

Using pip, the Python package manager:

pip install hassio-repo-updater

Usage

The Repository Updater is a pretty simple, straightforward CLI tool.

Usage: repository-updater [OPTIONS]

  Community Hass.io Add-ons Repository Updater.

Options:
  --token <TOKEN>                 GitHub access token
  --repository <orgname/reponame>
                                  The Hassio Addons repository to update
  --addon <TARGET>                Update a single/specific add-on
  --force                         Force an update of the add-on repository
  --dryrun, --dry-run, --simulate
                                  Do everything which is supposed to be done,
                                  but don't write any changes. This is used to
                                  see what would happen with the specified
                                  action, without actually modifying anything.
  --version                       Show the version and exit.
  --help                          Show this message and exit.

To get a GitHub token, please see the GitHub article: Create a token

Add-ons Repository Configuration

In order for the Repository Updater to do its job, we need feed it some information. It needs to know which add-ons there are currently in the add-ons repository and where each add-on is located on GitHub.

Secondly, it needs to know the stability channel of the add-ons repository. There are 3 stability channel levels available:

  • stable: Stable releases
  • beta: Beta / test releases
  • edge: Latest builds, usually build straight from development

Create a .hassio-addons.yml file in the root of the add-ons repository, which looks like this:

channel: edge
addons:
  example:
    repository: hassio-addons/addon-example
    target: example
    image: hassioaddons/example-{arch}
  homebridge:
    repository: hassio-addons/addon-homebridge
    target: homebridge
    image: hassioaddons/homebridge-{arch}
  pihole:
    repository: hassio-addons/addon-pi-hole
    target: pi-hole
    image: hassioaddons/pi-hole-{arch}
    channels: beta, stable

The target in the add-ons repository is specified as the key for each add-on, this will be the directory name inside the add-ons repository as well. This is different from the target key, in a way that that key specified the add-on target directory inside the git repository of the add-on itself.

In the above example, pihole will be the name of the add-on directory inside the add-ons repository, while pi-hole is the directory in the add-on git repo that contains the actual add-on.

repository specified the location of the add-on on GitHub. This must be in organization/repository or username/repository format.

The image key defines the Docker container images on Docker Hub for this add-on. {arch} can be used as a placeholder for the architecture and is automatically replaced internally by the Repository Updater.

Finally, you can add individual channels key for each add-on. This allows you to store several versions of add-ons in one repository at once. This way is convenient if you have your own repository with a small number of add-ons.

Add-ons Repository README template

It is nice to have an up to date README.md file in your add-ons repository, but maintaining one, can be quite time-consuming. The Repository updater is able to update the README.md file for you each run.

This is done using a Jinja2 template. Simply create a file called .README.j2 in the root of your add-ons repository. Most information is collected from the add-on config.json and GitHub repo.

The following variables are available in your templates and are passed into it upon rendering your template.

  • addons: A list of add-ons in this add-ons repository
  • channel: The channel type of this add-ons repository
  • description: The GitHub add-ons repository description
  • homepage: The GitHub add-ons repository specified homepage URL
  • issues: The URL to the issues listing of the GitHub add-ons repository
  • name: The full GitHub name, e.g., hassio-addons/repository
  • repo: The full URL to the GitHub add-ons repository

In the above variables, a list of addons was specified. Each item in this list contains the following variables:

  • name: Name of the add-on
  • description: Description of the add-on
  • url: URL of the add-on
  • repo: URL to the add-on GitHub repo
  • archs: List of supported architectures by this add-on
  • slug: The add-on slug
  • target: The target directory of the add-on inside the add-ons repository
  • image: The (untouched) Docker Hub container image name
  • images: Dictionary of images per architecture
    • aarch64: aarch64 DockerHub image (if arch is supported)
    • amd64: amd64 DockerHub image (if arch is supported)
    • armhf: armhf DockerHub image (if arch is supported)
    • i386: i386 DockerHub image (if arch is supported)
  • version: The version of the add-on
  • commit: Full SHA of the commit bound to the current version
  • date: Date and time of the above commit/version

Examples

It is quite a complex setup to create an example for in this little document. Nevertheless, see the Community Hass.io Addons Repository for an example of .README.j2 and .hassio-addons.yml files.

The community project also uses GitLab for building its add-ons. Each add-on runs this tool upon build, ensuring the repositories are always up to date. Be sure to check some of the add-ons out as well to learn more about the whole setup.

Why do this all

Let me start by saying, there is nothing wrong with the documented way of setting up a Hass.io add-ons repository. If you are just starting out developing add-ons, please use the official documented way. You can always decide to change your workflow.

Nevertheless, there are some advantages using the alternative method:

  • Each add-on has its own Git repository, which allows for a maximum separation of concerns. Each add-on has its own issue list, releases, and all other GitHub goodness.
  • Release and versioning is based on GitHub Releases / Git tagging. Which does not need updating of configuration files and is done with a single click.
  • Each add-on Git repository is downloadable and instantly buildable locally.
  • Every single piece of manual labor around maintaining an add-ons repository is fully automated. Building, testing, quality control, publishing, changelogs and even the add-ons repository README are updated automatically. This level of automation allows us to focus completely on developing the actual add-on.
  • Availability of Beta and Edge channels for everyone who's interested or willing to test.

Known issues and limitations

  • Any kind of testing... is missing...

Changelog & Releases

This repository keeps a change log using GitHub's releases functionality. The format of the log is based on Keep a Changelog.

Releases are based on Semantic Versioning, and use the format of MAJOR.MINOR.PATCH. In a nutshell, the version will be incremented based on the following:

  • MAJOR: Incompatible or major changes.
  • MINOR: Backwards-compatible new features and enhancements.
  • PATCH: Backwards-compatible bugfixes and package updates.

Support

Got questions?

You have several options to get them answered:

You could also open an issue here GitHub.

Contributing

This is an active open-source project. We are always open to people who want to use the code or contribute to it.

We have set up a separate document containing our contribution guidelines.

Thank you for being involved! :heart_eyes:

Authors & contributors

The original setup of this repository is by Franck Nijhof with major modifications by Andrey "Limych" Khrolenok.

For a full list of all authors and contributors, check the contributor's page.

We have got some Hass.io add-ons for you

Want some more functionality to your Hass.io Home Assistant instance?

We have created multiple add-ons for Hass.io. For a full list, check out our GitHub Repository.

License

MIT License

Copyright (c) 2018-2020 Franck Nijhof
Copyright (c) 2020 Andrey "Limych" Khrolenok

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hassio-repo-updater-0.4.2.tar.gz (15.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page