Kubernetes中可以创建的服务帐户数量是否存在硬性限制?
我无法找到任何说明这一点的文件。
答案 0 :(得分:1)
这取决于服务帐户注册表背后的存储,如kubernetes/kubernetes/pkg/registry/core/serviceaccount
// storage puts strong typing around storage calls
type storage struct {
rest.StandardStorage
}
// NewRegistry returns a new Registry interface for the given Storage. Any mismatched
// types will panic.
func NewRegistry(s rest.StandardStorage) Registry {
return &storage{s}
}
存储是对例如an ETCD storage的REST调用。
func newStorage(t *testing.T) (*REST, *etcdtesting.EtcdTestServer) {
etcdStorage, server := registrytest.NewEtcdStorage(t, "")
所以这受到 limits of an ETCD 的限制,而不是条目数量,而是存储尺寸。