-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
external-usermanagement deployment example not working? #688
Comments
curl -k https://keycloak.kube.owncloud.test/
Internal Server Error So Keycloak is just responding with that error. Only change to the code in here. I applied the following diff to make it "k3d-compliant": diff --git a/deployments/external-user-management/helmfile.yaml b/deployments/external-user-management/helmfile.yaml
index 671f51b..786a80f 100644
--- a/deployments/external-user-management/helmfile.yaml
+++ b/deployments/external-user-management/helmfile.yaml
@@ -338,7 +338,7 @@ releases:
- externalDomain: ocis.kube.owncloud.test
- ingress:
enabled: true
- ingressClassName: nginx
+ #ingressClassName: nginx
annotations:
nginx.ingress.kubernetes.io/proxy-body-size: 1024m
- insecure:
@@ -371,26 +371,38 @@ releases:
nats:
persistence:
enabled: true
+ accessModes:
+ - ReadWriteOnce
search:
persistence:
enabled: true
+ accessModes:
+ - ReadWriteOnce
storagesystem:
persistence:
enabled: true
+ accessModes:
+ - ReadWriteOnce
storageusers:
persistence:
enabled: true
+ accessModes:
+ - ReadWriteOnce
thumbnails:
persistence:
enabled: true
+ accessModes:
+ - ReadWriteOnce
web:
persistence:
enabled: true
+ accessModes:
+ - ReadWriteOnce
config:
oidc:
webClientID: web |
@d7oc Are all the pods up and running needed for Keycloak? Postgres operator, postgres pods, postgres pooler, ... ? |
Yes everything is running:
There is also no error logged when Only non-
|
At least from the database I can also connect fine:
|
Also works with a debug container spawned inside the keycloak pod. |
This is somehow related to the pooler:
The same works for both hosts if user |
The keycloak example configuration doesn't work anymore and needs to be fixed.
The text was updated successfully, but these errors were encountered: