Update to 2023-08-17 16:00

This commit is contained in:
Daniel Berteaud
2023-08-17 16:00:21 +02:00
parent 846c668216
commit cc7c11ba8a
20 changed files with 611 additions and 35 deletions

View File

@@ -1,7 +1,7 @@
---
# Penpot version to deploy
penpot_version: 1.18.4
penpot_version: 1.19.0
# SHould ansible manage upgrades. If False, only the initial install will be done
penpot_manage_upgrade: True
@@ -10,7 +10,7 @@ penpot_root_dir: /opt/penpot
# URL of the archive
penpot_archive_url: https://github.com/penpot/penpot/archive/refs/tags/{{ penpot_version }}.tar.gz
# Expected sha256 of the archive
penpot_archive_sha256: b90317f982c149a7b3eed30bf9b87940c0d0c813901c21358929b24288c07e99
penpot_archive_sha256: 3677ea3ea4073e0ca6e99090f660400b005b0308bd840d4965b045d76a6a71da
# User under which penpot will run. Will be created
penpot_user: penpot
@@ -52,7 +52,7 @@ penpot_oidc_token_url: "{{ penpot_oidc_base_url }}/token"
penpot_oidc_client_id: penpot
# The oidc secret must be set
# penpot_oidc_client_secret: S3cr3t.
penpot_oidc_scope: openid email profile
penpot_oidc_scopes: openid email profile
# LDAP auth
penpot_ldap_auth: "{{ (ldap_auth | default(False) or ad_auth | default(False)) | ternary(True, False) }}"

View File

@@ -53,7 +53,7 @@ PENPOT_OIDC_BASE_URI={{ penpot_oidc_base_url }}
PENPOT_OIDC_USER_URI={{ penpot_oidc_user_url }}
PENPOT_OIDC_AUTH_URI={{ penpot_oidc_auth_url }}
PENPOT_OIDC_TOKEN_URI={{ penpot_oidc_token_url }}
PENPOT_OIDC_SCOPE="{{ penpot_oidc_scope }}"
PENPOT_OIDC_SCOPES="{{ penpot_oidc_scopes }}"
PENPOT_OIDC_CLIENT_ID={{ penpot_oidc_client_id }}
PENPOT_OIDC_CLIENT_SECRET={{ penpot_oidc_client_secret }}
{% endif %}