9bdf4b1685
When a tripleo major upgrade or FFU causes an update or mariadb
to a new major version (e.g. 10.1 -> 10.3), some internal DB
tables must be upgraded (myisam tables), and sometimes some
the existing user tables may be migrated to new mariadb defaults.
Move the db-specific upgrade steps into a dedicated script and
make sure that it is called at the right time while upgrading
the undercloud and/or the overcloud.
Closes-Bug: #1913438
Change-Id: I92353622994b28c895d95bdcbe348a73b6c6bb99
(cherry picked from commit ad35169510
)
196 lines
6.8 KiB
YAML
196 lines
6.8 KiB
YAML
heat_template_version: rocky
|
|
|
|
description: >
|
|
MySQL service deployment using puppet
|
|
|
|
parameters:
|
|
#Parameters not used EndpointMap
|
|
ServiceData:
|
|
default: {}
|
|
description: Dictionary packing service data
|
|
type: json
|
|
ServiceNetMap:
|
|
default: {}
|
|
description: Mapping of service_name -> network name. Typically set
|
|
via parameter_defaults in the resource registry. This
|
|
mapping overrides those in ServiceNetMapDefaults.
|
|
type: json
|
|
DefaultPasswords:
|
|
default: {}
|
|
type: json
|
|
RoleName:
|
|
default: ''
|
|
description: Role name on which the service is applied
|
|
type: string
|
|
RoleParameters:
|
|
default: {}
|
|
description: Parameters specific to the role
|
|
type: json
|
|
EndpointMap:
|
|
default: {}
|
|
description: Mapping of service endpoint -> protocol. Typically set
|
|
via parameter_defaults in the resource registry.
|
|
type: json
|
|
MysqlMaxConnections:
|
|
description: Configures MySQL max_connections config setting
|
|
type: number
|
|
default: 4096
|
|
MysqlIncreaseFileLimit:
|
|
description: Flag to increase MySQL open-files-limit to 16384
|
|
type: boolean
|
|
default: true
|
|
MysqlRootPassword:
|
|
type: string
|
|
hidden: true
|
|
default: ''
|
|
MysqlClustercheckPassword:
|
|
type: string
|
|
hidden: true
|
|
EnableGalera:
|
|
default: true
|
|
description: Whether to use Galera instead of regular MariaDB.
|
|
type: boolean
|
|
EnableInternalTLS:
|
|
type: boolean
|
|
default: false
|
|
EnableMysqlAuthEd25519:
|
|
type: boolean
|
|
description: Whether to configure MySQL users to connect to the
|
|
server using the Ed25519-based client authentication.
|
|
default: false
|
|
MysqlIPv6:
|
|
default: false
|
|
description: Enable IPv6 in MySQL
|
|
type: boolean
|
|
CertificateKeySize:
|
|
type: string
|
|
default: '2048'
|
|
description: Specifies the private key size used when creating the
|
|
certificate.
|
|
MysqlCertificateKeySize:
|
|
type: string
|
|
default: ''
|
|
description: Override the private key size used when creating the
|
|
certificate for this service
|
|
|
|
|
|
conditions:
|
|
|
|
internal_tls_enabled: {equals: [{get_param: EnableInternalTLS}, true]}
|
|
key_size_override_unset: {equals: [{get_param: MysqlCertificateKeySize}, '']}
|
|
|
|
outputs:
|
|
container_config_scripts:
|
|
description: Shared docker config scripts
|
|
value:
|
|
mysql_upgrade_db.sh:
|
|
mode: "0755"
|
|
content: { get_file: ../../container_config_scripts/mysql_upgrade_db.sh }
|
|
role_data:
|
|
description: Service MySQL using composable services.
|
|
value:
|
|
service_name: mysql
|
|
config_settings:
|
|
map_merge:
|
|
-
|
|
# The Galera package should work in cluster and
|
|
# non-cluster modes based on the config file.
|
|
# We set the package name here explicitly so
|
|
# that it matches what we pre-install
|
|
# in tripleo-puppet-elements.
|
|
mysql::server::package_name: 'mariadb-galera-server'
|
|
mysql::server::manage_config_file: true
|
|
mysql_ipv6: {get_param: MysqlIPv6}
|
|
tripleo::mysql::firewall_rules:
|
|
'104 mysql galera':
|
|
dport:
|
|
- 873
|
|
- 3306
|
|
- 4444
|
|
- 4567
|
|
- 4568
|
|
- 9200
|
|
mysql_max_connections: {get_param: MysqlMaxConnections}
|
|
mysql::server::root_password:
|
|
yaql:
|
|
expression: $.data.passwords.where($ != '').first()
|
|
data:
|
|
passwords:
|
|
- {get_param: MysqlRootPassword}
|
|
- {get_param: [DefaultPasswords, mysql_root_password]}
|
|
mysql_clustercheck_password: {get_param: MysqlClustercheckPassword}
|
|
enable_galera: {get_param: EnableGalera}
|
|
mysql_auth_ed25519: {get_param: EnableMysqlAuthEd25519}
|
|
# NOTE: bind IP is found in hiera replacing the network name with the
|
|
# local node IP for the given network; replacement examples
|
|
# (eg. for internal_api):
|
|
# internal_api -> IP
|
|
# internal_api_uri -> [IP]
|
|
# internal_api_subnet - > IP/CIDR
|
|
mysql_bind_host:
|
|
str_replace:
|
|
template:
|
|
"%{hiera('$NETWORK')}"
|
|
params:
|
|
$NETWORK: {get_param: [ServiceNetMap, MysqlNetwork]}
|
|
tripleo::profile::base::database::mysql::bind_address:
|
|
str_replace:
|
|
template:
|
|
"%{hiera('fqdn_$NETWORK')}"
|
|
params:
|
|
$NETWORK: {get_param: [ServiceNetMap, MysqlNetwork]}
|
|
tripleo::profile::base::database::mysql::client_bind_address:
|
|
str_replace:
|
|
template:
|
|
"%{hiera('$NETWORK')}"
|
|
params:
|
|
$NETWORK: {get_param: [ServiceNetMap, MysqlNetwork]}
|
|
tripleo::profile::base::database::mysql::generate_dropin_file_limit:
|
|
{get_param: MysqlIncreaseFileLimit}
|
|
- if:
|
|
- internal_tls_enabled
|
|
-
|
|
generate_service_certificates: true
|
|
tripleo::profile::base::database::mysql::certificate_specs:
|
|
service_certificate: '/etc/pki/tls/certs/mysql.crt'
|
|
service_key: '/etc/pki/tls/private/mysql.key'
|
|
hostname:
|
|
str_replace:
|
|
template: "%{hiera('fqdn_NETWORK')}"
|
|
params:
|
|
NETWORK: {get_param: [ServiceNetMap, MysqlNetwork]}
|
|
dnsnames:
|
|
- str_replace:
|
|
template: "%{hiera('cloud_name_NETWORK')}"
|
|
params:
|
|
NETWORK: {get_param: [ServiceNetMap, MysqlNetwork]}
|
|
- str_replace:
|
|
template:
|
|
"%{hiera('fqdn_NETWORK')}"
|
|
params:
|
|
NETWORK: {get_param: [ServiceNetMap, MysqlNetwork]}
|
|
principal:
|
|
str_replace:
|
|
template: "mysql/%{hiera('fqdn_NETWORK')}"
|
|
params:
|
|
NETWORK: {get_param: [ServiceNetMap, MysqlNetwork]}
|
|
key_size:
|
|
if:
|
|
- key_size_override_unset
|
|
- {get_param: CertificateKeySize}
|
|
- {get_param: MysqlCertificateKeySize}
|
|
- {}
|
|
step_config: |
|
|
include ::tripleo::profile::base::database::mysql
|
|
metadata_settings:
|
|
if:
|
|
- internal_tls_enabled
|
|
-
|
|
- service: mysql
|
|
network: {get_param: [ServiceNetMap, MysqlNetwork]}
|
|
type: vip
|
|
- service: mysql
|
|
network: {get_param: [ServiceNetMap, MysqlNetwork]}
|
|
type: node
|
|
- null
|