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


Golang core.NewRootWatchAction函數代碼示例

本文整理匯總了Golang中k8s/io/kubernetes/pkg/client/testing/core.NewRootWatchAction函數的典型用法代碼示例。如果您正苦於以下問題:Golang NewRootWatchAction函數的具體用法?Golang NewRootWatchAction怎麽用?Golang NewRootWatchAction使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: Watch

// Watch returns a watch.Interface that watches the requested thirdPartyResources.
func (c *FakeThirdPartyResources) Watch(opts api.ListOptions) (watch.Interface, error) {
	return c.Fake.
		InvokesWatch(core.NewRootWatchAction(thirdpartyresourcesResource, opts))
}
開發者ID:humblec,項目名稱:kubernetes,代碼行數:5,代碼來源:fake_thirdpartyresource.go

示例2: Watch

// Watch returns a watch.Interface that watches the requested namespaces.
func (c *FakeNamespaces) Watch(opts api.ListOptions) (watch.Interface, error) {
	return c.Fake.
		InvokesWatch(core.NewRootWatchAction(namespacesResource, opts))
}
開發者ID:CodeJuan,項目名稱:kubernetes,代碼行數:5,代碼來源:fake_namespace.go

示例3: Watch

func (c *FakeOAuthClient) Watch(opts kapi.ListOptions) (watch.Interface, error) {
	return c.Fake.InvokesWatch(core.NewRootWatchAction(oAuthClientsResource, opts))
}
開發者ID:xgwang-zte,項目名稱:origin,代碼行數:3,代碼來源:fake_oauthclient.go

示例4: Watch

// Watch returns a watch.Interface that watches the requested clusterRoleBindings.
func (c *FakeClusterRoleBindings) Watch(opts v1.ListOptions) (watch.Interface, error) {
	return c.Fake.
		InvokesWatch(core.NewRootWatchAction(clusterrolebindingsResource, opts))
}
開發者ID:ncdc,項目名稱:kubernetes,代碼行數:5,代碼來源:fake_clusterrolebinding.go

示例5: Watch

// Watch returns a watch.Interface that watches the requested persistentVolumes.
func (c *FakePersistentVolumes) Watch(opts v1.ListOptions) (watch.Interface, error) {
	return c.Fake.
		InvokesWatch(core.NewRootWatchAction(persistentvolumesResource, opts))
}
開發者ID:alex-mohr,項目名稱:kubernetes,代碼行數:5,代碼來源:fake_persistentvolume.go

示例6: Watch

// Watch returns a watch.Interface that watches the requested certificateSigningRequests.
func (c *FakeCertificateSigningRequests) Watch(opts api.ListOptions) (watch.Interface, error) {
	return c.Fake.
		InvokesWatch(core.NewRootWatchAction(certificatesigningrequestsResource, opts))
}
開發者ID:humblec,項目名稱:kubernetes,代碼行數:5,代碼來源:fake_certificatesigningrequest.go

示例7: Watch

// Watch returns a watch.Interface that watches the requested securityContextConstraints.
func (c *FakeSecurityContextConstraints) Watch(opts api.ListOptions) (watch.Interface, error) {
	return c.Fake.
		InvokesWatch(core.NewRootWatchAction(securitycontextconstraintsResource, opts))
}
開發者ID:juanluisvaladas,項目名稱:origin,代碼行數:5,代碼來源:fake_securitycontextconstraints.go

示例8: Watch

// Watch returns a watch.Interface that watches the requested storageClasses.
func (c *FakeStorageClasses) Watch(opts api.ListOptions) (watch.Interface, error) {
	return c.Fake.
		InvokesWatch(core.NewRootWatchAction(storageclassesResource, opts))
}
開發者ID:humblec,項目名稱:kubernetes,代碼行數:5,代碼來源:fake_storageclass.go

示例9: Watch

// Watch returns a watch.Interface that watches the requested podSecurityPolicies.
func (c *FakePodSecurityPolicies) Watch(opts v1.ListOptions) (watch.Interface, error) {
	return c.Fake.
		InvokesWatch(core.NewRootWatchAction(podsecuritypoliciesResource, opts))
}
開發者ID:alex-mohr,項目名稱:kubernetes,代碼行數:5,代碼來源:fake_podsecuritypolicy.go

示例10: Watch

// Watch returns a watch.Interface that watches the requested nodes.
func (c *FakeNodes) Watch(opts api.ListOptions) (watch.Interface, error) {
	return c.Fake.
		InvokesWatch(core.NewRootWatchAction("nodes", opts))
}
開發者ID:XiaoningDing,項目名稱:UbernetesPOC,代碼行數:5,代碼來源:fake_node.go

示例11: Watch

// Watch returns a watch.Interface that watches the requested componentStatuses.
func (c *FakeComponentStatuses) Watch(opts api.ListOptions) (watch.Interface, error) {
	return c.Fake.
		InvokesWatch(core.NewRootWatchAction(componentstatusesResource, opts))
}
開發者ID:CodeJuan,項目名稱:kubernetes,代碼行數:5,代碼來源:fake_componentstatus.go

示例12: Watch

// Watch returns a watch.Interface that watches the requested aPIServices.
func (c *FakeAPIServices) Watch(opts v1.ListOptions) (watch.Interface, error) {
	return c.Fake.
		InvokesWatch(core.NewRootWatchAction(apiservicesResource, opts))
}
開發者ID:kubernetes,項目名稱:kubernetes,代碼行數:5,代碼來源:fake_apiservice.go

示例13: Watch

// Watch returns a watch.Interface that watches the requested persistentVolumes.
func (c *FakePersistentVolumes) Watch(opts api.ListOptions) (watch.Interface, error) {
	return c.Fake.
		InvokesWatch(core.NewRootWatchAction("persistentVolumes", opts))
}
開發者ID:mitake,項目名稱:kubernetes,代碼行數:5,代碼來源:fake_persistentvolume.go

示例14: Watch

func (c *FakeClusterResourceQuotas) Watch(opts kapi.ListOptions) (watch.Interface, error) {
	return c.Fake.InvokesWatch(core.NewRootWatchAction(clusteResourceQuotasResource, opts))
}
開發者ID:xgwang-zte,項目名稱:origin,代碼行數:3,代碼來源:fake_clusterresourcequota.go

示例15: Watch

// Watch returns a watch.Interface that watches the requested projects.
func (c *FakeProjects) Watch(opts pkg_api.ListOptions) (watch.Interface, error) {
	return c.Fake.
		InvokesWatch(core.NewRootWatchAction(projectsResource, opts))
}
開發者ID:juanluisvaladas,項目名稱:origin,代碼行數:5,代碼來源:fake_project.go


注:本文中的k8s/io/kubernetes/pkg/client/testing/core.NewRootWatchAction函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。