# Modifying Resources ## Scale a Deployment Scale the {py:class}`Depoyment ` `metrics-server` using {py:func}`Deployment.scale() ` in the Namespace `kube-system` to `1` replica. `````{tab-set} ````{tab-item} Sync :sync: sync ```python from kr8s.objects import Deployment deploy = Deployment.get("metrics-server", namespace="kube-system") deploy.scale(1) ``` ```` ````{tab-item} Async :sync: async ```python from kr8s.asyncio.objects import Deployment deploy = await Deployment.get("metrics-server", namespace="kube-system") await deploy.scale(1) ``` ```` ````` ## Add Pod label Add the label `foo` with the value `bar` to an existing {py:class}`Pod ` using {py:func}`Pod.label() `. `````{tab-set} ````{tab-item} Sync :sync: sync ```python from kr8s.objects import Pod pod = Pod("kube-apiserver", namespace="kube-system") pod.label({"foo": "bar"}) ``` ```` ````{tab-item} Async :sync: async ```python from kr8s.asyncio.objects import Pod pod = await Pod("kube-apiserver", namespace="kube-system") await pod.label({"foo": "bar"}) ``` ```` ````` ## Replace all Pod labels Using the [JSON 6902](https://jsonpatch.com/) style patching replace all {py:class}`Pod ` labels with `{"patched": "true"}` using {py:func}`Pod.patch() `. `````{tab-set} ````{tab-item} Sync :sync: sync ```python from kr8s.objects import Pod pod = Pod("my-pod", namespace="kube-system") pod.patch( [{"op": "replace", "path": "/metadata/labels", "value": {"patched": "true"}}], type="json", ) ``` ```` ````{tab-item} Async :sync: async ```python from kr8s.asyncio.objects import Pod pod = await Pod("my-pod", namespace="kube-system") await pod.patch( [{"op": "replace", "path": "/metadata/labels", "value": {"patched": "true"}}], type="json", ) ``` ```` ````` ## Cordon a Node Cordon a {py:class}`Node ` to mark it as unschedulable with {py:func}`Node.cordon() `. `````{tab-set} ````{tab-item} Sync :sync: sync ```python from kr8s.objects import Node node = Node("k8s-node-1") node.cordon() ``` ```` ````{tab-item} Async :sync: async ```python from kr8s.asyncio.objects import Node node = await Node("k8s-node-1") await node.cordon() ``` ```` `````