chore: set nodename as a variable

This commit is contained in:
Stephanie Baltus 2019-05-10 14:31:03 +02:00
parent 8f3ee5bd3f
commit e8adc8587a
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ kubectl get nodes --show-labels
You can add labels to a node with:
```bash
kubectl label nodes node1 gpu=yes
kubectl label nodes [nodeName] gpu=yes
```
Here we add the label `gpu` with value `yes` to the node `node1`.