🔥 Remove deprecated MQTT add-on (#33)

This commit is contained in:
Franck Nijhof 2021-07-16 11:59:52 +02:00 committed by GitHub
parent 6de4ee15a7
commit ae2e5e7728
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 0 additions and 172 deletions

View file

@ -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

View file

@ -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

View file

@ -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:
<https://github.com/hassio-addons/repository>
[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

View file

@ -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"
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB