Skip to content

Instantly share code, notes, and snippets.

@jbrownsc
Created April 21, 2020 04:49
Show Gist options
  • Save jbrownsc/87a294e4c346e5ccb5856a6492035f7d to your computer and use it in GitHub Desktop.
Save jbrownsc/87a294e4c346e5ccb5856a6492035f7d to your computer and use it in GitHub Desktop.
This should trigger a cluster-autoscaler scale up event
apiVersion: apps/v1 # for versions before 1.9.0 use apps/v1beta2
kind: Deployment
metadata:
name: nginx
spec:
selector:
matchLabels:
app: nginx
replicas: 50 # tells deployment to run 2 pods matching the template
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:latest
resources:
requests:
cpu: 1
memory: 1G
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment