Last active
May 10, 2022 03:38
-
-
Save dkeightley/1db47af48d3d1893cfd597d54f265d1b to your computer and use it in GitHub Desktop.
Istio overlay for HPA minReplicas
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: install.istio.io/v1alpha1 | |
kind: IstioOperator | |
spec: | |
components: | |
ingressGateways: | |
- enabled: true | |
name: istio-ingressgateway | |
k8s: | |
hpaSpec: | |
maxReplicas: 10 # ... default 5 | |
minReplicas: 2 # ... default 1 | |
egressGateways: | |
- enabled: true | |
name: istio-egressgateway | |
k8s: | |
hpaSpec: | |
maxReplicas: 10 # ... default 5 | |
minReplicas: 2 # ... default 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment