本文整理汇总了Golang中github.com/juju/juju/api/firewaller.Unit.Name方法的典型用法代码示例。如果您正苦于以下问题:Golang Unit.Name方法的具体用法?Golang Unit.Name怎么用?Golang Unit.Name使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/juju/juju/api/firewaller.Unit
的用法示例。
在下文中一共展示了Unit.Name方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: startUnit
// startUnit creates a new data value for tracking details of the unit
// and starts watching the unit for port changes. The provided
// machineTag must be the tag for the machine the unit was last
// observed to be assigned to.
func (fw *Firewaller) startUnit(unit *apifirewaller.Unit, machineTag string) error {
service, err := unit.Service()
if err != nil {
return err
}
serviceName := service.Name()
unitName := unit.Name()
openedPorts, err := unit.OpenedPorts()
if err != nil {
return err
}
unitd := &unitData{
fw: fw,
unit: unit,
ports: openedPorts,
}
fw.unitds[unitName] = unitd
unitd.machined = fw.machineds[machineTag]
unitd.machined.unitds[unitName] = unitd
if fw.serviceds[serviceName] == nil {
err := fw.startService(service)
if err != nil {
delete(fw.unitds, unitName)
return err
}
}
unitd.serviced = fw.serviceds[serviceName]
unitd.serviced.unitds[unitName] = unitd
ports := make([]network.Port, len(unitd.ports))
copy(ports, unitd.ports)
go unitd.watchLoop(ports)
return nil
}