sh-4.4$ cat /probes/..data/liveness_probe.sh #!/bin/bash set -e if [ -d "/opt/eap/bin" ]; then /opt/eap/bin/livenessProbe.sh else curl -s --max-time 10 --fail https://usg01.safelinks.protection.office365.us/?url=http%3A%2F%2F10.131.32.17%3A8080%2Fauth&data=05%7C01%7Cdwayne.page3.civ%40mail.mil%7C5727b1b34f5a40fe1bd508db1b4c9856%7C102d0191eeae4761b1cb1a83e86ef445%7C0%7C0%7C638133788151281413%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000%7C%7C%7C&sdata=yo2dIjCvUGtEn%2FnQEpaf3ioZJD%2BILcJMjJg3sYo58eI%3D&reserved=0 > /dev/null fi sh-4.4$ cat /probes/..data/readiness_probe.sh #!/bin/bash set -e if [ -d "/opt/eap/bin" ]; then /opt/eap/bin/readinessProbe.sh else DATASOURCE_POOL_TYPE="data-source" DATASOURCE_POOL_NAME="KeycloakDS" PASSWORD_FILE="/tmp/management-password" PASSWORD="not set" USERNAME="admin" AUTH_STRING="" pushd /opt/jboss/keycloak/bin > /dev/null if [ -f "" ]; then PASSWORD= else PASSWORD=93gCInWFswv7vUgbDiUYmRAV4abAdAKA ./add-user.sh -u -p > /dev/null echo > fi AUTH_STRING="--digest -u :" curl -s --max-time 10 --fail http://localhost:9990/management --header "Content-Type: application/json" -d "{\"operation\":\"test-connection-in-pool\", \"address\":[\"subsystem\",\"datasources\",\"\",\"\"], \"json.pretty\":1}" curl -s --max-time 10 --fail https://usg01.safelinks.protection.office365.us/?url=http%3A%2F%2F10.131.32.17%3A8080%2Fauth&data=05%7C01%7Cdwayne.page3.civ%40mail.mil%7C5727b1b34f5a40fe1bd508db1b4c9856%7C102d0191eeae4761b1cb1a83e86ef445%7C0%7C0%7C638133788151281413%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000%7C%7C%7C&sdata=yo2dIjCvUGtEn%2FnQEpaf3ioZJD%2BILcJMjJg3sYo58eI%3D&reserved=0 > /dev/null fi sh-4.4$ env | grep -i fips JAVA_TOOL_OPTIONS=-Dcom.redhat.fips=false sh-4.4$ curl -v http://$(hostname -i):8080/auth/ * Trying 172.28.8.125... * TCP_NODELAY set * Connected to 172.28.8.125 (172.28.8.125) port 8080 (#0) > GET /auth/ HTTP/1.1 > Host: 172.28.8.125:8080 > User-Agent: curl/7.61.1 > Accept: */* > < HTTP/1.1 200 OK < Cache-Control: no-cache, must-revalidate, no-transform, no-store < X-XSS-Protection: 1; mode=block < X-Frame-Options: SAMEORIGIN < Referrer-Policy: no-referrer < Content-Security-Policy: frame-src 'self'; frame-ancestors 'self'; object-src 'none'; < Date: Thu, 02 Mar 2023 18:40:54 GMT < Connection: keep-alive < X-Robots-Tag: none < Strict-Transport-Security: max-age=31536000; includeSubDomains < X-Content-Type-Options: nosniff < Content-Type: text/html;charset=utf-8 < Content-Length: 3317 < Welcome to Red Hat Single Sign-On
rh-sso

Welcome to Red Hat Single Sign-On

Documentation

User Guide, Admin REST API and Javadocs
* Connection #0 to host 172.28.8.125 left intact sh-4.4$