本文整理汇总了Golang中github.com/coreos/fleet/schema.Unit.Options方法的典型用法代码示例。如果您正苦于以下问题:Golang Unit.Options方法的具体用法?Golang Unit.Options怎么用?Golang Unit.Options使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/coreos/fleet/schema.Unit
的用法示例。
在下文中一共展示了Unit.Options方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: MakeUnitChain
// MakeUnitChain creates the unit files of the benchmark units.
func (b *Builder) MakeUnitChain(id string) []schema.Unit {
unitsList := []schema.Unit{}
// 3 dependsOn 2; 2 dependsOn 1; 1 dependsOn 0
// 0 after 1; 1 after 2 ; 2 after 3
for i := b.instanceGroupSize - 1; i >= 0; i-- {
name := fmt.Sprintf("%s-%[email protected]%s.service", b.unitPrefix, i, id)
unit := schema.Unit{
Name: name,
}
if b.app.Type == "unitfiles" && b.unitFile != nil {
unit.Options = b.buildCustomService()
} else if b.app.Type == "docker" {
unit.Options = b.buildDockerService()
} else if b.app.Type == "rkt" {
unit.Options = b.buildRktService()
} else {
unit.Options = b.buildShellService()
}
if i > 0 {
depName := fmt.Sprintf("%s-%[email protected]%s.service", b.unitPrefix, i-1, id)
unit.Options = append(unit.Options,
&schema.UnitOption{
Section: "X-Fleet",
Name: "MachineOf",
Value: depName,
},
)
}
unitsList = append(unitsList, unit)
}
if len(unitsList) > 1 {
for i := 0; i < (len(unitsList) - 1); i++ {
depName := unitsList[i+1].Name
unitsList[i].Options = append(unitsList[i].Options,
&schema.UnitOption{
Section: "Unit",
Name: "Before",
Value: depName,
},
&schema.UnitOption{
Section: "Unit",
Name: "BindTo",
Value: depName,
},
)
}
}
return unitsList
}