Mariadb

There are various customizations you can do to tailor the deployment of OpenStack Mariadb. You can find those below.

General Parameters

  • conf.backup.base_path

    • Type: string

    • Description:

    • “/var/backup”

  • conf.backup.days_to_keep

    • Type: int

    • Description:

    • 3

  • conf.backup.enabled

    • Type: bool

    • Description:

    • false

  • conf.backup.mysqldump_options

    • Type: string

    • Description:

    • --single-transaction --quick --add-drop-database --add-drop-table --add-locks --databases
      
  • conf.backup.remote_backup.container_name

    • Type: string

    • Description:

    • “mariadb”

  • conf.backup.remote_backup.days_to_keep

    • Type: int

    • Description:

    • 14

  • conf.backup.remote_backup.delay_range.max

    • Type: int

    • Description:

    • 60

  • conf.backup.remote_backup.delay_range.min

    • Type: int

    • Description:

    • 30

  • conf.backup.remote_backup.enabled

    • Type: bool

    • Description:

    • false

  • conf.backup.remote_backup.number_of_retries

    • Type: int

    • Description:

    • 5

  • conf.backup.remote_backup.storage_policy

    • Type: string

    • Description:

    • “default-placement”

  • conf.backup.remote_backup.throttle_backups.container_name

    • Type: string

    • Description:

    • “throttle-backups-manager”

  • conf.backup.remote_backup.throttle_backups.enabled

    • Type: bool

    • Description:

    • false

  • conf.backup.remote_backup.throttle_backups.lock_expire_after

    • Type: int

    • Description:

    • 7200

  • conf.backup.remote_backup.throttle_backups.retry_after

    • Type: int

    • Description:

    • 3600

  • conf.backup.remote_backup.throttle_backups.sessions_limit

    • Type: int

    • Description:

    • 480

  • conf.backup.validateData.ageOffset

    • Type: int

    • Description:

    • 120

  • conf.database.00_base

    • Type: string

    • Description:

    • [mysqld]
      # Charset
      character_set_server=utf8
      collation_server=utf8_general_ci
      skip-character-set-client-handshake
      
      # Logging
      slow_query_log=off
      slow_query_log_file=/var/log/mysql/mariadb-slow.log
      log_warnings=2
      
      # General logging has huge performance penalty therefore is disabled by default
      general_log=off
      general_log_file=/var/log/mysql/mariadb-error.log
      
      long_query_time=3
      log_queries_not_using_indexes=on
      
      # Networking
      bind_address=0.0.0.0
      port={{ tuple \"oslo_db\" \"direct\" \"mysql\" . | include \"helm-toolkit.endpoints.endpoint_port_lookup\" }}
      
      # When a client connects, the server will perform hostname resolution,
      # and when DNS is slow, establishing the connection will become slow as well.
      # It is therefore recommended to start the server with skip-name-resolve to
      # disable all DNS lookups. The only limitation is that the GRANT statements
      # must then use IP addresses only.
      skip_name_resolve
      
      # Tuning
      user=mysql
      max_allowed_packet=256M
      open_files_limit=10240
      max_connections=8192
      max-connect-errors=1000000
      
      # General security settings
      # Reference: https://dev.mysql.com/doc/mysql-security-excerpt/8.0/en/general-security-issues.html
      # secure_file_priv is set to '/home' because it is read-only, which will
      # disable this feature completely.
      secure_file_priv=/home
      local_infile=0
      symbolic_links=0
      sql_mode=\"STRICT_ALL_TABLES,STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION\"
      
      
      ## Generally, it is unwise to set the query cache to be larger than 64-128M
      ## as the costs associated with maintaining the cache outweigh the performance
      ## gains.
      ## The query cache is a well known bottleneck that can be seen even when
      ## concurrency is moderate. The best option is to disable it from day 1
      ## by setting query_cache_size=0 (now the default on MySQL 5.6)
      ## and to use other ways to speed up read queries: good indexing, adding
      ## replicas to spread the read load or using an external cache.
      query_cache_size=0
      query_cache_type=0
      
      sync_binlog=0
      thread_cache_size=16
      table_open_cache=2048
      table_definition_cache=1024
      
      #
      # InnoDB
      #
      # The buffer pool is where data and indexes are cached: having it as large as possible
      # will ensure you use memory and not disks for most read operations.
      # Typical values are 50..75% of available RAM.
      # TODO(tomasz.paszkowski): This needs to by dynamic based on available RAM.
      innodb_buffer_pool_size=1024M
      innodb_doublewrite=0
      innodb_file_format=Barracuda
      innodb_file_per_table=1
      innodb_flush_method=O_DIRECT
      innodb_io_capacity=500
      innodb_locks_unsafe_for_binlog=1
      innodb_log_file_size=128M
      innodb_old_blocks_time=1000
      innodb_read_io_threads=8
      innodb_write_io_threads=8
      
      # Clustering
      binlog_format=ROW
      default-storage-engine=InnoDB
      innodb_autoinc_lock_mode=2
      innodb_flush_log_at_trx_commit=2
      wsrep_cluster_name={{ tuple \"oslo_db\" \"direct\" . | include \"helm-toolkit.endpoints.hostname_namespaced_endpoint_lookup\" | replace \".\" \"_\" }}
      wsrep_on=1
      wsrep_provider=/usr/lib/galera/libgalera_smm.so
      wsrep_provider_options=\"evs.suspect_timeout=PT30S; gmcast.peer_timeout=PT15S; gmcast.listen_addr=tcp://0.0.0.0:{{ tuple \"oslo_db\" \"direct\" \"wsrep\" . | include \"helm-toolkit.endpoints.endpoint_port_lookup\" }}\"
      wsrep_slave_threads=12
      wsrep_sst_auth={{ .Values.endpoints.oslo_db.auth.sst.username }}:{{ .Values.endpoints.oslo_db.auth.sst.password }}
      wsrep_sst_method=mariabackup
      
      {{ if .Values.manifests.certificates }}
      # TLS
      ssl_ca=/etc/mysql/certs/ca.crt
      ssl_key=/etc/mysql/certs/tls.key
      ssl_cert=/etc/mysql/certs/tls.crt
      # tls_version = TLSv1.2,TLSv1.3
      {{ end }}
      
      
      [mysqldump]
      max-allowed-packet=16M
      
      [client]
      default_character_set=utf8
      protocol=tcp
      port={{ tuple \"oslo_db\" \"direct\" \"mysql\" . | include \"helm-toolkit.endpoints.endpoint_port_lookup\" }}
      {{ if .Values.manifests.certificates }}
      # TLS
      ssl_ca=/etc/mysql/certs/ca.crt
      ssl_key=/etc/mysql/certs/tls.key
      ssl_cert=/etc/mysql/certs/tls.crt
      # tls_version = TLSv1.2,TLSv1.3
      ssl-verify-server-cert
      {{ end }}
      
  • conf.database.99_force

    • Type: string

    • Description:

    • [mysqld]
      datadir=/var/lib/mysql
      tmpdir=/tmp
      
  • conf.database.config_override

    • Type: string

    • Description:

    • nil

  • conf.database.my

    • Type: string

    • Description:

    • [mysqld]
      datadir=/var/lib/mysql
      basedir=/usr
      ignore-db-dirs=lost+found
      
      [client-server]
      !includedir /etc/mysql/conf.d/
      
  • conf.database.mysql_histfile

    • Type: string

    • Description:

    • “/dev/null”

  • conf.galera.cluster_leader_ttl

    • Type: int

    • Description:

    • 60

  • conf.mariadb_server.setup_wait.duration

    • Type: int

    • Description:

    • 5

  • conf.mariadb_server.setup_wait.iteration

    • Type: int

    • Description:

    • 30

  • conf.tests.endpoint

    • Type: string

    • Description:

    • “internal”

  • conf.tests.params[0]

    • Type: string

    • Description:

    • “–auto-generate-sql”

  • conf.tests.params[1]

    • Type: string

    • Description:

    • “–concurrency=100”

  • conf.tests.params[2]

    • Type: string

    • Description:

    • “–number-of-queries=1000”

  • conf.tests.params[3]

    • Type: string

    • Description:

    • “–number-char-cols=1”

  • conf.tests.params[4]

    • Type: string

    • Description:

    • “–number-int-cols=1”

  • dependencies.dynamic.common.local_image_registry.jobs[0]

    • Type: string

    • Description:

    • “mariadb-image-repo-sync”

  • dependencies.dynamic.common.local_image_registry.services[0].endpoint

    • Type: string

    • Description:

    • “node”

  • dependencies.dynamic.common.local_image_registry.services[0].service

    • Type: string

    • Description:

    • “local_image_registry”

  • dependencies.static.cluster_wait.services[0].endpoint

    • Type: string

    • Description:

    • “internal”

  • dependencies.static.cluster_wait.services[0].service

    • Type: string

    • Description:

    • “oslo_db”

  • dependencies.static.controller.services

    • Type: string

    • Description:

    • nil

  • dependencies.static.image_repo_sync.services[0].endpoint

    • Type: string

    • Description:

    • “internal”

  • dependencies.static.image_repo_sync.services[0].service

    • Type: string

    • Description:

    • “local_image_registry”

  • dependencies.static.mariadb_backup.jobs[0]

    • Type: string

    • Description:

    • “mariadb-ks-user”

  • dependencies.static.mariadb_backup.services[0].endpoint

    • Type: string

    • Description:

    • “internal”

  • dependencies.static.mariadb_backup.services[0].service

    • Type: string

    • Description:

    • “oslo_db”

  • dependencies.static.prometheus_create_mysql_user.services[0].endpoint

    • Type: string

    • Description:

    • “internal”

  • dependencies.static.prometheus_create_mysql_user.services[0].service

    • Type: string

    • Description:

    • “oslo_db”

  • dependencies.static.tests.services[0].endpoint

    • Type: string

    • Description:

    • “internal”

  • dependencies.static.tests.services[0].service

    • Type: string

    • Description:

    • “oslo_db”

  • endpoints.cluster_domain_suffix

    • Type: string

    • Description:

    • “cluster.local”

  • endpoints.identity.auth.admin.auth_url

    • Type: string

    • Description:

    • nil

  • endpoints.identity.auth.admin.password

    • Type: string

    • Description:

    • “password”

  • endpoints.identity.auth.admin.project_domain_name

    • Type: string

    • Description:

    • “default”

  • endpoints.identity.auth.admin.project_name

    • Type: string

    • Description:

    • “admin”

  • endpoints.identity.auth.admin.region_name

    • Type: string

    • Description:

    • “RegionOne”

  • endpoints.identity.auth.admin.user_domain_name

    • Type: string

    • Description:

    • “default”

  • endpoints.identity.auth.admin.username

    • Type: string

    • Description:

    • “admin”

  • endpoints.identity.auth.mariadb.auth_url

    • Type: string

    • Description:

    • nil

  • endpoints.identity.auth.mariadb.password

    • Type: string

    • Description:

    • “password”

  • endpoints.identity.auth.mariadb.project_domain_name

    • Type: string

    • Description:

    • “service”

  • endpoints.identity.auth.mariadb.project_name

    • Type: string

    • Description:

    • “service”

  • endpoints.identity.auth.mariadb.region_name

    • Type: string

    • Description:

    • “RegionOne”

  • endpoints.identity.auth.mariadb.role

    • Type: string

    • Description:

    • “admin”

  • endpoints.identity.auth.mariadb.user_domain_name

    • Type: string

    • Description:

    • “service”

  • endpoints.identity.auth.mariadb.username

    • Type: string

    • Description:

    • “mariadb-backup-user”

  • endpoints.identity.host_fqdn_override.default

    • Type: string

    • Description:

    • nil

  • endpoints.identity.hosts.default

    • Type: string

    • Description:

    • “keystone”

  • endpoints.identity.hosts.internal

    • Type: string

    • Description:

    • “keystone-api”

  • endpoints.identity.name

    • Type: string

    • Description:

    • “backup-storage-auth”

  • endpoints.identity.namespace

    • Type: string

    • Description:

    • “openstack”

  • endpoints.identity.path.default

    • Type: string

    • Description:

    • “/v3”

  • endpoints.identity.port.api.default

    • Type: int

    • Description:

    • 80

  • endpoints.identity.port.api.internal

    • Type: int

    • Description:

    • 5000

  • endpoints.identity.scheme.default

    • Type: string

    • Description:

    • “http”

  • endpoints.kube_dns.host_fqdn_override.default

    • Type: string

    • Description:

    • nil

  • endpoints.kube_dns.hosts.default

    • Type: string

    • Description:

    • “kube-dns”

  • endpoints.kube_dns.name

    • Type: string

    • Description:

    • “kubernetes-dns”

  • endpoints.kube_dns.namespace

    • Type: string

    • Description:

    • “kube-system”

  • endpoints.kube_dns.path.default

    • Type: string

    • Description:

    • nil

  • endpoints.kube_dns.port.dns.default

    • Type: int

    • Description:

    • 53

  • endpoints.kube_dns.port.dns.protocol

    • Type: string

    • Description:

    • “UDP”

  • endpoints.kube_dns.port.dns_tcp.default

    • Type: int

    • Description:

    • 53

  • endpoints.kube_dns.scheme

    • Type: string

    • Description:

    • “http”

  • endpoints.local_image_registry.host_fqdn_override.default

    • Type: string

    • Description:

    • nil

  • endpoints.local_image_registry.hosts.default

    • Type: string

    • Description:

    • “localhost”

  • endpoints.local_image_registry.hosts.internal

    • Type: string

    • Description:

    • “docker-registry”

  • endpoints.local_image_registry.hosts.node

    • Type: string

    • Description:

    • “localhost”

  • endpoints.local_image_registry.name

    • Type: string

    • Description:

    • “docker-registry”

  • endpoints.local_image_registry.namespace

    • Type: string

    • Description:

    • “docker-registry”

  • endpoints.local_image_registry.port.registry.node

    • Type: int

    • Description:

    • 5000

  • endpoints.monitoring.host_fqdn_override.default

    • Type: string

    • Description:

    • nil

  • endpoints.monitoring.hosts.default

    • Type: string

    • Description:

    • “prom-metrics”

  • endpoints.monitoring.hosts.public

    • Type: string

    • Description:

    • “prometheus”

  • endpoints.monitoring.name

    • Type: string

    • Description:

    • “prometheus”

  • endpoints.monitoring.namespace

    • Type: string

    • Description:

    • nil

  • endpoints.monitoring.path.default

    • Type: string

    • Description:

    • nil

  • endpoints.monitoring.port.api.default

    • Type: int

    • Description:

    • 9090

  • endpoints.monitoring.port.api.public

    • Type: int

    • Description:

    • 80

  • endpoints.monitoring.scheme.default

    • Type: string

    • Description:

    • “http”

  • endpoints.oci_image_registry.auth.enabled

    • Type: bool

    • Description:

    • false

  • endpoints.oci_image_registry.auth.mariadb.password

    • Type: string

    • Description:

    • “password”

  • endpoints.oci_image_registry.auth.mariadb.username

    • Type: string

    • Description:

    • “mariadb”

  • endpoints.oci_image_registry.host_fqdn_override.default

    • Type: string

    • Description:

    • nil

  • endpoints.oci_image_registry.hosts.default

    • Type: string

    • Description:

    • “localhost”

  • endpoints.oci_image_registry.name

    • Type: string

    • Description:

    • “oci-image-registry”

  • endpoints.oci_image_registry.namespace

    • Type: string

    • Description:

    • “oci-image-registry”

  • endpoints.oci_image_registry.port.registry.default

    • Type: string

    • Description:

    • nil

  • endpoints.oslo_db.auth.admin.password

    • Type: string

    • Description:

    • “password”

  • endpoints.oslo_db.auth.admin.username

    • Type: string

    • Description:

    • “root”

  • endpoints.oslo_db.auth.audit.password

    • Type: string

    • Description:

    • “password”

  • endpoints.oslo_db.auth.audit.username

    • Type: string

    • Description:

    • “audit”

  • endpoints.oslo_db.auth.exporter.password

    • Type: string

    • Description:

    • “password”

  • endpoints.oslo_db.auth.exporter.username

    • Type: string

    • Description:

    • “exporter”

  • endpoints.oslo_db.auth.sst.password

    • Type: string

    • Description:

    • “password”

  • endpoints.oslo_db.auth.sst.username

    • Type: string

    • Description:

    • “sst”

  • endpoints.oslo_db.host_fqdn_override.default

    • Type: string

    • Description:

    • nil

  • endpoints.oslo_db.hosts.default

    • Type: string

    • Description:

    • “mariadb”

  • endpoints.oslo_db.hosts.direct

    • Type: string

    • Description:

    • “mariadb-server”

  • endpoints.oslo_db.hosts.discovery

    • Type: string

    • Description:

    • “mariadb-discovery”

  • endpoints.oslo_db.namespace

    • Type: string

    • Description:

    • nil

  • endpoints.oslo_db.path

    • Type: string

    • Description:

    • nil

  • endpoints.oslo_db.port.ist.default

    • Type: int

    • Description:

    • 4568

  • endpoints.oslo_db.port.mysql.default

    • Type: int

    • Description:

    • 3306

  • endpoints.oslo_db.port.sst.default

    • Type: int

    • Description:

    • 4444

  • endpoints.oslo_db.port.wsrep.default

    • Type: int

    • Description:

    • 4567

  • endpoints.oslo_db.scheme

    • Type: string

    • Description:

    • “mysql+pymysql”

  • endpoints.prometheus_mysql_exporter.host_fqdn_override.default

    • Type: string

    • Description:

    • nil

  • endpoints.prometheus_mysql_exporter.hosts.default

    • Type: string

    • Description:

    • “mysql-exporter”

  • endpoints.prometheus_mysql_exporter.namespace

    • Type: string

    • Description:

    • nil

  • endpoints.prometheus_mysql_exporter.path.default

    • Type: string

    • Description:

    • “/metrics”

  • endpoints.prometheus_mysql_exporter.port.metrics.default

    • Type: int

    • Description:

    • 9104

  • endpoints.prometheus_mysql_exporter.scheme.default

    • Type: string

    • Description:

    • “http”

  • helm3_hook

    • Type: bool

    • Description:

    • true

  • images.local_registry.active

    • Type: bool

    • Description:

    • false

  • images.local_registry.exclude[0]

    • Type: string

    • Description:

    • “dep_check”

  • images.local_registry.exclude[1]

    • Type: string

    • Description:

    • “image_repo_sync”

  • images.pull_policy

    • Type: string

    • Description:

    • “IfNotPresent”

  • images.tags.dep_check

    • Type: string

    • Description:

    • “quay.io/airshipit/kubernetes-entrypoint:latest-ubuntu_jammy”

  • images.tags.image_repo_sync

    • Type: string

    • Description:

    • “docker.io/library/docker:17.07.0”

  • images.tags.ks_user

    • Type: string

    • Description:

    • “docker.io/openstackhelm/heat:wallaby-ubuntu_focal”

  • images.tags.mariadb

    • Type: string

    • Description:

    • “docker.io/openstackhelm/mariadb:latest-ubuntu_jammy”

  • images.tags.mariadb_backup

    • Type: string

    • Description:

    • “quay.io/airshipit/porthole-mysqlclient-utility:latest-ubuntu_jammy”

  • images.tags.mariadb_controller

    • Type: string

    • Description:

    • “docker.io/openstackhelm/mariadb:latest-ubuntu_jammy”

  • images.tags.prometheus_create_mysql_user

    • Type: string

    • Description:

    • “docker.io/library/mariadb:10.5.9-focal”

  • images.tags.prometheus_mysql_exporter

    • Type: string

    • Description:

    • “docker.io/prom/mysqld-exporter:v0.12.1”

  • images.tags.prometheus_mysql_exporter_helm_tests

    • Type: string

    • Description:

    • “docker.io/openstackhelm/heat:wallaby-ubuntu_focal”

  • images.tags.scripted_test

    • Type: string

    • Description:

    • “docker.io/openstackhelm/mariadb:ubuntu_focal-20210415”

  • jobs.cluster_wait.clusterCheckRetries

    • Type: int

    • Description:

    • 30

  • jobs.cluster_wait.clusterCheckWait

    • Type: int

    • Description:

    • 30

  • jobs.cluster_wait.clusterStabilityCount

    • Type: int

    • Description:

    • 30

  • jobs.cluster_wait.clusterStabilityWait

    • Type: int

    • Description:

    • 4

  • jobs.exporter_create_sql_user.activeDeadlineSeconds

    • Type: int

    • Description:

    • 3600

  • jobs.exporter_create_sql_user.backoffLimit

    • Type: int

    • Description:

    • 87600

  • jobs.ks_user.activeDeadlineSeconds

    • Type: int

    • Description:

    • 0

  • jobs.ks_user.backoffLimit

    • Type: int

    • Description:

    • 6

  • jobs.mariadb_backup.activeDeadlineSeconds

    • Type: int

    • Description:

    • 0

  • jobs.mariadb_backup.backoffLimit

    • Type: int

    • Description:

    • 6

  • jobs.mariadb_backup.cron

    • Type: string

    • Description:

    • “0 0 * * *”

  • jobs.mariadb_backup.history.failed

    • Type: int

    • Description:

    • 1

  • jobs.mariadb_backup.history.success

    • Type: int

    • Description:

    • 3

  • labels.controller.node_selector_key

    • Type: string

    • Description:

    • “openstack-control-plane”

  • labels.controller.node_selector_value

    • Type: string

    • Description:

    • “enabled”

  • labels.job.node_selector_key

    • Type: string

    • Description:

    • “openstack-control-plane”

  • labels.job.node_selector_value

    • Type: string

    • Description:

    • “enabled”

  • labels.prometheus_mysql_exporter.node_selector_key

    • Type: string

    • Description:

    • “openstack-control-plane”

  • labels.prometheus_mysql_exporter.node_selector_value

    • Type: string

    • Description:

    • “enabled”

  • labels.server.node_selector_key

    • Type: string

    • Description:

    • “openstack-control-plane”

  • labels.server.node_selector_value

    • Type: string

    • Description:

    • “enabled”

  • labels.test.node_selector_key

    • Type: string

    • Description:

    • “openstack-control-plane”

  • labels.test.node_selector_value

    • Type: string

    • Description:

    • “enabled”

  • manifests.certificates

    • Type: bool

    • Description:

    • false

  • manifests.configmap_bin

    • Type: bool

    • Description:

    • true

  • manifests.configmap_etc

    • Type: bool

    • Description:

    • true

  • manifests.configmap_services_tcp

    • Type: bool

    • Description:

    • true

  • manifests.cron_job_mariadb_backup

    • Type: bool

    • Description:

    • false

  • manifests.deployment_controller

    • Type: bool

    • Description:

    • true

  • manifests.job_cluster_wait

    • Type: bool

    • Description:

    • false

  • manifests.job_image_repo_sync

    • Type: bool

    • Description:

    • true

  • manifests.job_ks_user

    • Type: bool

    • Description:

    • false

  • manifests.monitoring.prometheus.configmap_bin

    • Type: bool

    • Description:

    • true

  • manifests.monitoring.prometheus.job_user_create

    • Type: bool

    • Description:

    • true

  • manifests.monitoring.prometheus.secret_etc

    • Type: bool

    • Description:

    • true

  • manifests.network_policy

    • Type: bool

    • Description:

    • false

  • manifests.pdb_server

    • Type: bool

    • Description:

    • true

  • manifests.pod_test

    • Type: bool

    • Description:

    • true

  • manifests.pvc_backup

    • Type: bool

    • Description:

    • false

  • manifests.secret_backup_restore

    • Type: bool

    • Description:

    • false

  • manifests.secret_dbadmin_password

    • Type: bool

    • Description:

    • true

  • manifests.secret_dbaudit_password

    • Type: bool

    • Description:

    • true

  • manifests.secret_etc

    • Type: bool

    • Description:

    • true

  • manifests.secret_registry

    • Type: bool

    • Description:

    • true

  • manifests.secret_sst_password

    • Type: bool

    • Description:

    • true

  • manifests.service

    • Type: bool

    • Description:

    • true

  • manifests.service_discovery

    • Type: bool

    • Description:

    • true

  • manifests.service_error

    • Type: bool

    • Description:

    • false

  • manifests.service_master

    • Type: bool

    • Description:

    • true

  • manifests.statefulset

    • Type: bool

    • Description:

    • true

  • monitoring.prometheus.enabled

    • Type: bool

    • Description:

    • false

  • monitoring.prometheus.mysqld_exporter.scrape

    • Type: bool

    • Description:

    • true

  • network.mariadb

    • Type: object

    • Description:

    • {}

  • network.mariadb_discovery

    • Type: object

    • Description:

    • {}

  • network.mariadb_master

    • Type: object

    • Description:

    • {}

  • network_policy.mariadb.egress[0]

    • Type: object

    • Description:

    • {}

  • network_policy.mariadb.ingress[0]

    • Type: object

    • Description:

    • {}

  • network_policy.prometheus-mysql-exporter.egress[0]

    • Type: object

    • Description:

    • {}

  • network_policy.prometheus-mysql-exporter.ingress[0]

    • Type: object

    • Description:

    • {}

  • pod.affinity.anti.topologyKey.default

    • Type: string

    • Description:

    • “kubernetes.io/hostname”

  • pod.affinity.anti.type.default

    • Type: string

    • Description:

    • “preferredDuringSchedulingIgnoredDuringExecution”

  • pod.affinity.anti.weight.default

    • Type: int

    • Description:

    • 10

  • pod.env.mariadb_controller.MARIADB_CONTROLLER_CHECK_PODS_DELAY

    • Type: int

    • Description:

    • 10

  • pod.env.mariadb_controller.MARIADB_CONTROLLER_DEBUG

    • Type: int

    • Description:

    • 0

  • pod.env.mariadb_controller.MARIADB_CONTROLLER_PYKUBE_REQUEST_TIMEOUT

    • Type: int

    • Description:

    • 60

  • pod.lifecycle.disruption_budget.mariadb.min_available

    • Type: int

    • Description:

    • 0

  • pod.lifecycle.termination_grace_period.server.timeout

    • Type: int

    • Description:

    • 600

  • pod.lifecycle.upgrades.deployments.pod_replacement_strategy

    • Type: string

    • Description:

    • “RollingUpdate”

  • pod.lifecycle.upgrades.deployments.revision_history

    • Type: int

    • Description:

    • 3

  • pod.lifecycle.upgrades.deployments.rolling_update.max_surge

    • Type: int

    • Description:

    • 3

  • pod.lifecycle.upgrades.deployments.rolling_update.max_unavailable

    • Type: int

    • Description:

    • 1

  • pod.probes.server.mariadb.liveness.enabled

    • Type: bool

    • Description:

    • true

  • pod.probes.server.mariadb.liveness.params.initialDelaySeconds

    • Type: int

    • Description:

    • 120

  • pod.probes.server.mariadb.liveness.params.periodSeconds

    • Type: int

    • Description:

    • 30

  • pod.probes.server.mariadb.liveness.params.timeoutSeconds

    • Type: int

    • Description:

    • 15

  • pod.probes.server.mariadb.readiness.disk_usage_percent

    • Type: int

    • Description:

    • 99

  • pod.probes.server.mariadb.readiness.enabled

    • Type: bool

    • Description:

    • true

  • pod.probes.server.mariadb.readiness.params.initialDelaySeconds

    • Type: int

    • Description:

    • 30

  • pod.probes.server.mariadb.readiness.params.periodSeconds

    • Type: int

    • Description:

    • 30

  • pod.probes.server.mariadb.readiness.params.timeoutSeconds

    • Type: int

    • Description:

    • 15

  • pod.probes.server.mariadb_exporter.liveness.enabled

    • Type: bool

    • Description:

    • true

  • pod.probes.server.mariadb_exporter.liveness.params.initialDelaySeconds

    • Type: int

    • Description:

    • 15

  • pod.probes.server.mariadb_exporter.liveness.params.periodSeconds

    • Type: int

    • Description:

    • 60

  • pod.probes.server.mariadb_exporter.liveness.params.timeoutSeconds

    • Type: int

    • Description:

    • 10

  • pod.probes.server.mariadb_exporter.readiness.enabled

    • Type: bool

    • Description:

    • true

  • pod.probes.server.mariadb_exporter.readiness.params.initialDelaySeconds

    • Type: int

    • Description:

    • 5

  • pod.probes.server.mariadb_exporter.readiness.params.periodSeconds

    • Type: int

    • Description:

    • 60

  • pod.probes.server.mariadb_exporter.readiness.params.timeoutSeconds

    • Type: int

    • Description:

    • 10

  • pod.replicas.controller

    • Type: int

    • Description:

    • 1

  • pod.replicas.server

    • Type: int

    • Description:

    • 3

  • pod.resources.enabled

    • Type: bool

    • Description:

    • false

  • pod.resources.jobs.image_repo_sync.limits.cpu

    • Type: string

    • Description:

    • “2000m”

  • pod.resources.jobs.image_repo_sync.limits.memory

    • Type: string

    • Description:

    • “1024Mi”

  • pod.resources.jobs.image_repo_sync.requests.cpu

    • Type: string

    • Description:

    • “100m”

  • pod.resources.jobs.image_repo_sync.requests.memory

    • Type: string

    • Description:

    • “128Mi”

  • pod.resources.jobs.ks_user.limits.cpu

    • Type: string

    • Description:

    • “2000m”

  • pod.resources.jobs.ks_user.limits.memory

    • Type: string

    • Description:

    • “1024Mi”

  • pod.resources.jobs.ks_user.requests.cpu

    • Type: string

    • Description:

    • “100m”

  • pod.resources.jobs.ks_user.requests.memory

    • Type: string

    • Description:

    • “128Mi”

  • pod.resources.jobs.mariadb_backup.limits.cpu

    • Type: string

    • Description:

    • “2000m”

  • pod.resources.jobs.mariadb_backup.limits.memory

    • Type: string

    • Description:

    • “1024Mi”

  • pod.resources.jobs.mariadb_backup.requests.cpu

    • Type: string

    • Description:

    • “100m”

  • pod.resources.jobs.mariadb_backup.requests.memory

    • Type: string

    • Description:

    • “128Mi”

  • pod.resources.jobs.prometheus_create_mysql_user.limits.cpu

    • Type: string

    • Description:

    • “2000m”

  • pod.resources.jobs.prometheus_create_mysql_user.limits.memory

    • Type: string

    • Description:

    • “1024Mi”

  • pod.resources.jobs.prometheus_create_mysql_user.requests.cpu

    • Type: string

    • Description:

    • “100m”

  • pod.resources.jobs.prometheus_create_mysql_user.requests.memory

    • Type: string

    • Description:

    • “128Mi”

  • pod.resources.jobs.tests.limits.cpu

    • Type: string

    • Description:

    • “2000m”

  • pod.resources.jobs.tests.limits.memory

    • Type: string

    • Description:

    • “1024Mi”

  • pod.resources.jobs.tests.requests.cpu

    • Type: string

    • Description:

    • “100m”

  • pod.resources.jobs.tests.requests.memory

    • Type: string

    • Description:

    • “128Mi”

  • pod.resources.server.limits.cpu

    • Type: string

    • Description:

    • “2000m”

  • pod.resources.server.limits.memory

    • Type: string

    • Description:

    • “1024Mi”

  • pod.resources.server.requests.cpu

    • Type: string

    • Description:

    • “100m”

  • pod.resources.server.requests.memory

    • Type: string

    • Description:

    • “128Mi”

  • pod.security_context.cluster_wait.container.mariadb_cluster_wait.allowPrivilegeEscalation

    • Type: bool

    • Description:

    • false

  • pod.security_context.cluster_wait.container.mariadb_cluster_wait.capabilities.drop[0]

    • Type: string

    • Description:

    • “ALL”

  • pod.security_context.cluster_wait.pod.runAsNonRoot

    • Type: bool

    • Description:

    • true

  • pod.security_context.cluster_wait.pod.runAsUser

    • Type: int

    • Description:

    • 65534

  • pod.security_context.controller.container.controller.allowPrivilegeEscalation

    • Type: bool

    • Description:

    • false

  • pod.security_context.controller.container.controller.readOnlyRootFilesystem

    • Type: bool

    • Description:

    • true

  • pod.security_context.controller.pod.runAsUser

    • Type: int

    • Description:

    • 65534

  • pod.security_context.mariadb_backup.container.backup_perms.readOnlyRootFilesystem

    • Type: bool

    • Description:

    • true

  • pod.security_context.mariadb_backup.container.backup_perms.runAsUser

    • Type: int

    • Description:

    • 0

  • pod.security_context.mariadb_backup.container.mariadb_backup.allowPrivilegeEscalation

    • Type: bool

    • Description:

    • false

  • pod.security_context.mariadb_backup.container.mariadb_backup.readOnlyRootFilesystem

    • Type: bool

    • Description:

    • true

  • pod.security_context.mariadb_backup.container.mariadb_backup.runAsUser

    • Type: int

    • Description:

    • 65534

  • pod.security_context.mariadb_backup.container.verify_perms.readOnlyRootFilesystem

    • Type: bool

    • Description:

    • true

  • pod.security_context.mariadb_backup.container.verify_perms.runAsUser

    • Type: int

    • Description:

    • 0

  • pod.security_context.mariadb_backup.pod.runAsUser

    • Type: int

    • Description:

    • 65534

  • pod.security_context.prometheus_create_mysql_user.container.main.allowPrivilegeEscalation

    • Type: bool

    • Description:

    • false

  • pod.security_context.prometheus_create_mysql_user.container.main.readOnlyRootFilesystem

    • Type: bool

    • Description:

    • true

  • pod.security_context.prometheus_create_mysql_user.pod.runAsUser

    • Type: int

    • Description:

    • 0

  • pod.security_context.prometheus_mysql_exporter.container.exporter.allowPrivilegeEscalation

    • Type: bool

    • Description:

    • false

  • pod.security_context.prometheus_mysql_exporter.container.exporter.readOnlyRootFilesystem

    • Type: bool

    • Description:

    • true

  • pod.security_context.prometheus_mysql_exporter.container.exporter.runAsUser

    • Type: int

    • Description:

    • 99

  • pod.security_context.prometheus_mysql_exporter.pod.runAsUser

    • Type: int

    • Description:

    • 99

  • pod.security_context.server.container.mariadb.allowPrivilegeEscalation

    • Type: bool

    • Description:

    • false

  • pod.security_context.server.container.mariadb.readOnlyRootFilesystem

    • Type: bool

    • Description:

    • true

  • pod.security_context.server.container.mariadb.runAsUser

    • Type: int

    • Description:

    • 999

  • pod.security_context.server.container.perms.readOnlyRootFilesystem

    • Type: bool

    • Description:

    • true

  • pod.security_context.server.container.perms.runAsUser

    • Type: int

    • Description:

    • 0

  • pod.security_context.server.pod.runAsUser

    • Type: int

    • Description:

    • 999

  • pod.security_context.tests.container.test.readOnlyRootFilesystem

    • Type: bool

    • Description:

    • true

  • pod.security_context.tests.container.test.runAsUser

    • Type: int

    • Description:

    • 999

  • pod.security_context.tests.pod.runAsUser

    • Type: int

    • Description:

    • 999

  • pod.tolerations.mariadb.enabled

    • Type: bool

    • Description:

    • false

  • pod.tolerations.mariadb.tolerations[0].effect

    • Type: string

    • Description:

    • “NoSchedule”

  • pod.tolerations.mariadb.tolerations[0].key

    • Type: string

    • Description:

    • “node-role.kubernetes.io/master”

  • pod.tolerations.mariadb.tolerations[0].operator

    • Type: string

    • Description:

    • “Exists”

  • pod.tolerations.mariadb.tolerations[1].effect

    • Type: string

    • Description:

    • “NoSchedule”

  • pod.tolerations.mariadb.tolerations[1].key

    • Type: string

    • Description:

    • “node-role.kubernetes.io/control-plane”

  • pod.tolerations.mariadb.tolerations[1].operator

    • Type: string

    • Description:

    • “Exists”

  • release_group

    • Type: string

    • Description:

    • nil

  • secrets.identity.admin

    • Type: string

    • Description:

    • “keystone-admin-user”

  • secrets.identity.mariadb

    • Type: string

    • Description:

    • “mariadb-backup-user”

  • secrets.mariadb.backup_restore

    • Type: string

    • Description:

    • “mariadb-backup-restore”

  • secrets.oci_image_registry.mariadb

    • Type: string

    • Description:

    • “mariadb-oci-image-registry-key”

  • secrets.tls.oslo_db.server.internal

    • Type: string

    • Description:

    • “mariadb-tls-direct”

  • secrets.tls.oslo_db.server.public

    • Type: string

    • Description:

    • “mariadb-tls-server”

  • volume.backup.class_name

    • Type: string

    • Description:

    • “general”

  • volume.backup.enabled

    • Type: bool

    • Description:

    • true

  • volume.backup.size

    • Type: string

    • Description:

    • “5Gi”

  • volume.chown_on_start

    • Type: bool

    • Description:

    • true

  • volume.class_name

    • Type: string

    • Description:

    • “general”

  • volume.enabled

    • Type: bool

    • Description:

    • true

  • volume.size

    • Type: string

    • Description:

    • “5Gi”

  • volume.use_local_path_for_single_pod_cluster.enabled

    • Type: bool

    • Description:

    • false

  • volume.use_local_path_for_single_pod_cluster.host_path

    • Type: string

    • Description:

    • “/tmp/mysql-data”