Skip to content

Instantly share code, notes, and snippets.

@larkintuckerllc
Created September 14, 2025 09:53
Show Gist options
  • Save larkintuckerllc/3320941b9399b7e196d0ea234dffaff5 to your computer and use it in GitHub Desktop.
Save larkintuckerllc/3320941b9399b7e196d0ea234dffaff5 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: my-workload
namespace: my-namespace
labels:
app: my-workload
spec:
replicas: 3
selector:
matchLabels:
app: my-workload
template:
metadata:
annotations:
example.com/nodepool: high-cpu
labels:
app: my-workload
spec:
containers:
- name: ubuntu-container
image: ubuntu:latest
command: ["/bin/bash"]
args: ["-c", "sleep infinity"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment