Answer a question

Though resourceQuotas may limit the number of configmaps in a namespace, is there any such option to limit the size of the individual configmap? I will not like some user to start uploading large text files as configmaps.

What is the max size of ConfigMap etcd support? If there is a reasonable limit on the etcd side, should be fine then.

Answers

There are no hard-limits on either the ConfigMap or Secret objects as of this writing.

There's, however, a 1MB limit from the etcd side which is where Kubernetes stores its objects.

From the API side, if you actually see the API code and the ConfigMap type, you'll see that its data field is Golang map of strings so this appears memory bound and managed at runtime unless somewhere else it gets defined with make(). Technically the max size for the number of keys on hashmap is the map length which is an int and the max value is explained here: Maximum number of elements in map. That would also be the theoretical limit for the value of data as the maximum value for len(string).

If you actually want to get more insights from the API side where the kube-apiserver receives protobufs (or JSON for that matter) you can take a look at the google protobuf maximum size. That will give you some measure as to the limitation of sending the data field through the wire. There may be other limitation from the kube-apiserver itself when it comes to processing any large message.

Logo

K8S/Kubernetes社区为您提供最前沿的新闻资讯和知识内容

更多推荐