當前位置: 首頁>>代碼示例>>Golang>>正文


Golang AppRunner.CreateApp方法代碼示例

本文整理匯總了Golang中github.com/cloudfoundry-incubator/lattice/ltc/app_runner.AppRunner.CreateApp方法的典型用法代碼示例。如果您正苦於以下問題:Golang AppRunner.CreateApp方法的具體用法?Golang AppRunner.CreateApp怎麽用?Golang AppRunner.CreateApp使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/cloudfoundry-incubator/lattice/ltc/app_runner.AppRunner的用法示例。


在下文中一共展示了AppRunner.CreateApp方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1:

				Name:         "americano-app",
				StartCommand: "/app-run-statement",
				RootFS:       "/runtest/runner",
				AppArgs:      []string{"app", "arg1", "--app", "arg 2"},
				Annotation:   "some annotation",

				Setup: &models.DownloadAction{
					From: "http://file_server.service.dc1.consul:8080/v1/static/healthcheck.tgz",
					To:   "/tmp",
					User: "download-user",
				},
			}
		})

		It("Upserts lattice domain so that it is always fresh, then starts the Docker App", func() {
			err := appRunner.CreateApp(createAppParams)
			Expect(err).ToNot(HaveOccurred())

			Expect(fakeReceptorClient.UpsertDomainCallCount()).To(Equal(1))
			domain, ttl := fakeReceptorClient.UpsertDomainArgsForCall(0)
			Expect(domain).To(Equal("lattice"))
			Expect(ttl).To(Equal(time.Duration(0)))

			Expect(fakeReceptorClient.CreateDesiredLRPCallCount()).To(Equal(1))
			req := fakeReceptorClient.CreateDesiredLRPArgsForCall(0)
			Expect(req.ProcessGuid).To(Equal("americano-app"))
			Expect(req.Domain).To(Equal("lattice"))
			Expect(req.RootFS).To(Equal("/runtest/runner"))
			Expect(req.Instances).To(Equal(22))
			Expect(req.EnvironmentVariables).To(ContainExactly(
				[]receptor.EnvironmentVariable{
開發者ID:rowhit,項目名稱:lattice,代碼行數:31,代碼來源:app_runner_test.go

示例2:

		It("Upserts lattice domain so that it is always fresh, then starts the Docker App", func() {
			args := []string{"app", "arg1", "--app", "arg 2"}
			envs := map[string]string{"APPROOT": "/root/env/path"}
			err := appRunner.CreateApp(app_runner.CreateAppParams{
				AppEnvironmentParams: app_runner.AppEnvironmentParams{
					EnvironmentVariables: envs,
					Privileged:           false,
					Monitor: app_runner.MonitorConfig{
						Method: app_runner.PortMonitor,
						Port:   2000,
					},
					Instances:    22,
					CPUWeight:    67,
					MemoryMB:     128,
					DiskMB:       1024,
					ExposedPorts: []uint16{2000, 4000},
					WorkingDir:   "/user/web/myappdir",
				},

				Name:         "americano-app",
				StartCommand: "/app-run-statement",
				RootFS:       "/runtest/runner",
				AppArgs:      args,

				Setup: &models.DownloadAction{
					From: "http://file_server.service.dc1.consul:8080/v1/static/healthcheck.tgz",
					To:   "/tmp",
				},
			})
			Expect(err).ToNot(HaveOccurred())
			Expect(fakeReceptorClient.UpsertDomainCallCount()).To(Equal(1))
			domain, ttl := fakeReceptorClient.UpsertDomainArgsForCall(0)
開發者ID:rajkumargithub,項目名稱:lattice,代碼行數:32,代碼來源:app_runner_test.go


注:本文中的github.com/cloudfoundry-incubator/lattice/ltc/app_runner.AppRunner.CreateApp方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。