SGShyla Ginnotesshyla.hashnode.dev·Mar 18 · 2 min read“Understanding Resource Requests vs Limits in Kubernetes Containers”In container, 'Request' resources can't be shared ,but 'limits' resources can be shared. If container is running, scheduler always guarantee the required 'request' resources, which is necessary for t00
SGShyla Ginnotesshyla.hashnode.dev·Mar 16 · 2 min readMinimal OS and logical isolation of ContainersMinimal OS: The container image includes just enough file system and libraries to run an application (but not its own kernel). The File System is bin -- essential user level libraries sbin -- system10
SGShyla Ginnotesshyla.hashnode.dev·Mar 14 · 2 min readContainersImage: Its Readable or Read only Template, that contains everything needed to run an application, includes the code, runtime, libraries, environment variables and configuration files. Purpose: It serv00