Skip to content

Commit

Permalink
Use http-pool-max-threads instead of `QUARKUS_THREAD_POOL_MAX_THREA…
Browse files Browse the repository at this point in the history
…DS` (#710)

Signed-off-by: Michal Hajas <mhajas@redhat.com>
  • Loading branch information
mhajas committed Feb 12, 2024
1 parent ed353b3 commit 30c0c64
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions provision/minikube/keycloak/templates/keycloak.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ spec:
- name: storage-hotrod-password
value: admin
{{ end }}
{{ if .Values.disableCaches }}
{{- if .Values.disableCaches }}
- name: cache-realm-enabled
value: 'false'
- name: cache-user-enabled
Expand All @@ -85,6 +85,8 @@ spec:
value: json
- name: metrics-enabled # <3>
value: 'true'
- name: http-pool-max-threads # <4>
value: {{ div 200 .Values.instances | quote }}
{{- if .Values.infinispan.remoteStore.enabled }}
# tag::keycloak-ispn[]
- name: remote-store-host # <2>
Expand Down Expand Up @@ -155,8 +157,6 @@ spec:
imagePullPolicy: Never
{{ end }}
env:
- name: 'QUARKUS_THREAD_POOL_MAX_THREADS' # <4>
value: {{ div 200 .Values.instances | quote }}
# end::keycloak[]
# We want to have an externally provided username and password, therefore, we override those two environment variables
- name: KEYCLOAK_ADMIN
Expand Down

0 comments on commit 30c0c64

Please sign in to comment.