From b443505fb61875297ef4a823b3093f0e4fb594b1 Mon Sep 17 00:00:00 2001 From: Jenkins Server Date: Fri, 6 Feb 2026 13:26:06 +0100 Subject: [PATCH] Recommit for updates in build 22 --- .../confdroid_gitea_3A_3Aparams.html | 173 +++++++++++++----- 1 file changed, 123 insertions(+), 50 deletions(-) diff --git a/doc/puppet_classes/confdroid_gitea_3A_3Aparams.html b/doc/puppet_classes/confdroid_gitea_3A_3Aparams.html index 28378ac..742162b 100644 --- a/doc/puppet_classes/confdroid_gitea_3A_3Aparams.html +++ b/doc/puppet_classes/confdroid_gitea_3A_3Aparams.html @@ -99,7 +99,7 @@
-

confdroid_gitea::params.pp Module name: confdroid_gitea Author: 12ww1160 (12ww1160@confdroid.com)

+

confdroid_gitea::params.pp Module name: confdroid_gitea Author: 12ww1160 (12ww1160@confdroid.com) @param [String] ga_admin_allow_create_organization Whether to allow admin to create organizations in Gitea.

@@ -830,6 +830,73 @@ +
  • + + ga_lfs_jwt_secret + + + (String) + + + (defaults to: 'ChangeMeLFSJWTSecret') + + + — +
    +

    The JWT secret for Git L FS in Gitea.

    +
    + +
  • + +
  • + + ga_internal_token + + + (String) + + + (defaults to: 'ChangeMeInternalToken') + + + — +
    +

    The internal token for Gitea.

    +
    + +
  • + +
  • + + ga_jwt_secret + + + (String) + + + (defaults to: 'ChangeMeJWTSecret') + + + — +
    +

    The JWT secret for Gitea.

    +
    + +
  • + +
  • + + ga_admin_allow_create_organization + + + (String) + + + (defaults to: 'true') + + +
  • + @@ -841,12 +908,6 @@
     
     
    -58
    -59
    -60
    -61
    -62
    -63
     64
     65
     66
    @@ -927,61 +988,73 @@
     141
     142
     143
    -144
    +144 +145 +146 +147 +148 +149 +150 +151 +152 +153 -
    # File 'manifests/params.pp', line 58
    +        
    # File 'manifests/params.pp', line 64
     
     class confdroid_gitea::params (
     
       # main
    -  Array $ga_reqpackages                     = ['git', 'wget', 'tar'],
    -  String $ga_pkg_ensure                     = 'present',
    -  String $ga_host_fqdn                      = 'gitea.example.net',
    -  String $ga_opt_dir                        = '/opt/gitea',
    -  String $ga_dl_url                         = 'https://dl.gitea.com/gitea',
    -  String $ga_dl_version                     = '1.25.4',
    -  String $ga_user                           = 'git',
    -  String $ga_domain                         = 'localhost',
    -  String $ga_root_url                       = 'http://localhost:3000',
    -  Boolean $ga_disable_ssh                   = false,
    -  Boolean $ga_start_lfs                     = true,
    -  Boolean $ga_start_ssh                     = false,
    -  String $ga_instance_name                  = 'Your Gitea Instance',
    +  Array $ga_reqpackages                       = ['git', 'wget', 'tar'],
    +  String $ga_pkg_ensure                       = 'present',
    +  String $ga_host_fqdn                        = 'gitea.example.net',
    +  String $ga_opt_dir                          = '/opt/gitea',
    +  String $ga_dl_url                           = 'https://dl.gitea.com/gitea',
    +  String $ga_dl_version                       = '1.25.4',
    +  String $ga_user                             = 'git',
    +  String $ga_domain                           = 'localhost',
    +  String $ga_root_url                         = 'http://localhost:3000',
    +  Boolean $ga_disable_ssh                     = false,
    +  Boolean $ga_start_lfs                       = true,
    +  Boolean $ga_start_ssh                       = false,
    +  String $ga_instance_name                    = 'Your Gitea Instance',
    +  String $ga_lfs_jwt_secret                   = 'ChangeMeLFSJWTSecret',
     
       # database
    -  String $ga_db_type                        = 'postgres',
    -  String $ga_db_host                        = 'localhost',
    -  String $ga_db_port                        = '5432',
    -  String $ga_db_name                        = 'gitea',
    -  String $ga_db_user                        = 'ChangeMe',
    -  String $ga_db_password                    = 'ChangeMe',
    -  Boolean $ga_log_sql                       = false,
    -  String $ga_ssl_mode                       = 'require',
    +  String $ga_db_type                          = 'postgres',
    +  String $ga_db_host                          = 'localhost',
    +  String $ga_db_port                          = '5432',
    +  String $ga_db_name                          = 'gitea',
    +  String $ga_db_user                          = 'ChangeMe',
    +  String $ga_db_password                      = 'ChangeMe',
    +  Boolean $ga_log_sql                         = false,
    +  String $ga_ssl_mode                         = 'require',
       # logging
    -  String $ga_log_mode                       = 'file',
    -  String $ga_log_level                      = 'info',
    +  String $ga_log_mode                         = 'file',
    +  String $ga_log_level                        = 'info',
       # security
    -  Boolean $ga_install_lock                  = true,
    -  String $ga_secret_key                     = 'ChangeMe1234567890',
    -  String $ga_reverse_proxy_limit            = '1',
    -  String $ga_reverse_proxy_trusted_proxies  = '*',
    -  Boolean $ga_disable_root_check            = true,
    -  String $ga_admin_username                 = 'admin',
    -  String $ga_admin_password                 = 'ChangeMeAdmin123!',
    -  String $ga_admin_email                    = 'admin@example.com',
    +  Boolean $ga_install_lock                    = true,
    +  String $ga_secret_key                       = 'ChangeMe1234567890',
    +  String $ga_reverse_proxy_limit              = '1',
    +  String $ga_reverse_proxy_trusted_proxies    = '*',
    +  Boolean $ga_disable_root_check              = true,
    +  String $ga_admin_username                   = 'admin',
    +  String $ga_admin_password                   = 'ChangeMeAdmin123!',
    +  String $ga_admin_email                      = 'admin@example.com',
    +  String $ga_admin_allow_create_organization  = 'true',
    +  String $ga_internal_token                   = 'ChangeMeInternalToken',
    +  String $ga_jwt_secret                       = 'ChangeMeJWTSecret',
       # service
    -  Boolean $ga_disable_registration          = false,
    -  Boolean $ga_require_signin_view           = false,
    -  Boolean $ga_enable_packages               = true,
    -  Boolean $ga_enable_registry               = true,
    -  String $ga_storage_type                   = 'filesystem',
    -
    +  Boolean $ga_disable_registration            = false,
    +  Boolean $ga_require_signin_view             = false,
    +  Boolean $ga_enable_packages                 = true,
    +  Boolean $ga_enable_registry                 = true,
    +  String $ga_storage_type                     = 'filesystem',
       # firewall
    -  Boolean $ga_use_firewall                  = true,
    -  String $ga_http_port                      = '3000',
    -  String $ga_ssh_port                       = '22',
    -  String $ga_order_prefix                   = '50',
    +  Boolean $ga_use_firewall                    = true,
    +  String $ga_http_port                        = '3000',
    +  String $ga_ssh_port                         = '22',
    +  String $ga_order_prefix                     = '50',
     
     ) {
     # facts