Tag: K8s

  • What are annotations in Kubernetes (k8s)? What is their purpose?

    In Kubernetes, annotations are metadata that can be added to objects in the cluster, such as pods, services, and deployments. Annotations are key-value pairs that are stored in the object’s metadata and are not used by the Kubernetes control plane. Annotations are intended to be used to store information that is relevant to the object, […]

  • What are labels & selectors in Kubernetes (k8s)?

    In Kubernetes, labels are metadata that can be added to objects in the cluster, such as pods, services, and deployments. Labels are key-value pairs that are stored in the object’s metadata and are used by the Kubernetes control plane to identify and manage objects in the cluster. Labels are intended to be used to store […]