本文整理匯總了Golang中github.com/cloudfoundry-incubator/receptor.Client.UpdateDesiredLRP方法的典型用法代碼示例。如果您正苦於以下問題:Golang Client.UpdateDesiredLRP方法的具體用法?Golang Client.UpdateDesiredLRP怎麽用?Golang Client.UpdateDesiredLRP使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/cloudfoundry-incubator/receptor.Client
的用法示例。
在下文中一共展示了Client.UpdateDesiredLRP方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: handleScale
func handleScale(receptorClient receptor.Client) {
if *processGuid == "" {
logger.Fatal("missing-processGuid", errors.New("Missing mandatory processGuid parameter for scale action"))
}
updatePayload := receptor.DesiredLRPUpdateRequest{
Instances: numberOfInstances,
}
err := receptorClient.UpdateDesiredLRP(*processGuid, updatePayload)
if err != nil {
logger.Error("failed-to-scale", err, lager.Data{"process-guid": *processGuid, "update-request": updatePayload})
return
}
fmt.Printf("LRP %s scaled to number of instances %d\n", *processGuid, *numberOfInstances)
}
示例2:
externalPort = 62000 + GinkgoParallelNode()
sampleReceiverPort1 = 8000 + GinkgoParallelNode()
serverId1 = fmt.Sprintf("serverId-%d", GinkgoParallelNode())
lrp := helpers.CreateDesiredLRP(logger,
uint16(externalPort), uint16(sampleReceiverPort1), serverId1, 1)
err := receptorClient.CreateDesiredLRP(lrp)
Expect(err).ShouldNot(HaveOccurred())
processGuid = lrp.ProcessGuid
})
AfterEach(func() {
err := receptorClient.DeleteDesiredLRP(processGuid)
Expect(err).ShouldNot(HaveOccurred())
})
It("receives TCP traffic on desired external port", func() {
verifyConnection(externalPort, serverId1)
By("updating LRP with new external port it receives traffic on new external port")
externalPort = 63000 + GinkgoParallelNode()
updatedLrp := helpers.UpdateDesiredLRP(uint16(externalPort),
uint16(sampleReceiverPort1), 1)
err := receptorClient.UpdateDesiredLRP(processGuid, updatedLrp)
Expect(err).ShouldNot(HaveOccurred())
verifyConnection(externalPort, serverId1)
})
})
})