cookbooks/aws-parallelcluster-slurm/resources/dns_domain/dns_domain_rocky8.rb (26 lines of code) (raw):
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# A copy of the License is located at
#
# http://aws.amazon.com/apache2.0/
#
# or in the "LICENSE.txt" file accompanying this file.
# This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied.
# See the License for the specific language governing permissions and limitations under the License.
provides :dns_domain, platform: 'rocky' do |node|
node['platform_version'].to_i >= 8
end
use 'partial/_dns_domain_common'
use 'partial/_dns_domain_redhat'
# Configure custom dns domain (only if defined) by appending the Route53 domain created within the cluster
# ($CLUSTER_NAME.pcluster) and be listed as a "search" domain in the resolv.conf file.
action :configure do
return if on_docker?
# On RHEL8 dhclient is not enabled by default
# Put pcluster version of NetworkManager.conf in place
# dhcp = dhclient needs to be added under [main] section to enable dhclient
# https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/considerations_in_adopting_rhel_8/networking_considerations-in-adopting-rhel-8#dhcp_plugin_networking
cookbook_file 'NetworkManager.conf' do
path '/etc/NetworkManager/NetworkManager.conf'
source 'dns_domain/NetworkManager.conf'
cookbook 'aws-parallelcluster-slurm'
user 'root'
group 'root'
mode '0644'
end
# Disable ipv6 IMDS in cloud init to speed up
cookbook_file '99-disable-ipv6-metadata.cfg' do
path '/etc/cloud/cloud.cfg.d/99-disable-ipv6-metadata.cfg'
source 'dns_domain/99-disable-ipv6-metadata.cfg'
cookbook 'aws-parallelcluster-slurm'
user 'root'
group 'root'
mode '0644'
end
action_update_search_domain
network_service 'Restart network service'
end