Created
May 2, 2020 07:14
-
-
Save vamsijakkula/a61c70ce6b6899847bca8a5be6b64239 to your computer and use it in GitHub Desktop.
Horizontal Pod Autoscaler
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: autoscaling/v1 | |
kind: HorizontalPodAutoscaler | |
metadata: | |
name: php-apache | |
spec: | |
scaleTargetRef: | |
apiVersion: apps/v1 | |
kind: Deployment | |
name: php-apache | |
minReplicas: 1 | |
maxReplicas: 10 | |
targetCPUUtilizationPercentage: 50 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment