This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# convert PuTTY's public ssh key file into OpenSSH public key | |
ssh-keygen -i -f id_rsa_putty.pub > id_rsa.pub |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
osd_data_size = 6 | |
osd_journal_size = 6 | |
osd_path = '/d02/vagrant/virtualbox-ceph-disks' | |
hosts = { | |
'mon-1' => { | |
'ip' => '10.253.60.151', 'cpus' => 1, 'memory' => 1024, 'autostart' => true, | |
'data_disk_size' => osd_data_size * 1024, 'journal_disk_size' => osd_journal_size * 1024 }, | |
} |