Skip to content

Commit

Permalink
fixup! test/library: set keycloak cache to local
Browse files Browse the repository at this point in the history
  • Loading branch information
liouk committed Oct 21, 2024
1 parent eabceb1 commit dcd3785
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/library/keycloakidp.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ func AddKeycloakIDP(
{Name: "KC_HEALTH_ENABLED", Value: "true"},
{Name: "KC_HOSTNAME_STRICT", Value: "false"},
{Name: "KC_PROXY", Value: "reencrypt"},
{Name: "KC_CACHE", Value: "local"},
{Name: "KC_HTTPS_CERTIFICATE_FILE", Value: "/etc/x509/https/tls.crt"},
{Name: "KC_HTTPS_CERTIFICATE_KEY_FILE", Value: "/etc/x509/https/tls.key"},
},
Expand All @@ -96,13 +95,13 @@ func AddKeycloakIDP(
corev1.ResourceRequirements{
Requests: corev1.ResourceList{
"cpu": resource.MustParse("500m"),
"memory": resource.MustParse("700Mi"),
"memory": resource.MustParse("1Gi"),
},
},
&readinessProbe,
&livenessProbe,
true,
"/opt/keycloak/bin/kc.sh", "start",
"/opt/keycloak/bin/kc.sh", "start-dev",
)
cleanups = []func(){cleanup}
defer func() {
Expand Down

0 comments on commit dcd3785

Please sign in to comment.