Intermediate Kubernetes
Q56 / 100

What is a "sidecar container" pattern?

Correct! Well done.

Incorrect.

The correct answer is B) A secondary container that runs alongside the main application container in the same Pod, providing supporting functionality like logging, monitoring, or proxying, sharing the Pod's network and storage

B

Correct Answer

A secondary container that runs alongside the main application container in the same Pod, providing supporting functionality like logging, monitoring, or proxying, sharing the Pod's network and storage

Explanation

Sidecars run alongside the main container, sharing its network namespace and volumes, commonly used for service mesh proxies (e.g. Envoy in Istio), log forwarders, or config reloaders.

Progress
56/100