diff --git a/.addons.yml b/.addons.yml index 2fcbd38e..a2c57ba3 100644 --- a/.addons.yml +++ b/.addons.yml @@ -81,10 +81,6 @@ addons: repository: hassio-addons/addon-motioneye target: motioneye image: ghcr.io/hassio-addons/motioneye/{arch} - mqtt: - repository: hassio-addons/addon-mqtt - target: mqtt - image: hassioaddons/mqtt node-red: repository: hassio-addons/addon-node-red target: node-red diff --git a/mqtt/CHANGELOG.md b/mqtt/CHANGELOG.md deleted file mode 100644 index 1708ba27..00000000 --- a/mqtt/CHANGELOG.md +++ /dev/null @@ -1,26 +0,0 @@ -## ⚠️ Deprecation notice! - -This is the final and last release of this add-on, which is now deprecated. - -We strongly advise you to upgrade/migrate to using the Mosquitto add-on, as provided by the Home Assistant project. - -This add-on will be removed from the add-on store soon. - - -## Changes - -- :pencil2: Maintaince -> Maintenance -- :ambulance: Fixes path handling for SSL certificates -- :hammer: Updates HA Auth URL in NGinx LUA script -- :hammer: Use Hass.io DNS as NGinx resolver -- :fireworks: Updates maintenance/license year to 2020 -- :books: Update add-on documentation to use new YAML configuration format -- :hammer: Re-branding -- :pencil2: Fixes some typos -- :hammer: Update add-on config with new password & list features -- :arrow_up: Upgrades add-on base image to v7.0.2 -- :warning: Adds deprecation notices - -[Full Changelog][changelog] - -[changelog]: https://github.com/hassio-addons/addon-mqtt/compare/v1.1.0...v1.2.0 \ No newline at end of file diff --git a/mqtt/README.md b/mqtt/README.md deleted file mode 100644 index f6d0190d..00000000 --- a/mqtt/README.md +++ /dev/null @@ -1,60 +0,0 @@ -# Home Assistant Community Add-on: MQTT Server & Web client - -[![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] - -[![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] - -[![Buy me a coffee][buymeacoffee-shield]][buymeacoffee] - -Mosquitto MQTT Server bundled with Hivemq's web client. - -## Deprecation warning - -**This add-on is in a deprecated state!** - -This add-on is now deprecated. We highly recommend on switching to the -official Home Assistant Mosquitto add-on as an alternative. - -This add-on will soon be removed from the add-on store. - -## About - -This add-on combines the power of [Hivemq][hivemq]'s -web-based MQTT client, and the powerful [Mosquitto][mosquitto] -broker (MQTT Server). With this, you can host your own MQTT server, -and inspect/publish messages using the built-in web client! - -[Click here for the full documentation][docs] - -![Screenshot][screenshot] - -## WARNING! THIS IS A BETA VERSION! - -This Home Assistant Add-ons repository contains beta releases of add-ons. - -- They might stop working at any time. -- They could have a negative impact on your system. - -This repository was created for: - -- Anybody willing to test. -- Anybody interested in trying out upcoming add-ons or add-on features. - -If you are more interested in stable releases of our add-ons: - - - -[buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg -[buymeacoffee]: https://www.buymeacoffee.com/ludeeus -[discord-shield]: https://img.shields.io/discord/478094546522079232.svg -[discord]: https://discord.me/hassioaddons -[docs]: https://github.com/hassio-addons/addon-mqtt/blob/v1.2.0/README.md -[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg -[forum]: https://community.home-assistant.io/t/community-hass-io-add-ons-mqtt-server-web-client/70376 -[hivemq]: https://www.hivemq.com/ -[maintenance-shield]: https://img.shields.io/maintenance/yes/2020.svg -[mosquitto]: https://mosquitto.org/ -[project-stage-shield]: https://img.shields.io/badge/project%20stage-%20!%20DEPRECATED%20%20%20!-ff0000.svg -[release-shield]: https://img.shields.io/badge/version-v1.2.0-blue.svg -[release]: https://github.com/hassio-addons/addon-mqtt/tree/v1.2.0 -[screenshot]: https://github.com/hassio-addons/addon-mqtt/raw/master/images/image.png \ No newline at end of file diff --git a/mqtt/config.json b/mqtt/config.json deleted file mode 100644 index 0a2b763d..00000000 --- a/mqtt/config.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "name": "MQTT Server & Web client", - "version": "1.2.0", - "slug": "mqtt", - "description": "Mosquitto MQTT Server bundled with Hivemq's web client", - "url": "https://github.com/hassio-addons/addon-mqtt/tree/master/README.md", - "webui": "https://[HOST]:[PORT:80]", - "ingress": true, - "ingress_port": 1337, - "homeassistant": "0.92.0", - "panel_icon": "mdi:code-brackets", - "panel_title": "MQTT", - "startup": "services", - "arch": [ - "aarch64", - "amd64", - "armhf", - "armv7", - "i386" - ], - "boot": "auto", - "auth_api": true, - "hassio_api": true, - "hassio_role": "default", - "ports": { - "80/tcp": null, - "1883/tcp": 1883, - "1884/tcp": 1884, - "4883/tcp": 4883, - "4884/tcp": 4884 - }, - "ports_description": { - "80/tcp": "HiveMQ web interface (Not required for Ingress)", - "1883/tcp": "Standard MQTT port (without SSL)", - "1884/tcp": "Standard WebSocket port (without SSL)", - "4883/tcp": "Secure MQTT port (with SSL)", - "4884/tcp": "Secure WebSocket port (with SSL)" - }, - "map": [ - "share", - "ssl", - "config" - ], - "options": { - "ssl": true, - "certfile": "fullchain.pem", - "keyfile": "privkey.pem", - "broker": true, - "allow_anonymous": false, - "mqttusers": [ - { - "username": "", - "password": "", - "readonly": true, - "topics": [ - "#" - ] - } - ] - }, - "schema": { - "log_level": "list(trace|debug|info|notice|warning|error|fatal)?", - "ssl": "bool", - "certfile": "str", - "keyfile": "str", - "broker": "bool", - "allow_anonymous": "bool", - "mqttusers": [ - { - "username": "str", - "password": "password", - "readonly": "bool", - "topics": [ - "str" - ] - } - ], - "i_like_to_be_pwned": "bool?", - "leave_front_door_open": "bool?" - }, - "image": "hassioaddons/mqtt" -} \ No newline at end of file diff --git a/mqtt/icon.png b/mqtt/icon.png deleted file mode 100644 index 539d37bc..00000000 Binary files a/mqtt/icon.png and /dev/null differ diff --git a/mqtt/logo.png b/mqtt/logo.png deleted file mode 100644 index 539d37bc..00000000 Binary files a/mqtt/logo.png and /dev/null differ