2f447f6545
CentOS Stream 8 support has been dropped. Migration path will be present in Yoga release - as a followup change. MichaelRigart.interfaces does not support custom routes for NetworkManager yet. It has been disabled in CI for Rocky Linux 9 temporarily. Non-voting CentOS Stream 9 CI overcloud job is using RL9 container images (as kolla CI is not building CS9 images anymore). Change-Id: Idf5ee822b03ba40179803c981500a6bad37594bf
54 lines
1.7 KiB
Plaintext
54 lines
1.7 KiB
Plaintext
---
|
|
# Yum configuration. Dict mapping Yum config option names to their values.
|
|
# dnf_config:
|
|
# proxy: http://proxy.example.com
|
|
dnf_config: {}
|
|
|
|
# Whether or not to use a local Yum mirror. Default value is 'false'.
|
|
dnf_use_local_mirror: false
|
|
|
|
# Mirror FQDN for DNF CentOS repos. Default value is 'mirror.stream.centos.org'.
|
|
dnf_centos_mirror_host: 'mirror.stream.centos.org'
|
|
|
|
# Mirror directory for DNF CentOS repos. Default value is ''.
|
|
dnf_centos_mirror_directory: ''
|
|
|
|
# Mirror FQDN for DNF Rocky repos. Default value is 'dl.rockylinux.org'.
|
|
dnf_rocky_mirror_host: 'dl.rockylinux.org'
|
|
|
|
# Mirror directory for DNF Rocky repos. Default value is 'pub/rocky'.
|
|
dnf_rocky_mirror_directory: 'pub/rocky'
|
|
|
|
# Mirror FQDN for DNF EPEL repos. Default value is
|
|
# 'download.fedoraproject.org'.
|
|
dnf_epel_mirror_host: 'download.fedoraproject.org'
|
|
|
|
# Mirror directory for DNF EPEL repos. Default value is 'pub/epel'.
|
|
dnf_epel_mirror_directory: 'pub/epel'
|
|
|
|
# A dict of custom repositories.
|
|
# You can see params on
|
|
# http://docs.ansible.com/ansible/latest/modules/yum_repository_module.html.
|
|
# For example:
|
|
# dnf_custom_repos:
|
|
# reponame:
|
|
# baseurl: http://repo
|
|
# file: myrepo
|
|
# gpgkey: http://gpgkey
|
|
# gpgcheck: yes
|
|
dnf_custom_repos: {}
|
|
|
|
# Whether to install the epel-release package. This affects RedHat-based
|
|
# systems only. Default value is 'false'.
|
|
dnf_install_epel: false
|
|
|
|
###############################################################################
|
|
# DNF Automatic configuration.
|
|
|
|
# Whether DNF Automatic is enabled. This can be used to regularly apply
|
|
# security updates. Default value is 'false'.
|
|
dnf_automatic_enabled: false
|
|
|
|
# DNF Automatic upgrade type. Default value is 'security'.
|
|
dnf_automatic_upgrade_type: 'security'
|