mirror of
https://github.com/hassio-addons/repository-edge.git
synced 2025-05-05 03:31:36 +00:00
⬆️ Updating add-on Tailscale to 4318158
This commit is contained in:
parent
c4d236af75
commit
67e6f12502
6 changed files with 37 additions and 6 deletions
|
@ -1,4 +1,7 @@
|
|||
# Changelog since v0.11.1
|
||||
- Make userspace networking configurable (#199)
|
||||
|
||||
Co-authored-by: Franck Nijhof <frenck@frenck.nl>
|
||||
- make accepting subnet routes optional (#252)
|
||||
- Use new .Self.CapMap in status JSON for HTTPS support check (#260)
|
||||
- Update Installation section in documentation (#242)
|
||||
|
|
|
@ -70,6 +70,7 @@ tags:
|
|||
- tag:example
|
||||
- tag:homeassistant
|
||||
taildrop: true
|
||||
userspace_networking: true
|
||||
```
|
||||
|
||||
### Option: `accept_dns`
|
||||
|
@ -186,6 +187,22 @@ the default (`https://controlplane.tailscale.com`). This is useful if you
|
|||
are running your own Tailscale control server, for example, a self-hosted
|
||||
[Headscale] instance.
|
||||
|
||||
### Option: `userspace_networking`
|
||||
|
||||
The add-on uses [userspace networking mode][tailscale_info_userspace_networking]
|
||||
to make your Home Assistant instance (and optionally the local subnets)
|
||||
accessible within your tailnet.
|
||||
|
||||
When not set, this option is enabled by default.
|
||||
|
||||
If you need to access other clients on your tailnet from your Home Assistant
|
||||
instance, disable userspace networking mode, which will create a `tailscale0`
|
||||
network interface on your host.
|
||||
|
||||
If you want to access other clients on your tailnet even from your local subnet,
|
||||
execute steps 2 and 3 as described on [Site-to-site
|
||||
networking][tailscale_info_site_to_site].
|
||||
|
||||
### Option: `proxy`
|
||||
|
||||
When not set, this option is enabled by default.
|
||||
|
@ -325,3 +342,5 @@ SOFTWARE.
|
|||
[tailscale_info_funnel]: https://tailscale.com/kb/1223/tailscale-funnel/
|
||||
[tailscale_info_https]: https://tailscale.com/kb/1153/enabling-https/
|
||||
[tailscale_info_key_expiry]: https://tailscale.com/kb/1028/key-expiry/
|
||||
[tailscale_info_site_to_site]: https://tailscale.com/kb/1214/site-to-site/
|
||||
[tailscale_info_userspace_networking]: https://tailscale.com/kb/1112/userspace-networking/
|
||||
|
|
|
@ -48,5 +48,5 @@ 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-3285675-blue.svg
|
||||
[release]: https://github.com/hassio-addons/addon-tailscale/tree/3285675
|
||||
[release-shield]: https://img.shields.io/badge/version-4318158-blue.svg
|
||||
[release]: https://github.com/hassio-addons/addon-tailscale/tree/4318158
|
|
@ -1,5 +1,5 @@
|
|||
name: Tailscale
|
||||
version: '3285675'
|
||||
version: '4318158'
|
||||
slug: tailscale
|
||||
description: Zero config VPN for building secure networks
|
||||
url: https://github.com/hassio-addons/addon-tailscale
|
||||
|
@ -36,4 +36,5 @@ schema:
|
|||
tags:
|
||||
- match(^tag:[a-zA-Z0-9]-?[a-zA-Z0-9]+$)?
|
||||
taildrop: bool?
|
||||
userspace_networking: bool?
|
||||
image: ghcr.io/hassio-addons/tailscale/{arch}
|
||||
|
|
|
@ -54,3 +54,11 @@ configuration:
|
|||
This option allows you to enable Taildrop, a file sharing service
|
||||
that allows you to share files with other Tailscale nodes.
|
||||
When not set, this option is enabled by default.
|
||||
userspace_networking:
|
||||
name: Userspace networking mode
|
||||
description: >-
|
||||
This option allows you to enable userspace networking mode.
|
||||
If you need to access other clients on your Tailnet from your Home
|
||||
Assistant instance, disable userspace networking mode, which will create a
|
||||
`tailscale0` network interface on your host.
|
||||
When not set, this option is enabled by default.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue