⬆️ Updating add-on WireGuard to 997bd2e

This commit is contained in:
Community Hass.io Add-ons Bot 2023-03-26 13:17:19 +00:00
parent c95c47116e
commit 35f0794b7d
4 changed files with 73 additions and 60 deletions

View file

@ -1,10 +1,23 @@
## Whats changed
## 🚀 Enhancements
- Use netfilter tables (nf_tables) backend by default @agners (#213)
## ⬆️ Dependency updates
- ⬆️ Upgrades add-on base image to 12.2.3 @frenck (#208)
- ⬆️ Upgrades add-on base image to 12.2.7 @agners (#212)
# Changelog since v0.7.1
- ⬆️ Update ghcr.io/hassio-addons/base Docker tag to v13 (#226)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- ⬆️ Update alpine_3_17/openresolv to v3.12.0-r1 (#222)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- ⬆️ Update alpine_3_17/git to v2.38.4-r1 (#224)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- ⬆️ Update alpine_3_17/go to v1.19.7-r0 (#225)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- ⬆️ Update alpine_3_17/wireguard-tools to v1.0.20210914-r1 (#223)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- ⬆️ Update alpine_3_17/libqrencode to v4.1.1-r1 (#220)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- ⬆️ Update alpine_3_17/iptables to v1.8.8-r2 (#219)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- Add Renovate for dependency management (#218)

View file

@ -57,6 +57,6 @@ If you are more interested in stable releases of our add-ons:
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
[patreon]: https://www.patreon.com/frenck
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
[release-shield]: https://img.shields.io/badge/version-v0.7.1-blue.svg
[release]: https://github.com/hassio-addons/addon-wireguard/tree/v0.7.1
[release-shield]: https://img.shields.io/badge/version-997bd2e-blue.svg
[release]: https://github.com/hassio-addons/addon-wireguard/tree/997bd2e
[wireguard]: https://www.wireguard.com

View file

@ -1,71 +1,71 @@
name: WireGuard
version: 997bd2e
slug: wireguard
description: Fast, modern, secure VPN tunnel
url: https://github.com/hassio-addons/addon-wireguard
codenotary: codenotary@frenck.dev
arch:
- aarch64
- amd64
- armhf
- armv7
- i386
codenotary: codenotary@frenck.dev
description: Fast, modern, secure VPN tunnel
init: false
ports:
80/tcp: null
51820/udp: 51820
ports_description:
80/tcp: WireGuard peers status API
51820/udp: 'WireGuard: forward this port in your router'
hassio_api: true
privileged:
- NET_ADMIN
devices:
- /dev/net/tun
hassio_api: true
image: ghcr.io/hassio-addons/wireguard/{arch}
init: false
map:
- ssl:rw
name: WireGuard
options:
peers:
- addresses:
- 172.27.66.2
allowed_ips: []
client_allowed_ips: []
name: hassio
server:
host: myautomatedhome.duckdns.org
addresses:
- 172.27.66.1
dns: []
host: myautomatedhome.duckdns.org
ports:
51820/udp: 51820
80/tcp: null
ports_description:
51820/udp: 'WireGuard: forward this port in your router'
80/tcp: WireGuard peers status API
privileged:
- NET_ADMIN
peers:
- name: hassio
addresses:
- 172.27.66.2
allowed_ips: []
client_allowed_ips: []
schema:
log_level: list(trace|debug|info|notice|warning|error|fatal)?
server:
host: str
interface: match(^wg([0-9])+$)?
addresses:
- str
dns:
- str
private_key: password?
public_key: str?
fwmark: str?
table: str?
pre_up: str?
pre_down: str?
post_up: str?
post_down: str?
mtu: int?
peers:
- addresses:
- name: match(^[a-zA-Z0-9\d](?:[a-zA-Z0-9\d]|-(?=[a-zA-Z0-9\d])){0,32}$)
private_key: str?
public_key: str?
addresses:
- str
allowed_ips:
- str
client_allowed_ips:
- str
endpoint: str?
fwmark: str?
name: match(^[a-zA-Z0-9\d](?:[a-zA-Z0-9\d]|-(?=[a-zA-Z0-9\d])){0,32}$)
persistent_keep_alive: int?
endpoint: str?
pre_shared_key: str?
private_key: str?
public_key: str?
server:
addresses:
- str
dns:
- str
fwmark: str?
host: str
interface: match(^wg([0-9])+$)?
mtu: int?
post_down: str?
post_up: str?
pre_down: str?
pre_up: str?
private_key: password?
public_key: str?
table: str?
slug: wireguard
url: https://github.com/hassio-addons/addon-wireguard
version: 0.7.1
image: ghcr.io/hassio-addons/wireguard/{arch}