UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 94b52a54 authored by Micah Nagel's avatar Micah Nagel :moneybag:
Browse files

Merge branch '1343-keycloak-hpa' into 'master'

Adding keycloak autoscaling info to docs and examples

See merge request !2517
parents 48299deb e0e49ffd
No related branches found
No related tags found
1 merge request!2517Adding keycloak autoscaling info to docs and examples
......@@ -55,7 +55,11 @@ addons:
-----END CERTIFICATE-----
values:
replicas: 3
#replicas: 3
autoscaling:
enabled: true
minReplcias: 2
maxReplicas: 5
command:
- "/opt/keycloak/bin/kc.sh"
args:
......
......@@ -259,6 +259,18 @@ addons:
replicas: 3
```
The Keycloak package also comes with a HorizontalPodAutoscaler resource which can be enabled. Enabling the HPA will overwrite the `replicas` key shown above:
```yaml
addons:
keycloak:
values:
autoscaling:
enabled: true
minReplicas: 2
maxReplicas: 4
```
## Dependent Packages
- Istio for ingress
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment