Skip to content

Instantly share code, notes, and snippets.

@mhmxs
Created March 19, 2022 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mhmxs/d18ef95bc61d4c653b85aa3235d7d3e6 to your computer and use it in GitHub Desktop.
Save mhmxs/d18ef95bc61d4c653b85aa3235d7d3e6 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
labels:
app: nginx
spec:
replicas: 3
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:1.14.2
ports:
- containerPort: 80
topologySpreadConstraints:
- labelSelector:
matchLabels:
app: nginx
maxSkew: 1
topologyKey: kubernetes.io/hostname
whenUnsatisfiable: DoNotSchedule
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment