37 Star 403 Fork 75

GVPrancher/rancher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
namespace_quota_reset.go 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
Dan Ramich 提交于 2019-06-12 13:38 . goimport linting changes
package resourcequota
import (
"fmt"
v1 "github.com/rancher/types/apis/core/v1"
v3 "github.com/rancher/types/apis/management.cattle.io/v3"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/runtime"
clientcache "k8s.io/client-go/tools/cache"
)
/*
quotaResetController is responsible for resetting resource quota on the namespace
when project resource quota gets reset
*/
type quotaResetController struct {
namespaces v1.NamespaceInterface
nsIndexer clientcache.Indexer
}
func (c *quotaResetController) resetNamespaceQuota(key string, project *v3.Project) (runtime.Object, error) {
if project == nil || project.DeletionTimestamp != nil {
return nil, nil
}
if project.Spec.ResourceQuota != nil {
return nil, nil
}
projectID := fmt.Sprintf("%s:%s", project.Namespace, project.Name)
namespaces, err := c.nsIndexer.ByIndex(nsByProjectIndex, projectID)
if err != nil {
return nil, err
}
for _, n := range namespaces {
ns := n.(*corev1.Namespace)
quota := getNamespaceResourceQuota(ns)
if quota == "" {
continue
}
toUpdate := ns.DeepCopy()
delete(toUpdate.Annotations, resourceQuotaAnnotation)
if _, err := c.namespaces.Update(toUpdate); err != nil {
return nil, err
}
}
return nil, nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.2.9-rc2

搜索帮助