Skip to content

Instantly share code, notes, and snippets.

@larkintuckerllc
Created September 14, 2025 15:24
Show Gist options
  • Save larkintuckerllc/ebf289309661a6e55ff43e8572fadaf6 to your computer and use it in GitHub Desktop.
Save larkintuckerllc/ebf289309661a6e55ff43e8572fadaf6 to your computer and use it in GitHub Desktop.
apiVersion: v1
kind: Pod
metadata:
annotations:
example.com/nodepool: high-cpu
name: my-workload
namespace: my-namespace
spec:
affinity:
nodeAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
nodeSelectorTerms:
- matchExpressions:
- key: zone
operator: In
values:
- us-central1-a
- matchExpressions:
- key: role
operator: In
values:
- my-role
containers:
- name: ubuntu-container
image: ubuntu:latest
command: ["/bin/bash"]
args: ["-c", "sleep infinity"]
tolerations:
- key: hello
operator: Equal
value: world
effect: NoSchedule
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment