Pod is a single instance of an application in Kubernetes and it's smallest object you can create. YAML Manifest: ``` apiVersion: v1 kind: Pod metadata: name: nginx spec: containers: - name: nginx image: nginx:1.14.2 ports: - containerPort: 80 ```