本文整理匯總了Golang中github.com/cloudfoundry/bosh-agent/settings.Settings類的典型用法代碼示例。如果您正苦於以下問題:Golang Settings類的具體用法?Golang Settings怎麽用?Golang Settings使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了Settings類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: checkLastMountedCid
func (boot bootstrap) checkLastMountedCid(settings boshsettings.Settings) error {
lastMountedCid, err := boot.lastMountedCid()
if err != nil {
return bosherr.WrapError(err, "Fetching last mounted disk CID")
}
if len(settings.Disks.Persistent) == 0 || lastMountedCid == "" {
return nil
}
if _, ok := settings.PersistentDiskSettings(lastMountedCid); !ok {
return fmt.Errorf("Attached disk disagrees with previous mount")
}
return nil
}
示例2:
package integration_test
import (
"time"
. "github.com/cloudfoundry/bosh-agent/internal/github.com/onsi/ginkgo"
. "github.com/cloudfoundry/bosh-agent/internal/github.com/onsi/gomega"
boshsettings "github.com/cloudfoundry/bosh-agent/settings"
)
var _ = Describe("RawEphemeralDisk", func() {
var (
registrySettings boshsettings.Settings
)
BeforeEach(func() {
err := testEnvironment.StopAgent()
Expect(err).ToNot(HaveOccurred())
err = testEnvironment.CleanupDataDir()
Expect(err).ToNot(HaveOccurred())
err = testEnvironment.CleanupLogFile()
Expect(err).ToNot(HaveOccurred())
err = testEnvironment.SetupConfigDrive()
Expect(err).ToNot(HaveOccurred())
err = testEnvironment.UpdateAgentConfig("config-drive-agent.json")
Expect(err).ToNot(HaveOccurred())
示例3:
package integration_test
import (
"strings"
"time"
. "github.com/cloudfoundry/bosh-agent/internal/github.com/onsi/ginkgo"
. "github.com/cloudfoundry/bosh-agent/internal/github.com/onsi/gomega"
boshsettings "github.com/cloudfoundry/bosh-agent/settings"
)
var _ = Describe("EphemeralDisk", func() {
var (
registrySettings boshsettings.Settings
)
BeforeEach(func() {
err := testEnvironment.StopAgent()
Expect(err).ToNot(HaveOccurred())
err = testEnvironment.CleanupDataDir()
Expect(err).ToNot(HaveOccurred())
err = testEnvironment.CleanupLogFile()
Expect(err).ToNot(HaveOccurred())
err = testEnvironment.SetupConfigDrive()
Expect(err).ToNot(HaveOccurred())
err = testEnvironment.UpdateAgentConfig("config-drive-agent.json")