本文整理汇总了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;未经允许,请勿转载。 |
请发表评论