infrastructure/roles/penpot/defaults/main.yml

68 lines
2.1 KiB
YAML

---
# Default variables for the penpot role
# Infrastructure
# Ansible instructions to deploy the infrastructure
# Copyright (C) 2021 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
penpot_install_location: /srv/penpot
penpot_database_location: "{{ penpot_install_location }}/database"
penpot_redis_location: "{{ penpot_install_location }}/redis"
penpot_asset_location: "{{ penpot_install_location }}/assets"
# The docker image/version
# renovate: depName=docker.io/penpotapp/frontend
penpot_frontend_image_version: "1.19.3"
# renovate: depName=docker.io/penpotapp/backend
penpot_backend_image_version: "1.19.3"
# renovate: depName=docker.io/penpotapp/exporter
penpot_exporter_image_version: "1.19.3"
# The redis/database image versions/tags
# renovate: depName=docker.io/library/redis
penpot_redis_image_version: "7"
# renovate: depName=docker.io/library/postgres
penpot_database_image_version: "13"
# The domain for traefik to serve this on
penpot_domain: design.example.com
# The certresolver for traefik to use on this domain
penpot_traefik_certresolver: letsencrypt_http
# The database credentials
penpot_database_password: "{{ lookup('passwordstore', penpot_domain + '/db create=true length=42') }}"
# Should the registration be enabled?
penpot_registration_enabled: false
# Gitlab OAuth settings
penpot_gitlab:
base_uri: "https://gitlab.com"
client_id: ""
client_secret: ""
# SMTP settings for the application
penpot_smtp:
enabled: false
host: ""
port: ""
username: ""
password: ""
tls: true
ssl: false
from: "no-reply@example.com"
reply_to: "no-reply@example.com"