Skip to content

Instantly share code, notes, and snippets.

@dkeightley
Last active May 10, 2022 03:38
Show Gist options
  • Save dkeightley/1db47af48d3d1893cfd597d54f265d1b to your computer and use it in GitHub Desktop.
Save dkeightley/1db47af48d3d1893cfd597d54f265d1b to your computer and use it in GitHub Desktop.
Istio overlay for HPA minReplicas
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