infrastructure/roles/teamspeak/defaults/main.yml
2022-06-22 22:06:03 +00:00

50 lines
1.9 KiB
YAML

---
# Default variables for the teamspeak role
# Infrastructure
# Ansible instructions to deploy the infrastructure
# Copyright (C) 2020 Saibotk
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# The install locations
teamspeak_install_location: /srv/teamspeak
teamspeak_data_location: "{{ teamspeak_install_location }}/data"
# The docker image and version to use
teamspeak_baseimage: docker.io/library/teamspeak
# renovate: depName=docker.io/library/teamspeak
teamspeak_version: 3.13.7
teamspeak_image_version: "{{ teamspeak_version }}"
# The SELinux level that should be applied to the container/data folder (default is omit and it will be unset)
teamspeak_selinux_level: "{{ omit }}"
# The teamspeak ports that are exposed on the host (you still need to open the ports!)
teamspeak_voice_port: 9987
teamspeak_file_port: 10011
teamspeak_other_port: 30033
# Should a ts3server:// style redirect be enabled on the domain?
teamspeak_traefik_redirect_enabled: false
# The certresolver for traefik to use on this domain (only needed when the redirect is enabled)
teamspeak_traefik_certresolver: letsencrypt_http
# The domain under which the redirect should be applied (only needed when the redirect is enabled)
teamspeak_traefik_domain: ts.example.com
# IPv6 ULA config for the bridge network used by docker-ipv6-nat
teamspeak_ipv6:
enabled: false
subnet: "fd9e:21a7:a92c:2323::/64"