Skip to Content
Learn OpenShift
book

Learn OpenShift

by Denis Zuev, Artemii Kropachev, Aleksey Usov
July 2018
Intermediate to advanced
504 pages
11h 34m
English
Packt Publishing
Content preview from Learn OpenShift

Memory-based autoscaling

Unlike autoscaling based on CPU utilization, memory-based autoscaling can only be enabled by creating a HorizontalPodAutoscaler from a raw YAML/JSON definition:

# cat hpa-memory.yml kind: HorizontalPodAutoscalerapiVersion: autoscaling/v1metadata:  name: hpa-httpd-memoryspec:  scaleTargetRef:    apiVersion: v1    kind: DeploymentConfig    name: httpd  minReplicas: 2  maxReplicas: 4  metrics:  - type: Resource    resource:      name: memory      targetAverageUtilization: 10

Let's enable autoscaling now:

# oc create -f hpa-memory.yml horizontalpodautoscaler "hpa-httpd-memory" created

Give it a minute or two to pick up the metrics from Heapster and you will be able to see how the current memory utilization is different from the target:

# oc get ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Operating OpenShift

Operating OpenShift

Rick Rackow, Manuel Dewald
OpenShift for Developers, 2nd Edition

OpenShift for Developers, 2nd Edition

Joshua Wood, Brian Tannous
Kubernetes: Up and Running, 2nd Edition

Kubernetes: Up and Running, 2nd Edition

Brendan Burns, Joe Beda, Kelsey Hightower

Publisher Resources

ISBN: 9781788992329Supplemental Content