From cdace949c6292c6545c23fe3f28583e721bd6b35 Mon Sep 17 00:00:00 2001 From: Jenkins Server Date: Wed, 3 Dec 2025 15:31:31 +0100 Subject: [PATCH] Recommit for updates in build 42 --- .../prometheus_cd_3A_3Aparams.html | 102 ++++++++++++++++-- 1 file changed, 95 insertions(+), 7 deletions(-) diff --git a/doc/puppet_classes/prometheus_cd_3A_3Aparams.html b/doc/puppet_classes/prometheus_cd_3A_3Aparams.html index ea4bd10..f2b5053 100644 --- a/doc/puppet_classes/prometheus_cd_3A_3Aparams.html +++ b/doc/puppet_classes/prometheus_cd_3A_3Aparams.html @@ -502,6 +502,78 @@ —

reduce parallel WAL replay workers

+
+ + + +
  • + + ps_write_external + + + (Boolean) + + + (defaults to: false) + + + — +
    +

    whether to allow remote postgres

    +
    + +
  • + +
  • + + ps_auth_ext_user + + + (String) + + + (defaults to: 'changeme') + + + — +
    +

    user for writing to extern instance

    +
    + +
  • + +
  • + + ps_auth_ext_pass + + + (String) + + + (defaults to: 'changeme') + + + — +
    +

    password for writing to extern instance

    +
    + +
  • + +
  • + + ps_external_url + + + (String) + + + (defaults to: 'http://change.local') + + + — +
    +

    the full url for the remote write point

  • @@ -517,10 +589,6 @@
     
     
    -28
    -29
    -30
    -31
     32
     33
     34
    @@ -575,10 +643,22 @@
     83
     84
     85
    -86
    +86 +87 +88 +89 +90 +91 +92 +93 +94 +95 +96 +97 +98 -
    # File 'manifests/params.pp', line 28
    +        
    # File 'manifests/params.pp', line 32
     
     class prometheus_cd::params (
     
    @@ -597,11 +677,15 @@ class prometheus_cd::params (
       String $ps_fw_prefix          = '50',
       String $ps_main_port          = '9090',
     
    -  # auth
    +  # auth prometheus
       String $ps_auth_user          = 'changeme',
       String $ps_auth_pass          = 'changeme',
       String $ps_web_pass           = 'changeme',
     
    +  # auth remote
    +  String $ps_auth_ext_user      = 'changeme',
    +  String $ps_auth_ext_pass      = 'changeme',
    +
       # storage
       String $ps_retention_time     = '15d',
       String $ps_retention_size     = '20GB',
    @@ -616,6 +700,10 @@ class prometheus_cd::params (
       String $ps_oom_score          = '500',
       String $ps_max_procs          = '1',
     
    +  # remote write external
    +  Boolean $ps_write_external    = false,
    +  String $ps_external_url       = 'http://change.local',
    +
     ) {
       # defaults
       $fqdn                   = $facts['networking']['fqdn']