1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
Description: Support gnocchi_metricd.conf file.
Author: Théo Gindre <theo.gindre@infomaniak.com>
Forwarded: no
Last-Update: 2025-03-17
Index: puppet-module-gnocchi/lib/puppet/provider/gnocchi_metricd_config/openstackconfig.rb
===================================================================
--- /dev/null
+++ puppet-module-gnocchi/lib/puppet/provider/gnocchi_metricd_config/openstackconfig.rb
@@ -0,0 +1,10 @@
+Puppet::Type.type(:gnocchi_metricd_config).provide(
+ :openstackconfig,
+ :parent => Puppet::Type.type(:openstack_config).provider(:ruby)
+) do
+
+ def self.file_path
+ '/etc/gnocchi/gnocchi-metricd.conf'
+ end
+
+end
Index: puppet-module-gnocchi/lib/puppet/type/gnocchi_metricd_config.rb
===================================================================
--- /dev/null
+++ puppet-module-gnocchi/lib/puppet/type/gnocchi_metricd_config.rb
@@ -0,0 +1,61 @@
+Puppet::Type.newtype(:gnocchi_metricd_config) do
+
+ ensurable
+
+ newparam(:name, :namevar => true) do
+ desc 'Section/setting name to manage from gnocchi-metricd.conf'
+ newvalues(/\S+\/\S+/)
+ end
+
+ newproperty(:value, :array_matching => :all) do
+ desc 'The value of the setting to be defined.'
+ def insync?(is)
+ return true if @should.empty?
+ return false unless is.is_a? Array
+ return false unless is.length == @should.length
+ return (
+ is & @should == is or
+ is & @should.map(&:to_s) == is
+ )
+ end
+ munge do |value|
+ value = value.to_s.strip
+ value.capitalize! if value =~ /^(true|false)$/i
+ value
+ end
+
+ def is_to_s( currentvalue )
+ if resource.secret?
+ return '[old secret redacted]'
+ else
+ return currentvalue
+ end
+ end
+
+ def should_to_s( newvalue )
+ if resource.secret?
+ return '[new secret redacted]'
+ else
+ return newvalue
+ end
+ end
+ end
+
+ newparam(:secret, :boolean => true) do
+ desc 'Whether to hide the value from Puppet logs. Defaults to `false`.'
+
+ newvalues(:true, :false)
+
+ defaultto false
+ end
+
+ newparam(:ensure_absent_val) do
+ desc 'A value that is specified as the value property will behave as if ensure => absent was specified'
+ defaultto('<SERVICE DEFAULT>')
+ end
+
+ autorequire(:anchor) do
+ ['gnocchi::install::end']
+ end
+
+end
--- /dev/null
+++ puppet-module-gnocchi-25.0.0/lib/puppet/provider/gnocchi_api_config/openstackconfig.rb
@@ -0,0 +1,10 @@
+Puppet::Type.type(:gnocchi_api_config).provide(
+ :openstackconfig,
+ :parent => Puppet::Type.type(:openstack_config).provider(:ruby)
+) do
+
+ def self.file_path
+ '/etc/gnocchi/gnocchi-api.conf'
+ end
+
+end
--- /dev/null
+++ puppet-module-gnocchi-25.0.0/lib/puppet/type/gnocchi_api_config.rb
@@ -0,0 +1,61 @@
+Puppet::Type.newtype(:gnocchi_api_config) do
+
+ ensurable
+
+ newparam(:name, :namevar => true) do
+ desc 'Section/setting name to manage from gnocchi-api.conf'
+ newvalues(/\S+\/\S+/)
+ end
+
+ newproperty(:value, :array_matching => :all) do
+ desc 'The value of the setting to be defined.'
+ def insync?(is)
+ return true if @should.empty?
+ return false unless is.is_a? Array
+ return false unless is.length == @should.length
+ return (
+ is & @should == is or
+ is & @should.map(&:to_s) == is
+ )
+ end
+ munge do |value|
+ value = value.to_s.strip
+ value.capitalize! if value =~ /^(true|false)$/i
+ value
+ end
+
+ def is_to_s( currentvalue )
+ if resource.secret?
+ return '[old secret redacted]'
+ else
+ return currentvalue
+ end
+ end
+
+ def should_to_s( newvalue )
+ if resource.secret?
+ return '[new secret redacted]'
+ else
+ return newvalue
+ end
+ end
+ end
+
+ newparam(:secret, :boolean => true) do
+ desc 'Whether to hide the value from Puppet logs. Defaults to `false`.'
+
+ newvalues(:true, :false)
+
+ defaultto false
+ end
+
+ newparam(:ensure_absent_val) do
+ desc 'A value that is specified as the value property will behave as if ensure => absent was specified'
+ defaultto('<SERVICE DEFAULT>')
+ end
+
+ autorequire(:anchor) do
+ ['gnocchi::install::end']
+ end
+
+end
|