本文整理汇总了Golang中github.com/juju/juju/api/firewaller.Unit类的典型用法代码示例。如果您正苦于以下问题:Golang Unit类的具体用法?Golang Unit怎么用?Golang Unit使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Unit类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: startUnit
// startUnit creates a new data value for tracking details of the unit
// The provided machineTag must be the tag for the machine the unit was last
// observed to be assigned to.
func (fw *Firewaller) startUnit(unit *firewaller.Unit, machineTag names.MachineTag) error {
service, err := unit.Service()
if err != nil {
return err
}
serviceTag := service.Tag()
unitTag := unit.Tag()
if err != nil {
return err
}
unitd := &unitData{
fw: fw,
unit: unit,
tag: unitTag,
}
fw.unitds[unitTag] = unitd
unitd.machined = fw.machineds[machineTag]
unitd.machined.unitds[unitTag] = unitd
if fw.serviceds[serviceTag] == nil {
err := fw.startService(service)
if err != nil {
delete(fw.unitds, unitTag)
return err
}
}
unitd.serviced = fw.serviceds[serviceTag]
unitd.serviced.unitds[unitTag] = unitd
m, err := unitd.machined.machine()
if err != nil {
return err
}
// check if the machine has ports open on any networks
networkTags, err := m.ActiveNetworks()
if err != nil {
return errors.Annotatef(err, "failed getting %q active networks", machineTag)
}
for _, networkTag := range networkTags {
err := fw.openedPortsChanged(machineTag, networkTag)
if err != nil {
return err
}
}
return nil
}
示例2: startUnit
// startUnit creates a new data value for tracking details of the unit
// The provided machineTag must be the tag for the machine the unit was last
// observed to be assigned to.
func (fw *Firewaller) startUnit(unit *firewaller.Unit, machineTag names.MachineTag) error {
application, err := unit.Application()
if err != nil {
return err
}
applicationTag := application.Tag()
unitTag := unit.Tag()
if err != nil {
return err
}
unitd := &unitData{
fw: fw,
unit: unit,
tag: unitTag,
}
fw.unitds[unitTag] = unitd
unitd.machined = fw.machineds[machineTag]
unitd.machined.unitds[unitTag] = unitd
if fw.applicationids[applicationTag] == nil {
err := fw.startService(application)
if err != nil {
delete(fw.unitds, unitTag)
return err
}
}
unitd.serviced = fw.applicationids[applicationTag]
unitd.serviced.unitds[unitTag] = unitd
m, err := unitd.machined.machine()
if err != nil {
return err
}
// check if the machine has ports open on any subnets
subnetTags, err := m.ActiveSubnets()
if err != nil {
return errors.Annotatef(err, "failed getting %q active subnets", machineTag)
}
for _, subnetTag := range subnetTags {
err := fw.openedPortsChanged(machineTag, subnetTag)
if err != nil {
return err
}
}
return nil
}
示例3: 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
}