設(shè)置 hostname
cloud-init 默認(rèn)會(huì)將 instance 的名字設(shè)置為 hostname。但這樣不太方便,有時(shí)希望能夠?qū)⒍叻珠_,可利用 cloud-init 的set_hostname
模塊實(shí)現(xiàn)。set_hostname
它會(huì)查詢 metadata 中 hostname 信息,默認(rèn)值就是 instance 的名字。我們可以指定自己的 hostname,方法是將下面的內(nèi)容傳給 cloud-init:
#cloud-config
hostname: my1.cloudman.cc
manage_etc_hosts: true