Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package/crossplane.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ kind: Function
metadata:
name: function-appcat
spec:
image: ghcr.io/vshn/appcat:latest
image: ghcr.io/vshn/appcat:keycloak_svc_monitor
crossplane:
version: ">=1.14.0"
7 changes: 2 additions & 5 deletions pkg/comp-functions/functions/vshnkeycloak/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -324,8 +324,6 @@ func newValues(ctx context.Context, svc *runtime.ServiceRuntime, comp *vshnv1.VS
"/opt/keycloak/bin/kc-with-setup.sh",
"--verbose",
"start",
"--http-enabled=true",
"--http-port=8080",
"--hostname-strict=false",
"--spi-events-listener-jboss-logging-success-level=info",
"--spi-events-listener-jboss-logging-error-level=warn",
Expand All @@ -344,10 +342,10 @@ func newValues(ctx context.Context, svc *runtime.ServiceRuntime, comp *vshnv1.VS
"enabled": true,
},
"extraServiceMonitor": map[string]any{
"enabled": false,
"enabled": true,
},
"serviceMonitor": map[string]any{
"enabled": false,
"enabled": true,
},
"resources": map[string]any{
"requests": map[string]any{
Expand Down Expand Up @@ -390,7 +388,6 @@ func newValues(ctx context.Context, svc *runtime.ServiceRuntime, comp *vshnv1.VS
},
"http": map[string]any{
"relativePath": comp.Spec.Parameters.Service.RelativePath,
// "internalPort": "http-internal",
},
"podSecurityContext": nil,
}
Expand Down