. Pod : A thin wrapper around one or more containers
2. Service: Maps a fixed IP address to a logical group of pods
3. Volume: a directory with data that is accessible across multiple containers in a Pod
4. Namespace: a way to organize clusters into virtual sub-clusters
5. ReplicaSets: Ensures a defined number of pods are always running
6. Replica Controller : Ensures a defined number of pods are always running
7. Secrets: an object that contains a small amount of sensitive data such as a password, a tok1en, or a key
8. Config Maps: an API object that lets you store configuration for other objects to use
9. Deployments : Details how to roll out (or roll back) across versions of your application
10. StatefulSets: the workload API object used to manage stateful applications
11. Jobs: Ensures a pod properly runs to completion and stop after process complete it's execution
12. Daemon Sets: Implements a single instance of a pod on all (or filtered subset of) worker node(s)
13. Label: Key/Value pairs used for association and filtering