Roman Gherta

Results 6 comments of Roman Gherta

Actually I just checked the standalone-ha.xml and this property is set by default to false ``` sh-4.4$ cat standalone/configuration/standalone-ha.xml | grep forceBackendUrlToFrontendUrl ``` So why accessing in the browser https://admin.keycloak:8443...

An update on this problem: my goal was to set frontendUrl and adminUrl using the legacy container image The solution is to mount wildfly cli scripts in /opt/jboss/startup-scripts/ that alter...

The following securityContext is required by pod-security.kubernetes.io/enforce: restricted pod-security.kubernetes.io/enforce-version: v1.23 securityContext: allowPrivilegeEscalation: false readOnlyRootFilesystem: true runAsNonRoot: true seccompProfile: type: RuntimeDefault capabilities: drop: ["ALL"] For the operator I can configure through...

Hi @gabrielmccoll When you provision from virt-manager, you create a VM with a cdrom attached with an install ISO and an extra disk volume where the actual filesystem will be...

To build an image that has the entire vm filesystem, run this command ``` sudo virt-install --connect qemu:///system \ --name tmpvm \ --memory=2048 \ --vcpus=2 \ --location fedora40-server.iso \ --disk...