---
title: "Calico Cloud automatic labels"
description: "Reference list of automatic labels Calico Cloud attaches to resources, useful as selectors in policy rules."
product: "Calico Cloud"
version: "v23.0.1"
section: "Network policy"
canonical_url: "https://docs.tigera.io/calico-cloud/network-policy/beginners/calico-labels"
---

# Calico Cloud automatic labels

As a convenience, Calico Cloud provides immutable labels that are used for specific resources when evaluating selectors in policies. The labels make it easier to match resources in common ways (such as matching a namespace by name).

## Labels for matching namespaces

The label `projectcalico.org/name` is set to the name of the namespace. This allows for matching namespaces by name when using a `namespaceSelector` field.

For example, the following GlobalNetworkPolicy applies to workloads with label, `color: red` in namespaces named, `"foo"` and `"bar"`. The policy allows ingress traffic to port 8080 from all workloads in a third namespace named, `"baz"`:

```yaml
apiVersion: projectcalico.org/v3
kind: GlobalNetworkPolicy
metadata:
  name: foo-and-bar
spec:
  namespaceSelector: projectcalico.org/name in {"foo", "bar"}
  selector: color == "red"
  types:
  - Ingress
  ingress:
  - action: Allow
    source:
      namespaceSelector: projectcalico.org/name == "baz"
    destination:
      ports:
      - 8080
```

Be aware that the default values for `namespaceSelector` for NetworkPolicy and GlobalNetworkPolicy are different. For example:

**In a network policy**,

```yaml
namespaceSelector:  <empty>
selector: foo == "bar"
```

means "resources in the same namespace as the network policy that matches foo == 'bar'".

**In a global network policy**,

```yaml
namespaceSelector:  <empty>
selector: foo == "bar"
```

means "resources in any namespace and non-namespaced resources that match foo == 'bar'".

Further,

```yaml
namespaceSelector: projectcalico.org/name == "some-namespace"
selector: foo == "bar"
```

is equivalent to:

```yaml
namespaceSelector: <empty>
selector: (foo == "bar") && (projectcalico.org/namespace == "some-namespace")
```

### Labels for matching service accounts

Similarly, the `projectcalico.org/name` label is applied to ServiceAccounts and allows for matching by name in a `serviceAccountSelector`.

### Kubernetes labels for matching namespaces

Kubernetes also has [automatic labeling](https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/#automatic-labelling), for example `kubernetes.io/metadata.name`. The Kubernetes namespace label serves the same purpose and can be used in the same way as the Calico Cloud label. The `projectcalico.org/name` label predates the automatic Kubernetes label.

## Labels for matching host endpoints

[Automatic HostEndpoints](https://docs.tigera.io/calico-cloud/network-policy/hosts/kubernetes-nodes.md) use the following label to differentiate them from regular HostEndpoints:

- `projectcalico.org/created-by: calico-kube-controllers`

## Use the correct selector with labels in policies

Calico Cloud labels must be used with the correct selector or the policy will not work as designed (and there are no error messages in the web console or when applying the YAML).

| Calico label                  | Usage requirements                                                                                                                                                     | Use in these resources...                                                                                                                                                                   |
| ----------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `projectcalico.org/name`      | Use with a **namespaceSelector** or **serviceAccountSelector**.                                                                                                        | - Network policy - Staged network policy Namespaced resources that apply only to workload endpoint resources in the namespace.                                                              |
| `projectcalico.org/namespace` | Use only with selectors. Use the label as the label name, and a namespace name as the value to compare against (for example projectcalico.org/namespace == "default"). | - Global network policy - Staged global network policy Cluster-wide (non-namespaced) resources that apply to workload endpoint resources in all namespaces, and to host endpoint resources. |
