Skip to content

Commit bfd1d9d

Browse files
authored
Merge branch 'puppetlabs:main' into mariadb_11
2 parents f71ac80 + b380c2a commit bfd1d9d

File tree

10 files changed

+138
-87
lines changed

10 files changed

+138
-87
lines changed

.github/workflows/labeller.yml

-27
This file was deleted.

CHANGELOG.md

+67-40
Large diffs are not rendered by default.

REFERENCE.md

+47-3
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656

5757
### Functions
5858

59+
* [`mysql::innobackupex_args`](#mysql--innobackupex_args): This function populates and returns the string of arguments which later gets injected in template. Arguments that return string holds is conditional and decided by the the input given to function.
5960
* [`mysql::normalise_and_deepmerge`](#mysql--normalise_and_deepmerge): Recursively merges two or more hashes together, normalises keys with differing use of dashes and underscores.
6061
* [`mysql::password`](#mysql--password): Hash a string as mysql's "PASSWORD()" function would do it
6162
* [`mysql::strip_hash`](#mysql--strip_hash): When given a hash this function strips out all blank entries.
@@ -707,7 +708,7 @@ Data type: `Optional[String[1]]`
707708

708709
The provider to use to manage the service. For Ubuntu, defaults to 'upstart'; otherwise, default is undefined.
709710

710-
Default value: `$mysql::params::server_service_provider`
711+
Default value: `undef`
711712

712713
##### <a name="-mysql--server--create_root_user"></a>`create_root_user`
713714

@@ -1197,15 +1198,15 @@ Data type: `String[1]`
11971198

11981199
The character set for the database. Must have the same value as collate to avoid corrective changes. See https://dev.mysql.com/doc/refman/8.0/en/charset-mysql.html for charset and collation pairs.
11991200

1200-
Default value: `'utf8'`
1201+
Default value: `'utf8mb3'`
12011202

12021203
##### <a name="-mysql--db--collate"></a>`collate`
12031204

12041205
Data type: `String[1]`
12051206

12061207
The collation for the database. Must have the same value as charset to avoid corrective changes. See https://dev.mysql.com/doc/refman/8.0/en/charset-mysql.html for charset and collation pairs.
12071208

1208-
Default value: `'utf8_general_ci'`
1209+
Default value: `'utf8mb3_general_ci'`
12091210

12101211
##### <a name="-mysql--db--host"></a>`host`
12111212

@@ -1606,6 +1607,49 @@ discover the appropriate provider for your platform.
16061607

16071608
## Functions
16081609

1610+
### <a name="mysql--innobackupex_args"></a>`mysql::innobackupex_args`
1611+
1612+
Type: Ruby 4.x API
1613+
1614+
This function populates and returns the string of arguments which later gets injected in template. Arguments that return string holds is conditional and decided by the the input given to function.
1615+
1616+
#### `mysql::innobackupex_args(Optional[String] $backupuser, Boolean $backupcompress, Optional[Variant[String, Sensitive[String]]] $backuppassword_unsensitive, Array[String[1]] $backupdatabases, Array[String[1]] $optional_args)`
1617+
1618+
The mysql::innobackupex_args function.
1619+
1620+
Returns: `Variant[String]` String
1621+
Generated on the basis of provided values.
1622+
1623+
##### `backupuser`
1624+
1625+
Data type: `Optional[String]`
1626+
1627+
The user to use for the backup.
1628+
1629+
##### `backupcompress`
1630+
1631+
Data type: `Boolean`
1632+
1633+
If the backup should be compressed.
1634+
1635+
##### `backuppassword_unsensitive`
1636+
1637+
Data type: `Optional[Variant[String, Sensitive[String]]]`
1638+
1639+
The password to use for the backup.
1640+
1641+
##### `backupdatabases`
1642+
1643+
Data type: `Array[String[1]]`
1644+
1645+
The databases to backup.
1646+
1647+
##### `optional_args`
1648+
1649+
Data type: `Array[String[1]]`
1650+
1651+
Additional arguments to pass to innobackupex.
1652+
16091653
### <a name="mysql--normalise_and_deepmerge"></a>`mysql::normalise_and_deepmerge`
16101654

16111655
Type: Ruby 4.x API

lib/puppet/functions/mysql/innobackupex_args.rb

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
# frozen_string_literal: true
22

3-
# @summary this function populates and returns the string of arguments which later gets injected in template.
4-
# arguments that return string holds is conditional and decided by the the input given to function.
5-
3+
# @summary
4+
# This function populates and returns the string of arguments which later gets injected in template. Arguments that return string holds is conditional and decided by the the input given to function.
5+
#
66
Puppet::Functions.create_function(:'mysql::innobackupex_args') do
7-
# @param args
8-
# String backupuser
9-
# Boolean backupcompress
10-
# String backuppassword_unsensitive
11-
# Array backupdatabases
12-
# Array optional_args
7+
# @param backupuser
8+
# The user to use for the backup.
9+
# @param backupcompress
10+
# If the backup should be compressed.
11+
# @param backuppassword_unsensitive
12+
# The password to use for the backup.
13+
# @param backupdatabases
14+
# The databases to backup.
15+
# @param optional_args
16+
# Additional arguments to pass to innobackupex.
1317
#
1418
# @return String
1519
# Generated on the basis of provided values.

lib/puppet/functions/mysql/password.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
def password(password, sensitive = false)
2323
password = password.unwrap if password.is_a?(Puppet::Pops::Types::PSensitiveType::Sensitive)
2424

25-
result_string = if %r{\*[A-F0-9]{40}$}.match?(password)
25+
result_string = if %r{^\*[A-F0-9]{40}$}.match?(password)
2626
password
2727
elsif password.empty?
2828
''

manifests/db.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
Variant[String, Sensitive[String]] $password,
5252
Optional[Array[String[1]]] $tls_options = undef,
5353
String $dbname = $name,
54-
String[1] $charset = 'utf8',
55-
String[1] $collate = 'utf8_general_ci',
54+
String[1] $charset = 'utf8mb3',
55+
String[1] $collate = 'utf8mb3_general_ci',
5656
String[1] $host = 'localhost',
5757
Variant[String[1], Array[String[1]]] $grant = 'ALL',
5858
Optional[Variant[String[1], Array[String[1]]]] $grant_options = undef,

manifests/params.pp

-1
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,6 @@
435435
'basedir' => $mysql::params::basedir,
436436
'bind-address' => '127.0.0.1',
437437
'datadir' => $mysql::params::datadir,
438-
'expire_logs_days' => '10',
439438
'key_buffer_size' => '16M',
440439
'log-error' => $mysql::params::log_error,
441440
'max_allowed_packet' => '16M',

metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-mysql",
3-
"version": "15.0.0",
3+
"version": "16.0.0",
44
"author": "puppetlabs",
55
"summary": "Installs, configures, and manages the MySQL service.",
66
"license": "Apache-2.0",

spec/acceptance/00_mysql_server_spec.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ class { '::mysql::server':
6363
end
6464

6565
it 'can be set' do
66-
apply_manifest(pp, catch_failures: true) do |r|
67-
expect(r.stderr).to be_empty
68-
end
66+
# TODO : Returning warning message while running above manifest
67+
# Warning: Facter: Container runtime, 'docker', is unsupported, setting to, 'container_other'
68+
apply_manifest(pp)
6969
end
7070
end
7171
end

spec/functions/mysql_password_spec.rb

+4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@
3636
expect(subject).to run.with_params('').and_return('')
3737
end
3838

39+
it 'converts the password when its given in caps with * sign' do
40+
expect(subject).to run.with_params('AFDJKFD1*94BDCEBE19083CE2A1F959FD02F964C7AF4CFC29').and_return('*91FF6DD4E1FC57D2EFC57F49552D0596F7D46BAF')
41+
end
42+
3943
it 'does not convert a password that is already a hash' do
4044
expect(subject).to run.with_params('*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19').and_return('*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19')
4145
end

0 commit comments

Comments
 (0)