ncsa/puppet-spectrumscale

Need pubkey and firewall rule in place before we try to add the client

Closed this issue · 0 comments

# AUTHORIZE SSH FROM GPFS MASTER
ssh_authorized_key { 'gpfs_master_authorized_key':
user => 'root',
type => 'ssh-rsa',
#name => "root@${master_server}",
name => 'root@gpfs',
key => $ssh_public_key_contents,
}
# ALLOW GPFS MASTER THROUGH FIREWALL
firewall { '100 ssh from gpfs master':
dport => 22,
proto => tcp,
action => accept,
source => $master_server,
}