本文整理汇总了Golang中k8s/io/kubernetes/pkg/api.ResourceQuota.ObjectMeta方法的典型用法代码示例。如果您正苦于以下问题:Golang ResourceQuota.ObjectMeta方法的具体用法?Golang ResourceQuota.ObjectMeta怎么用?Golang ResourceQuota.ObjectMeta使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类k8s/io/kubernetes/pkg/api.ResourceQuota
的用法示例。
在下文中一共展示了ResourceQuota.ObjectMeta方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: GetQuotas
func (e *clusterQuotaAccessor) GetQuotas(namespaceName string) ([]kapi.ResourceQuota, error) {
clusterQuotaNames, err := e.waitForReadyClusterQuotaNames(namespaceName)
if err != nil {
return nil, err
}
resourceQuotas := []kapi.ResourceQuota{}
for _, clusterQuotaName := range clusterQuotaNames {
clusterQuota, err := e.clusterQuotaLister.Get(clusterQuotaName)
if kapierrors.IsNotFound(err) {
continue
}
if err != nil {
return nil, err
}
clusterQuota = e.checkCache(clusterQuota)
// now convert to a ResourceQuota
convertedQuota := kapi.ResourceQuota{}
convertedQuota.ObjectMeta = clusterQuota.ObjectMeta
convertedQuota.Namespace = namespaceName
convertedQuota.Spec = clusterQuota.Spec.Quota
convertedQuota.Status = clusterQuota.Status.Total
resourceQuotas = append(resourceQuotas, convertedQuota)
}
return resourceQuotas, nil
}