{"level":"debug","ts":"2026-07-27T19:36:05Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"34b959c5-c1c6-484a-bd01-a70caa74398e","config":{"Name":"auth-valid","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"allow {\n object.get(input.auth.metadata, \"apiKeyValidation\", {})\n input.auth.metadata.apiKeyValidation.valid == true\n}\nallow {\n not input.auth.metadata.apiKeyValidation\n}","ExternalSource":null,"AllValues":false},"JSON":null,"KubernetesAuthz":null,"Authzed":null},"object":{"allow":true}} {"level":"debug","ts":"2026-07-27T19:36:05Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"34b959c5-c1c6-484a-bd01-a70caa74398e","config":{"Name":"tenant-gateway-isolation","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":null,"OPA":{"Rego":"# Tenant hostname isolation stub.\n# Replace with a real maas-api call to validate that the API key's tenant\n# matches the gateway hostname (prevents Coke key on Pepsi gateway).\nallow { true }","ExternalSource":null,"AllValues":false},"JSON":null,"KubernetesAuthz":null,"Authzed":null},"object":{"allow":true}} {"level":"debug","ts":"2026-07-27T19:36:05Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"34b959c5-c1c6-484a-bd01-a70caa74398e","config":{"Name":"subscription-valid","Priority":0,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Metrics":false,"Cache":{},"OPA":{"Rego":"allow {\n\tobject.get(input.auth.metadata[\"subscription-info\"], \"name\", \"\") != \"\"\n\tobject.get(input.auth.metadata[\"subscription-info\"], \"error\", \"\") == \"\"\n\tphase := object.get(input.auth.metadata[\"subscription-info\"], \"phase\", \"\")\n\tany([phase == \"Active\", phase == \"Degraded\"])\n\tobject.get(input.auth.metadata[\"subscription-info\"], \"deletionTimestamp\", \"\") == \"\"\n}","ExternalSource":null,"AllValues":false},"JSON":null,"KubernetesAuthz":null,"Authzed":null},"object":{"allow":true}} {"level":"debug","ts":"2026-07-27T19:36:05Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"34b959c5-c1c6-484a-bd01-a70caa74398e","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"llm/e2e-trlp-test-simulated\":{\"users\":[\"system:serviceaccount:llm:e2e-trlp-degraded-sa\"],\"groups\":null},\"llm/facebook-opt-125m-simulated\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"llm/premium-simulated-simulated-premium\":{\"users\":[\"system:serviceaccount:premium-users-namespace:premium-service-account\"],\"groups\":[\"premium-user\"]},\"publishers/llm/models/facebook/opt-125m\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/llm/models/facebook/opt-125m-premium\":{\"users\":[\"system:serviceaccount:premium-users-namespace:premium-service-account\"],\"groups\":[\"premium-user\"]},\"publishers/llm/models/test/e2e-trlp-test-model\":{\"users\":[\"system:serviceaccount:llm:e2e-trlp-degraded-sa\"],\"groups\":null}}\n\nrequest_path := object.get(input.context.request.http, \"path\", \"\")\nrequest_headers := object.get(input.context.request.http, \"headers\", {})\n\npath_parts := [p | p := split(request_path, \"/\")[_]; p != \"\"]\n\npath_model_identity := sprintf(\"%s/%s\", [path_parts[0], path_parts[1]]) {\n\tcount(path_parts) >= 2\n\tpath_parts[0] != \"v1\"\n\tpath_parts[0] != \"maas-api\"\n}\n\nheader_model_identity := object.get(request_headers, \"x-gateway-model-name\", \"\")\n\nmodel_identity := path_model_identity {\n\tpath_model_identity != \"\"\n} else := header_model_identity {\n\theader_model_identity != \"\"\n} else := \"\"\n\nusername := input.auth.metadata.apiKeyValidation.username\n\t{ object.get(input.auth, \"metadata\", {}).apiKeyValidation.username != \"\" }\nelse := input.auth.identity.preferred_username\n\t{ object.get(input.auth, \"identity\", {}).preferred_username != \"\" }\nelse := input.auth.identity.sub\n\t{ object.get(input.auth, \"identity\", {}).sub != \"\" }\nelse := input.auth.identity.user.username\n\t{ object.get(input.auth, \"identity\", {}).user.username != \"\" }\nelse := \"\"\n\ngroups := input.auth.metadata.apiKeyValidation.groups\n\t{ object.get(input.auth, \"metadata\", {}).apiKeyValidation.groups != [] }\nelse := input.auth.identity.groups\n\t{ object.get(input.auth, \"identity\", {}).groups != [] }\nelse := input.auth.identity.user.groups\n\t{ object.get(input.auth, \"identity\", {}).user.groups != [] }\nelse := []\n\nmodel_rules := object.get(model_access, model_identity, null)\n\n# Management endpoints (e.g. /v1/models, /maas-api/v1/api-keys) carry no model context.\n# Allow them here; subscription and rate-limit checks are gated by model-route conditions.\nallow {\n\tmodel_identity == \"\"\n}\n\n# Inference path: deny by default when no MaaSAuthPolicy covers this model.\n# Allow only when the caller's username or a group is explicitly listed.\nallow {\n\tmodel_rules != null\n\tmodel_rules.users[_] == username\n}\n\nallow {\n\tmodel_rules != null\n\tg := groups[_]\n\tmodel_rules.groups[_] == g\n}\n","ExternalSource":null,"AllValues":false},"JSON":null,"KubernetesAuthz":null,"Authzed":null},"object":{"allow":true}} {"level":"debug","ts":"2026-07-27T19:36:05Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"34b959c5-c1c6-484a-bd01-a70caa74398e","config":{"Name":"X-MaaS-Subscription","Priority":0,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Wrapper":"httpHeader","WrapperKey":"X-MaaS-Subscription","Metrics":false,"Cache":null,"Wristband":null,"DynamicJSON":null,"Plain":{"Value":{}}},"object":"e2e-trlp-degraded-sub"} {"level":"debug","ts":"2026-07-27T19:36:05Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"34b959c5-c1c6-484a-bd01-a70caa74398e","config":{"Name":"X-MaaS-Group","Priority":0,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Wrapper":"httpHeader","WrapperKey":"X-MaaS-Group","Metrics":false,"Cache":null,"Wristband":null,"DynamicJSON":null,"Plain":{"Value":{}}},"object":"[\"system:authenticated\",\"system:serviceaccounts\",\"system:serviceaccounts:llm\",\"system:authenticated\"]"} {"level":"debug","ts":"2026-07-27T19:36:05Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"34b959c5-c1c6-484a-bd01-a70caa74398e","config":{"Name":"X-MaaS-Username","Priority":0,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Wrapper":"httpHeader","WrapperKey":"X-MaaS-Username","Metrics":false,"Cache":null,"Wristband":null,"DynamicJSON":null,"Plain":{"Value":{"Static":null,"Pattern":"auth.metadata.apiKeyValidation.username"}}},"object":"system:serviceaccount:llm:e2e-trlp-degraded-sa"} {"level":"debug","ts":"2026-07-27T19:36:05Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"34b959c5-c1c6-484a-bd01-a70caa74398e","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"subscription_error_message","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"userid","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"groups","Value":{}},{"Name":"keyName","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"keyId","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"subscription_error","Value":{}}]},"Plain":null},"object":{"groups":["system:authenticated","system:serviceaccounts","system:serviceaccounts:llm","system:authenticated"],"groups_str":"system:authenticated,system:serviceaccounts,system:serviceaccounts:llm,system:authenticated","keyId":"8f9bbed3-40db-468e-ae64-29eca0593a3b","keyName":"e2e-trlp-test-key","selected_subscription":"e2e-trlp-degraded-sub","selected_subscription_key":"models-as-a-service/e2e-trlp-degraded-sub@llm/e2e-trlp-test-simulated","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"model_name":"publishers/llm/models/test/e2e-trlp-test-model","name":"e2e-trlp-test-simulated","source":"internal","token_rate_limits":[{"limit":100,"window":"1m"}]}],"name":"e2e-trlp-degraded-sub","namespace":"models-as-a-service","phase":"Active","ready":true,"resolvedModel":"llm/e2e-trlp-test-simulated"},"userid":"system:serviceaccount:llm:e2e-trlp-degraded-sa"}} {"level":"info","ts":"2026-07-27T19:36:05Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"34b959c5-c1c6-484a-bd01-a70caa74398e","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-27T19:36:05Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"34b959c5-c1c6-484a-bd01-a70caa74398e","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-27T19:36:25Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"6568fbc7-1447-452c-bb09-159bfff34d29","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.10:43348","PortSpecifier":{"PortValue":43348}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.28:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"6568fbc7-1447-452c-bb09-159bfff34d29","method":"DELETE","path":"/maas-api/v1/api-keys/e2e-trlp-test-key","host":"maas.apps.a71d38a3-f205-4819-8dea-ba8e8a21d04f.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-27T19:36:25Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"6568fbc7-1447-452c-bb09-159bfff34d29","object":"source:{address:{socket_address:{address:\"10.133.0.10:43348\" port_value:43348}}} destination:{address:{socket_address:{address:\"10.133.0.28:443\" port_value:443}}} request:{time:{seconds:1785180985 nanos:559500742} http:{id:\"6568fbc7-1447-452c-bb09-159bfff34d29\" method:\"DELETE\" headers:{key:\":authority\" value:\"maas.apps.a71d38a3-f205-4819-8dea-ba8e8a21d04f.prod.konfluxeaas.com\"} headers:{key:\":method\" value:\"DELETE\"} headers:{key:\":path\" value:\"/maas-api/v1/api-keys/e2e-trlp-test-key\"} headers:{key:\":scheme\" value:\"https\"} headers:{key:\"accept\" value:\"*/*\"} headers:{key:\"accept-encoding\" value:\"gzip, deflate\"} headers:{key:\"authorization\" value:\"***REDACTED***\"} headers:{key:\"content-length\" value:\"0\"} headers:{key:\"forwarded\" value:\"for=44.212.242.249;host=maas.apps.a71d38a3-f205-4819-8dea-ba8e8a21d04f.prod.konfluxeaas.com;proto=https\"} headers:{key:\"user-agent\" value:\"python-requests/2.32.5\"} headers:{key:\"x-envoy-decorator-operation\" value:\"maas-api.odh-ai-gateway-infra.svc.cluster.local:8443/*\"} headers:{key:\"x-envoy-external-address\" value:\"10.133.0.10\"} headers:{key:\"x-envoy-peer-metadata\" value:\"ChoKCkNMVVNURVJfSUQSDBoKS3ViZXJuZXRlcwqLAQoGTEFCRUxTEoABKn4KSwofc2VydmljZS5pc3Rpby5pby9jYW5vbmljYWwtbmFtZRIoGiZtYWFzLWRlZmF1bHQtZ2F0ZXdheS1vcGVuc2hpZnQtZGVmYXVsdAovCiNzZXJ2aWNlLmlzdGlvLmlvL2Nhbm9uaWNhbC1yZXZpc2lvbhIIGgZsYXRlc3QKQAoETkFNRRI4GjZtYWFzLWRlZmF1bHQtZ2F0ZXdheS1vcGVuc2hpZnQtZGVmYXVsdC1kZjY3NzZkZDYtcW5jYzIKIAoJTkFNRVNQQUNFEhMaEW9wZW5zaGlmdC1pbmdyZXNzCnQKBU9XTkVSEmsaaWt1YmVybmV0ZXM6Ly9hcGlzL2FwcHMvdjEvbmFtZXNwYWNlcy9vcGVuc2hpZnQtaW5ncmVzcy9kZXBsb3ltZW50cy9tYWFzLWRlZmF1bHQtZ2F0ZXdheS1vcGVuc2hpZnQtZGVmYXVsdAo5Cg1XT1JLTE9BRF9OQU1FEigaJm1hYXMtZGVmYXVsdC1nYXRld2F5LW9wZW5zaGlmdC1kZWZhdWx0\"} headers:{key:\"x-envoy-peer-metadata-id\" value:\"router~10.133.0.28~maas-default-gateway-openshift-default-df6776dd6-qncc2.openshift-ingress~openshift-ingress.svc.cluster.local\"} headers:{key:\"x-forwarded-for\" value:\"44.212.242.249,10.133.0.10\"} headers:{key:\"x-forwarded-host\" value:\"maas.apps.a71d38a3-f205-4819-8dea-ba8e8a21d04f.prod.konfluxeaas.com\"} headers:{key:\"x-forwarded-port\" value:\"443\"} headers:{key:\"x-forwarded-proto\" value:\"https\"} headers:{key:\"x-request-id\" value:\"6568fbc7-1447-452c-bb09-159bfff34d29\"} path:\"/maas-api/v1/api-keys/e2e-trlp-test-key\" host:\"maas.apps.a71d38a3-f205-4819-8dea-ba8e8a21d04f.prod.konfluxeaas.com\" scheme:\"https\" protocol:\"HTTP/1.1\"}} context_extensions:{key:\"host\" value:\"b64d1d3a1a41de71c5b05aa58c2da5025409dfbb29fbaa63fe6a7b8fb71bf42e\"} metadata_context:{}"} {"level":"debug","ts":"2026-07-27T19:36:25Z","logger":"authorino.service.auth.authpipeline.identity.kubernetesauth","msg":"calling kubernetes token review api","request id":"6568fbc7-1447-452c-bb09-159bfff34d29","tokenreview":{"name":""}} {"level":"debug","ts":"2026-07-27T19:36:25Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"6568fbc7-1447-452c-bb09-159bfff34d29","config":{"Name":"openshift-identities","Priority":2,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Metrics":false,"Cache":null,"OAuth2":null,"JWTAuthentication":null,"MTLS":null,"HMAC":null,"APIKey":null,"KubernetesAuth":{"AuthCredentials":{"KeySelector":"Bearer","In":"authorization_header"}},"Plain":null,"Noop":null,"ExtendedProperties":[]},"object":{"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/ba8e8a21d04f"],"authenticated":true,"user":{"extra":{"authentication.kubernetes.io/credential-id":["JTI=563f4731-3b35-418f-8201-a8976f754069"]},"groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"uid":"b3f38591-e696-4ce6-a81f-6158432478ba","username":"system:serviceaccount:default:tester-regular-user"}}} {"level":"debug","ts":"2026-07-27T19:36:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"6568fbc7-1447-452c-bb09-159bfff34d29","input":{"auth":{"identity":{"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/ba8e8a21d04f"],"authenticated":true,"user":{"extra":{"authentication.kubernetes.io/credential-id":["JTI=563f4731-3b35-418f-8201-a8976f754069"]},"groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"uid":"b3f38591-e696-4ce6-a81f-6158432478ba","username":"system:serviceaccount:default:tester-regular-user"}}},"context":{"context_extensions":{"host":"b64d1d3a1a41de71c5b05aa58c2da5025409dfbb29fbaa63fe6a7b8fb71bf42e"},"destination":{"address":{"Address":{"SocketAddress":{"PortSpecifier":{"PortValue":443},"address":"10.133.0.28:443"}}}},"metadata_context":{},"request":{"http":{"headers":{":authority":"maas.apps.a71d38a3-f205-4819-8dea-ba8e8a21d04f.prod.konfluxeaas.com",":method":"DELETE",":path":"/maas-api/v1/api-keys/e2e-trlp-test-key",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"***REDACTED***","content-length":"0","forwarded":"for=44.212.242.249;host=maas.apps.a71d38a3-f205-4819-8dea-ba8e8a21d04f.prod.konfluxeaas.com;proto=https","user-agent":"python-requests/2.32.5","x-envoy-decorator-operation":"maas-api.odh-ai-gateway-infra.svc.cluster.local:8443/*","x-envoy-external-address":"10.133.0.10","x-envoy-peer-metadata":"ChoKCkNMVVNURVJfSUQSDBoKS3ViZXJuZXRlcwqLAQoGTEFCRUxTEoABKn4KSwofc2VydmljZS5pc3Rpby5pby9jYW5vbmljYWwtbmFtZRIoGiZtYWFzLWRlZmF1bHQtZ2F0ZXdheS1vcGVuc2hpZnQtZGVmYXVsdAovCiNzZXJ2aWNlLmlzdGlvLmlvL2Nhbm9uaWNhbC1yZXZpc2lvbhIIGgZsYXRlc3QKQAoETkFNRRI4GjZtYWFzLWRlZmF1bHQtZ2F0ZXdheS1vcGVuc2hpZnQtZGVmYXVsdC1kZjY3NzZkZDYtcW5jYzIKIAoJTkFNRVNQQUNFEhMaEW9wZW5zaGlmdC1pbmdyZXNzCnQKBU9XTkVSEmsaaWt1YmVybmV0ZXM6Ly9hcGlzL2FwcHMvdjEvbmFtZXNwYWNlcy9vcGVuc2hpZnQtaW5ncmVzcy9kZXBsb3ltZW50cy9tYWFzLWRlZmF1bHQtZ2F0ZXdheS1vcGVuc2hpZnQtZGVmYXVsdAo5Cg1XT1JLTE9BRF9OQU1FEigaJm1hYXMtZGVmYXVsdC1nYXRld2F5LW9wZW5zaGlmdC1kZWZhdWx0","x-envoy-peer-metadata-id":"router~10.133.0.28~maas-default-gateway-openshift-default-df6776dd6-qncc2.openshift-ingress~openshift-ingress.svc.cluster.local","x-forwarded-for":"44.212.242.249,10.133.0.10","x-forwarded-host":"maas.apps.a71d38a3-f205-4819-8dea-ba8e8a21d04f.prod.konfluxeaas.com","x-forwarded-port":"443","x-forwarded-proto":"https","x-request-id":"6568fbc7-1447-452c-bb09-159bfff34d29"},"host":"maas.apps.a71d38a3-f205-4819-8dea-ba8e8a21d04f.prod.konfluxeaas.com","id":"6568fbc7-1447-452c-bb09-159bfff34d29","method":"DELETE","path":"/maas-api/v1/api-keys/e2e-trlp-test-key","protocol":"HTTP/1.1","scheme":"https"},"time":{"nanos":559500742,"seconds":1785180985}},"source":{"address":{"Address":{"SocketAddress":{"PortSpecifier":{"PortValue":43348},"address":"10.133.0.10:43348"}}}}},"destination":{"address":"10.133.0.28:443","port":443},"metadata":{},"request":{"context_extensions":{"host":"b64d1d3a1a41de71c5b05aa58c2da5025409dfbb29fbaa63fe6a7b8fb71bf42e"},"headers":{":authority":"maas.apps.a71d38a3-f205-4819-8dea-ba8e8a21d04f.prod.konfluxeaas.com",":method":"DELETE",":path":"/maas-api/v1/api-keys/e2e-trlp-test-key",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"***REDACTED***","content-length":"0","forwarded":"for=44.212.242.249;host=maas.apps.a71d38a3-f205-4819-8dea-ba8e8a21d04f.prod.konfluxeaas.com;proto=https","user-agent":"python-requests/2.32.5","x-envoy-decorator-operation":"maas-api.odh-ai-gateway-infra.svc.cluster.local:8443/*","x-envoy-external-address":"10.133.0.10","x-envoy-peer-metadata":"ChoKCkNMVVNURVJfSUQSDBoKS3ViZXJuZXRlcwqLAQoGTEFCRUxTEoABKn4KSwofc2VydmljZS5pc3Rpby5pby9jYW5vbmljYWwtbmFtZRIoGiZtYWFzLWRlZmF1bHQtZ2F0ZXdheS1vcGVuc2hpZnQtZGVmYXVsdAovCiNzZXJ2aWNlLmlzdGlvLmlvL2Nhbm9uaWNhbC1yZXZpc2lvbhIIGgZsYXRlc3QKQAoETkFNRRI4GjZtYWFzLWRlZmF1bHQtZ2F0ZXdheS1vcGVuc2hpZnQtZGVmYXVsdC1kZjY3NzZkZDYtcW5jYzIKIAoJTkFNRVNQQUNFEhMaEW9wZW5zaGlmdC1pbmdyZXNzCnQKBU9XTkVSEmsaaWt1YmVybmV0ZXM6Ly9hcGlzL2FwcHMvdjEvbmFtZXNwYWNlcy9vcGVuc2hpZnQtaW5ncmVzcy9kZXBsb3ltZW50cy9tYWFzLWRlZmF1bHQtZ2F0ZXdheS1vcGVuc2hpZnQtZGVmYXVsdAo5Cg1XT1JLTE9BRF9OQU1FEigaJm1hYXMtZGVmYXVsdC1nYXRld2F5LW9wZW5zaGlmdC1kZWZhdWx0","x-envoy-peer-metadata-id":"router~10.133.0.28~maas-default-gateway-openshift-default-df6776dd6-qncc2.openshift-ingress~openshift-ingress.svc.cluster.local","x-forwarded-for":"44.212.242.249,10.133.0.10","x-forwarded-host":"maas.apps.a71d38a3-f205-4819-8dea-ba8e8a21d04f.prod.konfluxeaas.com","x-forwarded-port":"443","x-forwarded-proto":"https","x-request-id":"6568fbc7-1447-452c-bb09-159bfff34d29"},"host":"maas.apps.a71d38a3-f205-4819-8dea-ba8e8a21d04f.prod.konfluxeaas.com","id":"6568fbc7-1447-452c-bb09-159bfff34d29","method":"DELETE","path":"/maas-api/v1/api-keys/e2e-trlp-test-key","protocol":"HTTP/1.1","scheme":"https","time":{"nanos":559500742,"seconds":1785180985},"url_path":"/maas-api/v1/api-keys/e2e-trlp-test-key","user_agent":"python-requests/2.32.5"},"source":{"address":"10.133.0.10:43348","port":43348}}} {"level":"debug","ts":"2026-07-27T19:36:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"6568fbc7-1447-452c-bb09-159bfff34d29","config":{"Name":"tenant-gateway-isolation","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":null,"OPA":{"Rego":"# Tenant hostname isolation stub.\n# Replace with a real maas-api call to validate that the API key's tenant\n# matches the gateway hostname (prevents Coke key on Pepsi gateway).\nallow { true }","ExternalSource":null,"AllValues":false},"JSON":null,"KubernetesAuthz":null,"Authzed":null},"object":{"allow":true}} {"level":"debug","ts":"2026-07-27T19:36:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"6568fbc7-1447-452c-bb09-159bfff34d29","config":{"Name":"auth-valid","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"allow {\n object.get(input.auth.metadata, \"apiKeyValidation\", {})\n input.auth.metadata.apiKeyValidation.valid == true\n}\nallow {\n not input.auth.metadata.apiKeyValidation\n}","ExternalSource":null,"AllValues":false},"JSON":null,"KubernetesAuthz":null,"Authzed":null},"object":{"allow":true}} {"level":"debug","ts":"2026-07-27T19:36:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"6568fbc7-1447-452c-bb09-159bfff34d29","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"llm/e2e-trlp-test-simulated\":{\"users\":[\"system:serviceaccount:llm:e2e-trlp-degraded-sa\"],\"groups\":null},\"llm/facebook-opt-125m-simulated\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"llm/premium-simulated-simulated-premium\":{\"users\":[\"system:serviceaccount:premium-users-namespace:premium-service-account\"],\"groups\":[\"premium-user\"]},\"publishers/llm/models/facebook/opt-125m\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/llm/models/facebook/opt-125m-premium\":{\"users\":[\"system:serviceaccount:premium-users-namespace:premium-service-account\"],\"groups\":[\"premium-user\"]},\"publishers/llm/models/test/e2e-trlp-test-model\":{\"users\":[\"system:serviceaccount:llm:e2e-trlp-degraded-sa\"],\"groups\":null}}\n\nrequest_path := object.get(input.context.request.http, \"path\", \"\")\nrequest_headers := object.get(input.context.request.http, \"headers\", {})\n\npath_parts := [p | p := split(request_path, \"/\")[_]; p != \"\"]\n\npath_model_identity := sprintf(\"%s/%s\", [path_parts[0], path_parts[1]]) {\n\tcount(path_parts) >= 2\n\tpath_parts[0] != \"v1\"\n\tpath_parts[0] != \"maas-api\"\n}\n\nheader_model_identity := object.get(request_headers, \"x-gateway-model-name\", \"\")\n\nmodel_identity := path_model_identity {\n\tpath_model_identity != \"\"\n} else := header_model_identity {\n\theader_model_identity != \"\"\n} else := \"\"\n\nusername := input.auth.metadata.apiKeyValidation.username\n\t{ object.get(input.auth, \"metadata\", {}).apiKeyValidation.username != \"\" }\nelse := input.auth.identity.preferred_username\n\t{ object.get(input.auth, \"identity\", {}).preferred_username != \"\" }\nelse := input.auth.identity.sub\n\t{ object.get(input.auth, \"identity\", {}).sub != \"\" }\nelse := input.auth.identity.user.username\n\t{ object.get(input.auth, \"identity\", {}).user.username != \"\" }\nelse := \"\"\n\ngroups := input.auth.metadata.apiKeyValidation.groups\n\t{ object.get(input.auth, \"metadata\", {}).apiKeyValidation.groups != [] }\nelse := input.auth.identity.groups\n\t{ object.get(input.auth, \"identity\", {}).groups != [] }\nelse := input.auth.identity.user.groups\n\t{ object.get(input.auth, \"identity\", {}).user.groups != [] }\nelse := []\n\nmodel_rules := object.get(model_access, model_identity, null)\n\n# Management endpoints (e.g. /v1/models, /maas-api/v1/api-keys) carry no model context.\n# Allow them here; subscription and rate-limit checks are gated by model-route conditions.\nallow {\n\tmodel_identity == \"\"\n}\n\n# Inference path: deny by default when no MaaSAuthPolicy covers this model.\n# Allow only when the caller's username or a group is explicitly listed.\nallow {\n\tmodel_rules != null\n\tmodel_rules.users[_] == username\n}\n\nallow {\n\tmodel_rules != null\n\tg := groups[_]\n\tmodel_rules.groups[_] == g\n}\n","ExternalSource":null,"AllValues":false},"JSON":null,"KubernetesAuthz":null,"Authzed":null},"object":{"allow":true}} {"level":"debug","ts":"2026-07-27T19:36:25Z","logger":"authorino.service.auth.authpipeline.response","msg":"cannot build dynamic response","request id":"6568fbc7-1447-452c-bb09-159bfff34d29","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"groups","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"keyId","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"userid","Value":{}},{"Name":"keyName","Value":{}},{"Name":"subscription_info","Value":{}}]},"Plain":null},"reason":"no such key: metadata"} {"level":"debug","ts":"2026-07-27T19:36:25Z","logger":"authorino.service.auth.authpipeline","msg":"skipping config","request id":"6568fbc7-1447-452c-bb09-159bfff34d29","config":{"Name":"X-MaaS-Username","Priority":0,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Wrapper":"httpHeader","WrapperKey":"X-MaaS-Username","Metrics":false,"Cache":null,"Wristband":null,"DynamicJSON":null,"Plain":{"Value":{"Static":null,"Pattern":"auth.metadata.apiKeyValidation.username"}}},"reason":"context canceled"} {"level":"debug","ts":"2026-07-27T19:36:25Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"6568fbc7-1447-452c-bb09-159bfff34d29","config":{"Name":"X-MaaS-Username-Token","Priority":1,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Wrapper":"httpHeader","WrapperKey":"X-MaaS-Username","Metrics":false,"Cache":null,"Wristband":null,"DynamicJSON":null,"Plain":{"Value":{}}},"object":"system:serviceaccount:default:tester-regular-user"} {"level":"debug","ts":"2026-07-27T19:36:25Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"6568fbc7-1447-452c-bb09-159bfff34d29","config":{"Name":"X-MaaS-Group-Token","Priority":1,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Wrapper":"httpHeader","WrapperKey":"X-MaaS-Group","Metrics":false,"Cache":null,"Wristband":null,"DynamicJSON":null,"Plain":{"Value":{}}},"object":"[\"system:authenticated\",\"system:serviceaccounts\",\"system:serviceaccounts:default\",\"system:authenticated\"]"} {"level":"info","ts":"2026-07-27T19:36:25Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"6568fbc7-1447-452c-bb09-159bfff34d29","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-27T19:36:25Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"6568fbc7-1447-452c-bb09-159bfff34d29","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-27T19:37:49Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: watch of *v1beta3.AuthConfig ended with: an error on the server (\"unable to decode an event from the watch stream: http2: client connection lost\") has prevented the request from succeeding\n"} {"level":"info","ts":"2026-07-27T19:37:49Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: watch of *v1.Secret ended with: an error on the server (\"unable to decode an event from the watch stream: http2: client connection lost\") has prevented the request from succeeding\n"} {"level":"info","ts":"2026-07-27T19:37:49Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: watch of *v1beta3.AuthConfig ended with: an error on the server (\"unable to decode an event from the watch stream: http2: client connection lost\") has prevented the request from succeeding\n"} {"level":"info","ts":"2026-07-27T19:38:00Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=31540\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:38:00Z","logger":"authorino","msg":"Trace[1284558181]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:37:50.216) (total time: 10001ms):\nTrace[1284558181]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=31540\": net/http: TLS handshake timeout 10001ms (19:38:00.218)\nTrace[1284558181]: [10.001973996s] [10.001973996s] END\n"} {"level":"error","ts":"2026-07-27T19:38:00Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=31540\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:38:00Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=31540\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:38:00Z","logger":"authorino","msg":"Trace[737057949]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:37:50.383) (total time: 10001ms):\nTrace[737057949]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=31540\": net/http: TLS handshake timeout 10001ms (19:38:00.385)\nTrace[737057949]: [10.001788534s] [10.001788534s] END\n"} {"level":"error","ts":"2026-07-27T19:38:00Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=31540\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:38:00Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:38:00Z","logger":"authorino","msg":"Trace[1886639918]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:37:50.548) (total time: 10001ms):\nTrace[1886639918]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout 10001ms (19:38:00.549)\nTrace[1886639918]: [10.001126065s] [10.001126065s] END\n"} {"level":"error","ts":"2026-07-27T19:38:00Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1.Secret: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:38:12Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=31540\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:38:12Z","logger":"authorino","msg":"Trace[2107432490]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:38:02.355) (total time: 10002ms):\nTrace[2107432490]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=31540\": net/http: TLS handshake timeout 10002ms (19:38:12.358)\nTrace[2107432490]: [10.002174701s] [10.002174701s] END\n"} {"level":"error","ts":"2026-07-27T19:38:12Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=31540\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:38:12Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:38:12Z","logger":"authorino","msg":"Trace[266948169]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:38:02.370) (total time: 10001ms):\nTrace[266948169]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout 10000ms (19:38:12.371)\nTrace[266948169]: [10.001016919s] [10.001016919s] END\n"} {"level":"error","ts":"2026-07-27T19:38:12Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1.Secret: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:38:13Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=31540\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:38:13Z","logger":"authorino","msg":"Trace[1532339903]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:38:03.354) (total time: 10001ms):\nTrace[1532339903]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=31540\": net/http: TLS handshake timeout 10001ms (19:38:13.356)\nTrace[1532339903]: [10.001774048s] [10.001774048s] END\n"} {"level":"error","ts":"2026-07-27T19:38:13Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=31540\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:38:26Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:38:26Z","logger":"authorino","msg":"Trace[136445546]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:38:16.066) (total time: 10001ms):\nTrace[136445546]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout 10001ms (19:38:26.068)\nTrace[136445546]: [10.00179232s] [10.00179232s] END\n"} {"level":"error","ts":"2026-07-27T19:38:26Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1.Secret: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:38:29Z","logger":"authorino","msg":"Trace[395462831]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:38:19.074) (total time: 10682ms):\nTrace[395462831]: ---\"Objects listed\" error: 10682ms (19:38:29.757)\nTrace[395462831]: [10.682388413s] [10.682388413s] END\n"} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"01918e70442d2cb18c94316131b0e0a241b4a5d12df5b1e1981a3bef420bbdb5","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"06b05a8e4dd69bdc4f333ad9509ee8cad3c5c0f5dd48edbe94c1158b60f79ed3","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"101d9a4d9b715268b3a3623fb114473501068b7352d534f324f4a3121b535746","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"18e32965997cdd9967355c6fa5264ed12c0a215989d459ed88d7d6de02865f76","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"1ef3f8313d73a7c14b76ea704cc3f23f015b2ab50034887cf570208a050e9863","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"305bde7d554d0d2810b101d2b8d4e0e15521c2afbf16166555b8e9aa4ed39a3d","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"30c4b39450ec876cfb2b0e66cbea2a74b7bcfafcf83d80a94c503487492e5a48","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"311b1be286674fd5684c9ac59b318287dade9769cfe4aeebd8c88e2dc6b72418","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"319a353672fc7601c875fa3f8b807adf60b64f093f022b2a1c3dfef3ac8cd4f4","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"331dc257e65f55f80700a586f7807093eda7b3d8e7d91215dc3c47731508480c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"35d34d59676c333235d7c9f02273e0380bb39f27cfd30856fedc0f7c0e5f79aa","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3774b789b89cb794db9f2ae5a4e410c6a000c480af86f9e4466977b4dc7de25a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3c0d47082320c9bb02d3788ab2b052c696af91abc2ae438437ae71a26936c7c2","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3d32277ea538e86091b57e14fc6f6582cbe1daa3e7e81223282a75b03a512083","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3dc75fc8307b952a3e873400cf417e90f2861e8a225abec4b22708deb7901db7","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3dd75e19cd66d310c30638e330078972afd6d2d96305f91055bc6a6f363fb8d3","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"4325b2a5e55bf181d1f503f5c3cbce3259c00ca301216d4ea5bc6b962627f1bd","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"4375a0165d777c3dbcac3b90772aafb3ba82b742e01878423b9fb1e122337433","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"452d598a0ad1047944cd02d3654e6793847781ecc87763544a69e05020a86cf3","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"47d4519f979dd8b06fb3b12ecf63e079887e8b64c789a1ff79b4c429f3a6aa2a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"4dc577fd60594d78a4a8bebe396f4b5a928f41bdc3f95c06d717cf1ddc3158b2","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"5c6918972d1a7f8ad5201880b7d6d9c1191ca1f25376682f691def7868e3fd02","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"5fea747cb803a5ee3aeb620187bd9ec74ccccd10a92474ef528215a7ff146c8f","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"630f18b14e5ce0234d4da773011770ac52ec305a1af3397f72696bf5262056bb","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"707878bcd632125ecab845de29fc41570ff2eb882a04dea05a2e77c0ea6d31f9","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"7371c34ce8e4df2309ee8f952c87f921947b289427b6e9ea579dcb9970fc1b86","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"80f10756c0e833d16937036ed66f1daf5bef95559ef05a5e852766b97b9bdaef","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"86cbb62fb4d82d4dc402b3281444539a5625c4bb4c86bbc4912c70e690a2e374","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"888fdad5bc63ac36546012ce97b2af4b7b1a45ef243fd2eba72f12c306f06e3e","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"98b96558d098c10ea5cd4b877712861a71c554909b27785cf9b672cf28954a5a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"98dd9311f361e75de96f77b800598c9f5c79c7fa539cfd493b5f7631f8efab90","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9903213c635804dd416e9f12956f0fa896195627091daaf593a30df64cf640c5","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9bbfc0b2e9e9acadd41342cd7c36a24afa8a5eef942d161782a6adae8411158a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9f3df6834dcf2df14d188decd66432f3940127e3a8261065cd3a44bd9ed1db6d","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"a124e7db3701742524b9534a4ba1eb68cc6d8f337ccc26c3f8f17b958cc795d0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"a394737442ca47bfbcb906bcf34d05c5515587984942470db6d6858608ab543a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"a7740f6e77d024a437502c023fb1d8939cb3cc2b9ed7f4073af7d779e19459eb","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"a89b0896df0d8cd430f1c81b6eb292ddc044daed393537d009a6330718f58d4b","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"b64d1d3a1a41de71c5b05aa58c2da5025409dfbb29fbaa63fe6a7b8fb71bf42e","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"ba8750633b915855593e941d13c912f4f6c6d6c6a659c241b67d178bbe85f188","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"bf72a6316f6ed79299511e58d068836cdc71dbca5e23944f783c9340ffa0aee1","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"c098209e055107073c6ded1d63e221315c2239f3cf17a7d15056a7494c5714fb","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"cc09b530b46a73b0d4ddb40e465580cff15db19d77e93e4903c9737647deeb1a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"cd452b3491b4064e772f38d1a288406bb3889f19efd54af26f6554f07046a8c0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d3b195a61a7f24c6bf1fba40f9f2e2565facb6af92e959c1546ac398a9172618","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d66f5b12bbb76f83ef1cb89313ae7356d9a4c974f276c1405eefa0cb8d66ceda","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"df733b2c652bfe2458c9e19932b1091e939c1a62178d6879462b3b4f73fca4bb","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"e38d76c6f386f12bc12190c87b39e6e77e182be454f85659a9197c301f2cd9be","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"e50f5fdcb9fb7e124557afe69edae9a95d05da488eae1cc4b5c1c7c1220a826a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"e9607d3c9394ff787a7cb9306c470b1007979008e27c6d6c68281553a4653faa","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"edcceb5a2e0cf1edde0fc3ed43068ce5b123a6fdc41949959c2c3b7a5a48bf24","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:38:29Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"f9a2a1e13eaadb4f450e63a68a3d05ec02a537019380f832f5992d1c5cdee533","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-27T19:39:10Z","logger":"authorino","msg":"Trace[1912950000]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:38:16.806) (total time: 53836ms):\nTrace[1912950000]: ---\"Objects listed\" error: 53836ms (19:39:10.643)\nTrace[1912950000]: [53.836568775s] [53.836568775s] END\n"} {"level":"info","ts":"2026-07-27T19:39:10Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/01918e70442d2cb18c94316131b0e0a241b4a5d12df5b1e1981a3bef420bbdb5"} {"level":"info","ts":"2026-07-27T19:39:10Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/06b05a8e4dd69bdc4f333ad9509ee8cad3c5c0f5dd48edbe94c1158b60f79ed3"} {"level":"info","ts":"2026-07-27T19:39:10Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/101d9a4d9b715268b3a3623fb114473501068b7352d534f324f4a3121b535746"} {"level":"info","ts":"2026-07-27T19:39:10Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/18e32965997cdd9967355c6fa5264ed12c0a215989d459ed88d7d6de02865f76"} {"level":"info","ts":"2026-07-27T19:39:10Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/1ef3f8313d73a7c14b76ea704cc3f23f015b2ab50034887cf570208a050e9863"} {"level":"info","ts":"2026-07-27T19:39:10Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/305bde7d554d0d2810b101d2b8d4e0e15521c2afbf16166555b8e9aa4ed39a3d"} {"level":"info","ts":"2026-07-27T19:39:10Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/30c4b39450ec876cfb2b0e66cbea2a74b7bcfafcf83d80a94c503487492e5a48"} {"level":"info","ts":"2026-07-27T19:39:10Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/311b1be286674fd5684c9ac59b318287dade9769cfe4aeebd8c88e2dc6b72418"} {"level":"info","ts":"2026-07-27T19:39:10Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/319a353672fc7601c875fa3f8b807adf60b64f093f022b2a1c3dfef3ac8cd4f4"} {"level":"info","ts":"2026-07-27T19:39:10Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/331dc257e65f55f80700a586f7807093eda7b3d8e7d91215dc3c47731508480c"} {"level":"info","ts":"2026-07-27T19:39:10Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/35d34d59676c333235d7c9f02273e0380bb39f27cfd30856fedc0f7c0e5f79aa"} {"level":"info","ts":"2026-07-27T19:39:10Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3774b789b89cb794db9f2ae5a4e410c6a000c480af86f9e4466977b4dc7de25a"} {"level":"info","ts":"2026-07-27T19:39:10Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3c0d47082320c9bb02d3788ab2b052c696af91abc2ae438437ae71a26936c7c2"} {"level":"info","ts":"2026-07-27T19:39:10Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3d32277ea538e86091b57e14fc6f6582cbe1daa3e7e81223282a75b03a512083"} {"level":"info","ts":"2026-07-27T19:39:10Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3dc75fc8307b952a3e873400cf417e90f2861e8a225abec4b22708deb7901db7"} {"level":"info","ts":"2026-07-27T19:39:10Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3dd75e19cd66d310c30638e330078972afd6d2d96305f91055bc6a6f363fb8d3"} {"level":"info","ts":"2026-07-27T19:39:10Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/4325b2a5e55bf181d1f503f5c3cbce3259c00ca301216d4ea5bc6b962627f1bd"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/4375a0165d777c3dbcac3b90772aafb3ba82b742e01878423b9fb1e122337433"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/452d598a0ad1047944cd02d3654e6793847781ecc87763544a69e05020a86cf3"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/47d4519f979dd8b06fb3b12ecf63e079887e8b64c789a1ff79b4c429f3a6aa2a"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/4dc577fd60594d78a4a8bebe396f4b5a928f41bdc3f95c06d717cf1ddc3158b2"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/5c6918972d1a7f8ad5201880b7d6d9c1191ca1f25376682f691def7868e3fd02"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/5fea747cb803a5ee3aeb620187bd9ec74ccccd10a92474ef528215a7ff146c8f"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/630f18b14e5ce0234d4da773011770ac52ec305a1af3397f72696bf5262056bb"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/707878bcd632125ecab845de29fc41570ff2eb882a04dea05a2e77c0ea6d31f9"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/7371c34ce8e4df2309ee8f952c87f921947b289427b6e9ea579dcb9970fc1b86"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/80f10756c0e833d16937036ed66f1daf5bef95559ef05a5e852766b97b9bdaef"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/86cbb62fb4d82d4dc402b3281444539a5625c4bb4c86bbc4912c70e690a2e374"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/888fdad5bc63ac36546012ce97b2af4b7b1a45ef243fd2eba72f12c306f06e3e"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/98b96558d098c10ea5cd4b877712861a71c554909b27785cf9b672cf28954a5a"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/98dd9311f361e75de96f77b800598c9f5c79c7fa539cfd493b5f7631f8efab90"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9903213c635804dd416e9f12956f0fa896195627091daaf593a30df64cf640c5"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9bbfc0b2e9e9acadd41342cd7c36a24afa8a5eef942d161782a6adae8411158a"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9f3df6834dcf2df14d188decd66432f3940127e3a8261065cd3a44bd9ed1db6d"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/a124e7db3701742524b9534a4ba1eb68cc6d8f337ccc26c3f8f17b958cc795d0"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/a394737442ca47bfbcb906bcf34d05c5515587984942470db6d6858608ab543a"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/a7740f6e77d024a437502c023fb1d8939cb3cc2b9ed7f4073af7d779e19459eb"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/a89b0896df0d8cd430f1c81b6eb292ddc044daed393537d009a6330718f58d4b"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/b64d1d3a1a41de71c5b05aa58c2da5025409dfbb29fbaa63fe6a7b8fb71bf42e"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ba8750633b915855593e941d13c912f4f6c6d6c6a659c241b67d178bbe85f188"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/bf72a6316f6ed79299511e58d068836cdc71dbca5e23944f783c9340ffa0aee1"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/c098209e055107073c6ded1d63e221315c2239f3cf17a7d15056a7494c5714fb"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/cc09b530b46a73b0d4ddb40e465580cff15db19d77e93e4903c9737647deeb1a"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/cd452b3491b4064e772f38d1a288406bb3889f19efd54af26f6554f07046a8c0"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/d3b195a61a7f24c6bf1fba40f9f2e2565facb6af92e959c1546ac398a9172618"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/d66f5b12bbb76f83ef1cb89313ae7356d9a4c974f276c1405eefa0cb8d66ceda"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/df733b2c652bfe2458c9e19932b1091e939c1a62178d6879462b3b4f73fca4bb"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/e38d76c6f386f12bc12190c87b39e6e77e182be454f85659a9197c301f2cd9be"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/e50f5fdcb9fb7e124557afe69edae9a95d05da488eae1cc4b5c1c7c1220a826a"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/e9607d3c9394ff787a7cb9306c470b1007979008e27c6d6c68281553a4653faa"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/edcceb5a2e0cf1edde0fc3ed43068ce5b123a6fdc41949959c2c3b7a5a48bf24"} {"level":"info","ts":"2026-07-27T19:39:11Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/f9a2a1e13eaadb4f450e63a68a3d05ec02a537019380f832f5992d1c5cdee533"} {"level":"info","ts":"2026-07-27T19:39:15Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: watch of *v1beta3.AuthConfig ended with: an error on the server (\"unable to decode an event from the watch stream: http2: client connection lost\") has prevented the request from succeeding\n"} {"level":"info","ts":"2026-07-27T19:39:15Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": http2: client connection lost\n"} {"level":"info","ts":"2026-07-27T19:39:15Z","logger":"authorino","msg":"Trace[1283796681]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:38:36.963) (total time: 38104ms):\nTrace[1283796681]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": http2: client connection lost 38104ms (19:39:15.067)\nTrace[1283796681]: [38.104510179s] [38.104510179s] END\n"} {"level":"error","ts":"2026-07-27T19:39:15Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1.Secret: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": http2: client connection lost\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"error","ts":"2026-07-27T19:39:15Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?allowWatchBookmarks=true&resourceVersion=32039&timeoutSeconds=351&watch=true\": http2: client connection lost\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"error","ts":"2026-07-27T19:40:21Z","logger":"authorino","msg":"Unexpected error when reading response body: http2: client connection lost\n","stacktrace":"k8s.io/client-go/rest.(*Request).transformResponse\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1116\nk8s.io/client-go/rest.(*Request).Do.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1064\nk8s.io/client-go/rest.(*Request).request.func3.1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1039\nk8s.io/client-go/rest.(*Request).request.func3\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1046\nk8s.io/client-go/rest.(*Request).request\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1048\nk8s.io/client-go/rest.(*Request).Do\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1063\nsigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).makeListWatcher.func5\n\t/cachi2/output/deps/gomod/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/cache/internal/informers.go:469\nsigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).addInformerToMap.func1\n\t/cachi2/output/deps/gomod/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/cache/internal/informers.go:315\nk8s.io/client-go/tools/cache.(*ListWatch).List\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/listwatch.go:106\nk8s.io/client-go/tools/cache.(*Reflector).list.func1.2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:488\nk8s.io/client-go/tools/cache.(*Reflector).list.func1.SimplePageFunc.3\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/pager/pager.go:40\nk8s.io/client-go/tools/pager.(*ListPager).list\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/pager/pager.go:108\nk8s.io/client-go/tools/pager.(*ListPager).ListWithAlloc\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/pager/pager.go:89\nk8s.io/client-go/tools/cache.(*Reflector).list.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:513"} {"level":"info","ts":"2026-07-27T19:40:21Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: unexpected error when reading response body. Please retry. Original error: http2: client connection lost\n"} {"level":"info","ts":"2026-07-27T19:40:21Z","logger":"authorino","msg":"Trace[692378141]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:39:24.611) (total time: 56938ms):\nTrace[692378141]: ---\"Objects listed\" error:unexpected error when reading response body. Please retry. Original error: http2: client connection lost 56938ms (19:40:21.549)\nTrace[692378141]: [56.938369156s] [56.938369156s] END\n"} {"level":"error","ts":"2026-07-27T19:40:21Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: unexpected error when reading response body. Please retry. Original error: http2: client connection lost\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"error","ts":"2026-07-27T19:40:21Z","logger":"authorino","msg":"Unexpected error when reading response body: http2: client connection lost\n","stacktrace":"k8s.io/client-go/rest.(*Request).transformResponse\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1116\nk8s.io/client-go/rest.(*Request).Do.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1064\nk8s.io/client-go/rest.(*Request).request.func3.1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1039\nk8s.io/client-go/rest.(*Request).request.func3\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1046\nk8s.io/client-go/rest.(*Request).request\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1048\nk8s.io/client-go/rest.(*Request).Do\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1063\nsigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).makeListWatcher.func5\n\t/cachi2/output/deps/gomod/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/cache/internal/informers.go:469\nsigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).addInformerToMap.func1\n\t/cachi2/output/deps/gomod/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/cache/internal/informers.go:315\nk8s.io/client-go/tools/cache.(*ListWatch).List\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/listwatch.go:106\nk8s.io/client-go/tools/cache.(*Reflector).list.func1.2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:488\nk8s.io/client-go/tools/cache.(*Reflector).list.func1.SimplePageFunc.3\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/pager/pager.go:40\nk8s.io/client-go/tools/pager.(*ListPager).list\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/pager/pager.go:108\nk8s.io/client-go/tools/pager.(*ListPager).ListWithAlloc\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/pager/pager.go:89\nk8s.io/client-go/tools/cache.(*Reflector).list.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:513"} {"level":"info","ts":"2026-07-27T19:40:21Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: unexpected error when reading response body. Please retry. Original error: http2: client connection lost\n"} {"level":"info","ts":"2026-07-27T19:40:21Z","logger":"authorino","msg":"Trace[1745951914]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:39:22.145) (total time: 59404ms):\nTrace[1745951914]: ---\"Objects listed\" error:unexpected error when reading response body. Please retry. Original error: http2: client connection lost 59404ms (19:40:21.550)\nTrace[1745951914]: [59.404733267s] [59.404733267s] END\n"} {"level":"error","ts":"2026-07-27T19:40:21Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: unexpected error when reading response body. Please retry. Original error: http2: client connection lost\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"error","ts":"2026-07-27T19:40:21Z","logger":"authorino","msg":"Unexpected error when reading response body: http2: client connection lost\n","stacktrace":"k8s.io/client-go/rest.(*Request).transformResponse\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1116\nk8s.io/client-go/rest.(*Request).Do.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1064\nk8s.io/client-go/rest.(*Request).request.func3.1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1039\nk8s.io/client-go/rest.(*Request).request.func3\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1046\nk8s.io/client-go/rest.(*Request).request\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1048\nk8s.io/client-go/rest.(*Request).Do\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1063\nsigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).makeListWatcher.func5\n\t/cachi2/output/deps/gomod/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/cache/internal/informers.go:469\nsigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).addInformerToMap.func1\n\t/cachi2/output/deps/gomod/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/cache/internal/informers.go:315\nk8s.io/client-go/tools/cache.(*ListWatch).List\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/listwatch.go:106\nk8s.io/client-go/tools/cache.(*Reflector).list.func1.2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:488\nk8s.io/client-go/tools/cache.(*Reflector).list.func1.SimplePageFunc.3\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/pager/pager.go:40\nk8s.io/client-go/tools/pager.(*ListPager).list\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/pager/pager.go:108\nk8s.io/client-go/tools/pager.(*ListPager).ListWithAlloc\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/pager/pager.go:89\nk8s.io/client-go/tools/cache.(*Reflector).list.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:513"} {"level":"info","ts":"2026-07-27T19:40:21Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1.Secret: unexpected error when reading response body. Please retry. Original error: http2: client connection lost\n"} {"level":"info","ts":"2026-07-27T19:40:21Z","logger":"authorino","msg":"Trace[1013487288]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:39:30.269) (total time: 51280ms):\nTrace[1013487288]: ---\"Objects listed\" error:unexpected error when reading response body. Please retry. Original error: http2: client connection lost 51280ms (19:40:21.550)\nTrace[1013487288]: [51.280828756s] [51.280828756s] END\n"} {"level":"error","ts":"2026-07-27T19:40:21Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1.Secret: failed to list *v1.Secret: unexpected error when reading response body. Please retry. Original error: http2: client connection lost\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:40:47Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:40:47Z","logger":"authorino","msg":"Trace[627782544]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:40:37.959) (total time: 10001ms):\nTrace[627782544]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": net/http: TLS handshake timeout 10001ms (19:40:47.961)\nTrace[627782544]: [10.001736293s] [10.001736293s] END\n"} {"level":"error","ts":"2026-07-27T19:40:47Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:40:50Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:40:50Z","logger":"authorino","msg":"Trace[2036527847]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:40:40.383) (total time: 10001ms):\nTrace[2036527847]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": net/http: TLS handshake timeout 10001ms (19:40:50.384)\nTrace[2036527847]: [10.001171404s] [10.001171404s] END\n"} {"level":"error","ts":"2026-07-27T19:40:50Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:41:05Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:41:05Z","logger":"authorino","msg":"Trace[838453982]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:40:55.296) (total time: 10002ms):\nTrace[838453982]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout 10002ms (19:41:05.298)\nTrace[838453982]: [10.002243518s] [10.002243518s] END\n"} {"level":"error","ts":"2026-07-27T19:41:05Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1.Secret: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:41:23Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:41:23Z","logger":"authorino","msg":"Trace[225772471]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:41:13.637) (total time: 10002ms):\nTrace[225772471]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": net/http: TLS handshake timeout 10001ms (19:41:23.639)\nTrace[225772471]: [10.002092178s] [10.002092178s] END\n"} {"level":"error","ts":"2026-07-27T19:41:23Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:41:39Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:41:39Z","logger":"authorino","msg":"Trace[1220619499]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:41:29.029) (total time: 10001ms):\nTrace[1220619499]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": net/http: TLS handshake timeout 10001ms (19:41:39.031)\nTrace[1220619499]: [10.00168367s] [10.00168367s] END\n"} {"level":"error","ts":"2026-07-27T19:41:39Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:41:47Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:41:47Z","logger":"authorino","msg":"Trace[1988118249]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:41:37.753) (total time: 10001ms):\nTrace[1988118249]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout 10001ms (19:41:47.754)\nTrace[1988118249]: [10.001347922s] [10.001347922s] END\n"} {"level":"error","ts":"2026-07-27T19:41:47Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1.Secret: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:42:23Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:42:23Z","logger":"authorino","msg":"Trace[404200105]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:42:13.506) (total time: 10002ms):\nTrace[404200105]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": net/http: TLS handshake timeout 10002ms (19:42:23.509)\nTrace[404200105]: [10.002644518s] [10.002644518s] END\n"} {"level":"error","ts":"2026-07-27T19:42:23Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:42:28Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:42:28Z","logger":"authorino","msg":"Trace[1016108487]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:42:18.314) (total time: 10001ms):\nTrace[1016108487]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout 10001ms (19:42:28.315)\nTrace[1016108487]: [10.001898601s] [10.001898601s] END\n"} {"level":"error","ts":"2026-07-27T19:42:28Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1.Secret: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:42:41Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:42:41Z","logger":"authorino","msg":"Trace[372825833]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:42:31.012) (total time: 10001ms):\nTrace[372825833]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": net/http: TLS handshake timeout 10001ms (19:42:41.013)\nTrace[372825833]: [10.00127017s] [10.00127017s] END\n"} {"level":"error","ts":"2026-07-27T19:42:41Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/01918e70442d2cb18c94316131b0e0a241b4a5d12df5b1e1981a3bef420bbdb5"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/06b05a8e4dd69bdc4f333ad9509ee8cad3c5c0f5dd48edbe94c1158b60f79ed3"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/101d9a4d9b715268b3a3623fb114473501068b7352d534f324f4a3121b535746"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/18e32965997cdd9967355c6fa5264ed12c0a215989d459ed88d7d6de02865f76"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/1ef3f8313d73a7c14b76ea704cc3f23f015b2ab50034887cf570208a050e9863"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/305bde7d554d0d2810b101d2b8d4e0e15521c2afbf16166555b8e9aa4ed39a3d"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/30c4b39450ec876cfb2b0e66cbea2a74b7bcfafcf83d80a94c503487492e5a48"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/311b1be286674fd5684c9ac59b318287dade9769cfe4aeebd8c88e2dc6b72418"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/319a353672fc7601c875fa3f8b807adf60b64f093f022b2a1c3dfef3ac8cd4f4"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/331dc257e65f55f80700a586f7807093eda7b3d8e7d91215dc3c47731508480c"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/35d34d59676c333235d7c9f02273e0380bb39f27cfd30856fedc0f7c0e5f79aa"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3774b789b89cb794db9f2ae5a4e410c6a000c480af86f9e4466977b4dc7de25a"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3c0d47082320c9bb02d3788ab2b052c696af91abc2ae438437ae71a26936c7c2"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3d32277ea538e86091b57e14fc6f6582cbe1daa3e7e81223282a75b03a512083"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3dc75fc8307b952a3e873400cf417e90f2861e8a225abec4b22708deb7901db7"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3dd75e19cd66d310c30638e330078972afd6d2d96305f91055bc6a6f363fb8d3"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/4325b2a5e55bf181d1f503f5c3cbce3259c00ca301216d4ea5bc6b962627f1bd"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/4375a0165d777c3dbcac3b90772aafb3ba82b742e01878423b9fb1e122337433"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/452d598a0ad1047944cd02d3654e6793847781ecc87763544a69e05020a86cf3"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/47d4519f979dd8b06fb3b12ecf63e079887e8b64c789a1ff79b4c429f3a6aa2a"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/4dc577fd60594d78a4a8bebe396f4b5a928f41bdc3f95c06d717cf1ddc3158b2"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/5c6918972d1a7f8ad5201880b7d6d9c1191ca1f25376682f691def7868e3fd02"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/5fea747cb803a5ee3aeb620187bd9ec74ccccd10a92474ef528215a7ff146c8f"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/630f18b14e5ce0234d4da773011770ac52ec305a1af3397f72696bf5262056bb"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/707878bcd632125ecab845de29fc41570ff2eb882a04dea05a2e77c0ea6d31f9"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/7371c34ce8e4df2309ee8f952c87f921947b289427b6e9ea579dcb9970fc1b86"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/80f10756c0e833d16937036ed66f1daf5bef95559ef05a5e852766b97b9bdaef"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/86cbb62fb4d82d4dc402b3281444539a5625c4bb4c86bbc4912c70e690a2e374"} {"level":"info","ts":"2026-07-27T19:43:31Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/888fdad5bc63ac36546012ce97b2af4b7b1a45ef243fd2eba72f12c306f06e3e"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/98b96558d098c10ea5cd4b877712861a71c554909b27785cf9b672cf28954a5a"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/98dd9311f361e75de96f77b800598c9f5c79c7fa539cfd493b5f7631f8efab90"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9903213c635804dd416e9f12956f0fa896195627091daaf593a30df64cf640c5"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9bbfc0b2e9e9acadd41342cd7c36a24afa8a5eef942d161782a6adae8411158a"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9f3df6834dcf2df14d188decd66432f3940127e3a8261065cd3a44bd9ed1db6d"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/a124e7db3701742524b9534a4ba1eb68cc6d8f337ccc26c3f8f17b958cc795d0"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/a394737442ca47bfbcb906bcf34d05c5515587984942470db6d6858608ab543a"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/a7740f6e77d024a437502c023fb1d8939cb3cc2b9ed7f4073af7d779e19459eb"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/a89b0896df0d8cd430f1c81b6eb292ddc044daed393537d009a6330718f58d4b"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/b64d1d3a1a41de71c5b05aa58c2da5025409dfbb29fbaa63fe6a7b8fb71bf42e"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ba8750633b915855593e941d13c912f4f6c6d6c6a659c241b67d178bbe85f188"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/bf72a6316f6ed79299511e58d068836cdc71dbca5e23944f783c9340ffa0aee1"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/c098209e055107073c6ded1d63e221315c2239f3cf17a7d15056a7494c5714fb"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/cc09b530b46a73b0d4ddb40e465580cff15db19d77e93e4903c9737647deeb1a"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/cd452b3491b4064e772f38d1a288406bb3889f19efd54af26f6554f07046a8c0"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/d3b195a61a7f24c6bf1fba40f9f2e2565facb6af92e959c1546ac398a9172618"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/d66f5b12bbb76f83ef1cb89313ae7356d9a4c974f276c1405eefa0cb8d66ceda"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/df733b2c652bfe2458c9e19932b1091e939c1a62178d6879462b3b4f73fca4bb"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/e38d76c6f386f12bc12190c87b39e6e77e182be454f85659a9197c301f2cd9be"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/e50f5fdcb9fb7e124557afe69edae9a95d05da488eae1cc4b5c1c7c1220a826a"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/e9607d3c9394ff787a7cb9306c470b1007979008e27c6d6c68281553a4653faa"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/edcceb5a2e0cf1edde0fc3ed43068ce5b123a6fdc41949959c2c3b7a5a48bf24"} {"level":"info","ts":"2026-07-27T19:43:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/f9a2a1e13eaadb4f450e63a68a3d05ec02a537019380f832f5992d1c5cdee533"} {"level":"info","ts":"2026-07-27T19:44:18Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: watch of *v1beta3.AuthConfig ended with: an error on the server (\"unable to decode an event from the watch stream: http2: client connection lost\") has prevented the request from succeeding\n"} {"level":"info","ts":"2026-07-27T19:44:18Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": http2: client connection lost\n"} {"level":"info","ts":"2026-07-27T19:44:18Z","logger":"authorino","msg":"Trace[766190246]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:43:18.096) (total time: 60863ms):\nTrace[766190246]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": http2: client connection lost 60863ms (19:44:18.959)\nTrace[766190246]: [1m0.8633343s] [1m0.8633343s] END\n"} {"level":"error","ts":"2026-07-27T19:44:18Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32039\": http2: client connection lost\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"error","ts":"2026-07-27T19:44:18Z","logger":"authorino","msg":"Unexpected error when reading response body: http2: client connection lost\n","stacktrace":"k8s.io/client-go/rest.(*Request).transformResponse\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1116\nk8s.io/client-go/rest.(*Request).Do.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1064\nk8s.io/client-go/rest.(*Request).request.func3.1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1039\nk8s.io/client-go/rest.(*Request).request.func3\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1046\nk8s.io/client-go/rest.(*Request).request\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1048\nk8s.io/client-go/rest.(*Request).Do\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1063\nsigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).makeListWatcher.func5\n\t/cachi2/output/deps/gomod/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/cache/internal/informers.go:469\nsigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).addInformerToMap.func1\n\t/cachi2/output/deps/gomod/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/cache/internal/informers.go:315\nk8s.io/client-go/tools/cache.(*ListWatch).List\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/listwatch.go:106\nk8s.io/client-go/tools/cache.(*Reflector).list.func1.2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:488\nk8s.io/client-go/tools/cache.(*Reflector).list.func1.SimplePageFunc.3\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/pager/pager.go:40\nk8s.io/client-go/tools/pager.(*ListPager).list\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/pager/pager.go:108\nk8s.io/client-go/tools/pager.(*ListPager).ListWithAlloc\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/pager/pager.go:89\nk8s.io/client-go/tools/cache.(*Reflector).list.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:513"} {"level":"info","ts":"2026-07-27T19:44:18Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1.Secret: unexpected error when reading response body. Please retry. Original error: http2: client connection lost\n"} {"level":"info","ts":"2026-07-27T19:44:18Z","logger":"authorino","msg":"Trace[1587894442]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:43:24.902) (total time: 54058ms):\nTrace[1587894442]: ---\"Objects listed\" error:unexpected error when reading response body. Please retry. Original error: http2: client connection lost 54058ms (19:44:18.960)\nTrace[1587894442]: [54.058326917s] [54.058326917s] END\n"} {"level":"error","ts":"2026-07-27T19:44:18Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1.Secret: failed to list *v1.Secret: unexpected error when reading response body. Please retry. Original error: http2: client connection lost\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"01918e70442d2cb18c94316131b0e0a241b4a5d12df5b1e1981a3bef420bbdb5","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"06b05a8e4dd69bdc4f333ad9509ee8cad3c5c0f5dd48edbe94c1158b60f79ed3","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"101d9a4d9b715268b3a3623fb114473501068b7352d534f324f4a3121b535746","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"18e32965997cdd9967355c6fa5264ed12c0a215989d459ed88d7d6de02865f76","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"1ef3f8313d73a7c14b76ea704cc3f23f015b2ab50034887cf570208a050e9863","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"305bde7d554d0d2810b101d2b8d4e0e15521c2afbf16166555b8e9aa4ed39a3d","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"30c4b39450ec876cfb2b0e66cbea2a74b7bcfafcf83d80a94c503487492e5a48","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"311b1be286674fd5684c9ac59b318287dade9769cfe4aeebd8c88e2dc6b72418","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"319a353672fc7601c875fa3f8b807adf60b64f093f022b2a1c3dfef3ac8cd4f4","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"331dc257e65f55f80700a586f7807093eda7b3d8e7d91215dc3c47731508480c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"35d34d59676c333235d7c9f02273e0380bb39f27cfd30856fedc0f7c0e5f79aa","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3774b789b89cb794db9f2ae5a4e410c6a000c480af86f9e4466977b4dc7de25a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3c0d47082320c9bb02d3788ab2b052c696af91abc2ae438437ae71a26936c7c2","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3d32277ea538e86091b57e14fc6f6582cbe1daa3e7e81223282a75b03a512083","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3dc75fc8307b952a3e873400cf417e90f2861e8a225abec4b22708deb7901db7","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3dd75e19cd66d310c30638e330078972afd6d2d96305f91055bc6a6f363fb8d3","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"4325b2a5e55bf181d1f503f5c3cbce3259c00ca301216d4ea5bc6b962627f1bd","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"4375a0165d777c3dbcac3b90772aafb3ba82b742e01878423b9fb1e122337433","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"452d598a0ad1047944cd02d3654e6793847781ecc87763544a69e05020a86cf3","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"47d4519f979dd8b06fb3b12ecf63e079887e8b64c789a1ff79b4c429f3a6aa2a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"4dc577fd60594d78a4a8bebe396f4b5a928f41bdc3f95c06d717cf1ddc3158b2","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"5c6918972d1a7f8ad5201880b7d6d9c1191ca1f25376682f691def7868e3fd02","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"5fea747cb803a5ee3aeb620187bd9ec74ccccd10a92474ef528215a7ff146c8f","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"630f18b14e5ce0234d4da773011770ac52ec305a1af3397f72696bf5262056bb","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"707878bcd632125ecab845de29fc41570ff2eb882a04dea05a2e77c0ea6d31f9","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"7371c34ce8e4df2309ee8f952c87f921947b289427b6e9ea579dcb9970fc1b86","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"80f10756c0e833d16937036ed66f1daf5bef95559ef05a5e852766b97b9bdaef","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"86cbb62fb4d82d4dc402b3281444539a5625c4bb4c86bbc4912c70e690a2e374","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"888fdad5bc63ac36546012ce97b2af4b7b1a45ef243fd2eba72f12c306f06e3e","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"98b96558d098c10ea5cd4b877712861a71c554909b27785cf9b672cf28954a5a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"98dd9311f361e75de96f77b800598c9f5c79c7fa539cfd493b5f7631f8efab90","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9903213c635804dd416e9f12956f0fa896195627091daaf593a30df64cf640c5","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9bbfc0b2e9e9acadd41342cd7c36a24afa8a5eef942d161782a6adae8411158a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9f3df6834dcf2df14d188decd66432f3940127e3a8261065cd3a44bd9ed1db6d","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"a124e7db3701742524b9534a4ba1eb68cc6d8f337ccc26c3f8f17b958cc795d0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"a394737442ca47bfbcb906bcf34d05c5515587984942470db6d6858608ab543a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"a7740f6e77d024a437502c023fb1d8939cb3cc2b9ed7f4073af7d779e19459eb","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"a89b0896df0d8cd430f1c81b6eb292ddc044daed393537d009a6330718f58d4b","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"b64d1d3a1a41de71c5b05aa58c2da5025409dfbb29fbaa63fe6a7b8fb71bf42e","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"ba8750633b915855593e941d13c912f4f6c6d6c6a659c241b67d178bbe85f188","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"bf72a6316f6ed79299511e58d068836cdc71dbca5e23944f783c9340ffa0aee1","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"c098209e055107073c6ded1d63e221315c2239f3cf17a7d15056a7494c5714fb","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"cc09b530b46a73b0d4ddb40e465580cff15db19d77e93e4903c9737647deeb1a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"cd452b3491b4064e772f38d1a288406bb3889f19efd54af26f6554f07046a8c0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d3b195a61a7f24c6bf1fba40f9f2e2565facb6af92e959c1546ac398a9172618","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d66f5b12bbb76f83ef1cb89313ae7356d9a4c974f276c1405eefa0cb8d66ceda","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"df733b2c652bfe2458c9e19932b1091e939c1a62178d6879462b3b4f73fca4bb","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"e38d76c6f386f12bc12190c87b39e6e77e182be454f85659a9197c301f2cd9be","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"e50f5fdcb9fb7e124557afe69edae9a95d05da488eae1cc4b5c1c7c1220a826a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"e9607d3c9394ff787a7cb9306c470b1007979008e27c6d6c68281553a4653faa","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"edcceb5a2e0cf1edde0fc3ed43068ce5b123a6fdc41949959c2c3b7a5a48bf24","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:44:56Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"f9a2a1e13eaadb4f450e63a68a3d05ec02a537019380f832f5992d1c5cdee533","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-27T19:45:44Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: watch of *v1beta3.AuthConfig ended with: an error on the server (\"unable to decode an event from the watch stream: http2: client connection lost\") has prevented the request from succeeding\n"} {"level":"info","ts":"2026-07-27T19:45:44Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": http2: client connection lost\n"} {"level":"info","ts":"2026-07-27T19:45:44Z","logger":"authorino","msg":"Trace[86990995]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:45:10.465) (total time: 34049ms):\nTrace[86990995]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": http2: client connection lost 34049ms (19:45:44.514)\nTrace[86990995]: [34.04981652s] [34.04981652s] END\n"} {"level":"error","ts":"2026-07-27T19:45:44Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": http2: client connection lost\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"error","ts":"2026-07-27T19:45:44Z","logger":"authorino","msg":"Unexpected error when reading response body: http2: client connection lost\n","stacktrace":"k8s.io/client-go/rest.(*Request).transformResponse\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1116\nk8s.io/client-go/rest.(*Request).Do.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1064\nk8s.io/client-go/rest.(*Request).request.func3.1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1039\nk8s.io/client-go/rest.(*Request).request.func3\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1046\nk8s.io/client-go/rest.(*Request).request\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1048\nk8s.io/client-go/rest.(*Request).Do\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/rest/request.go:1063\nsigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).makeListWatcher.func5\n\t/cachi2/output/deps/gomod/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/cache/internal/informers.go:469\nsigs.k8s.io/controller-runtime/pkg/cache/internal.(*Informers).addInformerToMap.func1\n\t/cachi2/output/deps/gomod/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/cache/internal/informers.go:315\nk8s.io/client-go/tools/cache.(*ListWatch).List\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/listwatch.go:106\nk8s.io/client-go/tools/cache.(*Reflector).list.func1.2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:488\nk8s.io/client-go/tools/cache.(*Reflector).list.func1.SimplePageFunc.3\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/pager/pager.go:40\nk8s.io/client-go/tools/pager.(*ListPager).list\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/pager/pager.go:108\nk8s.io/client-go/tools/pager.(*ListPager).ListWithAlloc\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/pager/pager.go:89\nk8s.io/client-go/tools/cache.(*Reflector).list.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:513"} {"level":"info","ts":"2026-07-27T19:45:44Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1.Secret: unexpected error when reading response body. Please retry. Original error: http2: client connection lost\n"} {"level":"info","ts":"2026-07-27T19:45:44Z","logger":"authorino","msg":"Trace[406767733]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:44:59.418) (total time: 45097ms):\nTrace[406767733]: ---\"Objects listed\" error:unexpected error when reading response body. Please retry. Original error: http2: client connection lost 45097ms (19:45:44.515)\nTrace[406767733]: [45.097331752s] [45.097331752s] END\n"} {"level":"error","ts":"2026-07-27T19:45:44Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1.Secret: failed to list *v1.Secret: unexpected error when reading response body. Please retry. Original error: http2: client connection lost\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:46:24Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:46:24Z","logger":"authorino","msg":"Trace[1729882749]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:46:14.650) (total time: 10002ms):\nTrace[1729882749]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout 10002ms (19:46:24.652)\nTrace[1729882749]: [10.002431156s] [10.002431156s] END\n"} {"level":"error","ts":"2026-07-27T19:46:24Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:46:36Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:46:36Z","logger":"authorino","msg":"Trace[46940078]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:46:26.555) (total time: 10002ms):\nTrace[46940078]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout 10002ms (19:46:36.558)\nTrace[46940078]: [10.002454842s] [10.002454842s] END\n"} {"level":"error","ts":"2026-07-27T19:46:36Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:46:53Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:46:53Z","logger":"authorino","msg":"Trace[2084609797]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:46:43.350) (total time: 10001ms):\nTrace[2084609797]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout 10001ms (19:46:53.352)\nTrace[2084609797]: [10.001741416s] [10.001741416s] END\n"} {"level":"error","ts":"2026-07-27T19:46:53Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1.Secret: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:47:16Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:47:16Z","logger":"authorino","msg":"Trace[1209212017]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:47:06.865) (total time: 10002ms):\nTrace[1209212017]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout 10002ms (19:47:16.868)\nTrace[1209212017]: [10.002622349s] [10.002622349s] END\n"} {"level":"error","ts":"2026-07-27T19:47:16Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:47:30Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:47:30Z","logger":"authorino","msg":"Trace[924465896]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:47:20.304) (total time: 10002ms):\nTrace[924465896]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout 10002ms (19:47:30.307)\nTrace[924465896]: [10.002383162s] [10.002383162s] END\n"} {"level":"error","ts":"2026-07-27T19:47:30Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:47:54Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:47:54Z","logger":"authorino","msg":"Trace[251602528]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:47:44.802) (total time: 10002ms):\nTrace[251602528]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout 10001ms (19:47:54.803)\nTrace[251602528]: [10.002012187s] [10.002012187s] END\n"} {"level":"error","ts":"2026-07-27T19:47:54Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1.Secret: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:48:09Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:48:09Z","logger":"authorino","msg":"Trace[1371214902]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:47:59.110) (total time: 10002ms):\nTrace[1371214902]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout 10002ms (19:48:09.113)\nTrace[1371214902]: [10.002304598s] [10.002304598s] END\n"} {"level":"error","ts":"2026-07-27T19:48:09Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:48:35Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout - error from a previous attempt: EOF\n"} {"level":"info","ts":"2026-07-27T19:48:35Z","logger":"authorino","msg":"Trace[138270497]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:48:17.662) (total time: 18170ms):\nTrace[138270497]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout - error from a previous attempt: EOF 18170ms (19:48:35.833)\nTrace[138270497]: [18.170893347s] [18.170893347s] END\n"} {"level":"error","ts":"2026-07-27T19:48:35Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout - error from a previous attempt: EOF\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:48:41Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:48:41Z","logger":"authorino","msg":"Trace[583055002]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:48:31.023) (total time: 10001ms):\nTrace[583055002]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout 10001ms (19:48:41.025)\nTrace[583055002]: [10.001737362s] [10.001737362s] END\n"} {"level":"error","ts":"2026-07-27T19:48:41Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1.Secret: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:49:00Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:49:00Z","logger":"authorino","msg":"Trace[1063522695]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:48:50.077) (total time: 10001ms):\nTrace[1063522695]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout 10001ms (19:49:00.078)\nTrace[1063522695]: [10.001798956s] [10.001798956s] END\n"} {"level":"error","ts":"2026-07-27T19:49:00Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:49:20Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:49:20Z","logger":"authorino","msg":"Trace[2045075208]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:49:10.248) (total time: 10001ms):\nTrace[2045075208]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout 10001ms (19:49:20.250)\nTrace[2045075208]: [10.001453523s] [10.001453523s] END\n"} {"level":"error","ts":"2026-07-27T19:49:20Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:49:30Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:49:30Z","logger":"authorino","msg":"Trace[1787229890]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:49:20.788) (total time: 10002ms):\nTrace[1787229890]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout 10002ms (19:49:30.791)\nTrace[1787229890]: [10.002729918s] [10.002729918s] END\n"} {"level":"error","ts":"2026-07-27T19:49:30Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1.Secret: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:49:51Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:49:51Z","logger":"authorino","msg":"Trace[918012473]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:49:41.958) (total time: 10002ms):\nTrace[918012473]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout 10002ms (19:49:51.961)\nTrace[918012473]: [10.002619932s] [10.002619932s] END\n"} {"level":"error","ts":"2026-07-27T19:49:51Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:50:19Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:50:19Z","logger":"authorino","msg":"Trace[1807008364]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:50:09.618) (total time: 10002ms):\nTrace[1807008364]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout 10002ms (19:50:19.620)\nTrace[1807008364]: [10.002469022s] [10.002469022s] END\n"} {"level":"error","ts":"2026-07-27T19:50:19Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1.Secret: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:50:29Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:50:29Z","logger":"authorino","msg":"Trace[452184176]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:50:19.552) (total time: 10001ms):\nTrace[452184176]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout 10001ms (19:50:29.554)\nTrace[452184176]: [10.001688723s] [10.001688723s] END\n"} {"level":"error","ts":"2026-07-27T19:50:29Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:50:43Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:50:43Z","logger":"authorino","msg":"Trace[1342861806]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:50:33.673) (total time: 10001ms):\nTrace[1342861806]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout 10001ms (19:50:43.674)\nTrace[1342861806]: [10.001428634s] [10.001428634s] END\n"} {"level":"error","ts":"2026-07-27T19:50:43Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:51:15Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:51:15Z","logger":"authorino","msg":"Trace[295027386]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:51:05.657) (total time: 10001ms):\nTrace[295027386]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout 10001ms (19:51:15.659)\nTrace[295027386]: [10.001640723s] [10.001640723s] END\n"} {"level":"error","ts":"2026-07-27T19:51:15Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:51:22Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:51:22Z","logger":"authorino","msg":"Trace[1016522732]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:51:12.693) (total time: 10000ms):\nTrace[1016522732]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout 10000ms (19:51:22.694)\nTrace[1016522732]: [10.000974423s] [10.000974423s] END\n"} {"level":"error","ts":"2026-07-27T19:51:22Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1.Secret: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:51:41Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:51:41Z","logger":"authorino","msg":"Trace[1798035137]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:51:31.698) (total time: 10001ms):\nTrace[1798035137]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout 10001ms (19:51:41.699)\nTrace[1798035137]: [10.001576943s] [10.001576943s] END\n"} {"level":"error","ts":"2026-07-27T19:51:41Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:52:07Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:52:07Z","logger":"authorino","msg":"Trace[1754925180]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:51:57.595) (total time: 10002ms):\nTrace[1754925180]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout 10002ms (19:52:07.597)\nTrace[1754925180]: [10.00224784s] [10.00224784s] END\n"} {"level":"error","ts":"2026-07-27T19:52:07Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:52:25Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:52:25Z","logger":"authorino","msg":"Trace[747611256]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:52:15.544) (total time: 10001ms):\nTrace[747611256]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout 10001ms (19:52:25.546)\nTrace[747611256]: [10.001640924s] [10.001640924s] END\n"} {"level":"error","ts":"2026-07-27T19:52:25Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:52:35Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout - error from a previous attempt: EOF\n"} {"level":"info","ts":"2026-07-27T19:52:35Z","logger":"authorino","msg":"Trace[1148987662]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:52:14.633) (total time: 21092ms):\nTrace[1148987662]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout - error from a previous attempt: EOF 21092ms (19:52:35.725)\nTrace[1148987662]: [21.092579054s] [21.092579054s] END\n"} {"level":"error","ts":"2026-07-27T19:52:35Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1.Secret: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=31923\": net/http: TLS handshake timeout - error from a previous attempt: EOF\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:52:55Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:52:55Z","logger":"authorino","msg":"Trace[563078390]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:52:45.773) (total time: 10001ms):\nTrace[563078390]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout 10001ms (19:52:55.775)\nTrace[563078390]: [10.001943952s] [10.001943952s] END\n"} {"level":"error","ts":"2026-07-27T19:52:55Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32341\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:53:13Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:53:13Z","logger":"authorino","msg":"Trace[2115106410]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:53:03.964) (total time: 10001ms):\nTrace[2115106410]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout 10001ms (19:53:13.966)\nTrace[2115106410]: [10.001879942s] [10.001879942s] END\n"} {"level":"error","ts":"2026-07-27T19:53:13Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"01918e70442d2cb18c94316131b0e0a241b4a5d12df5b1e1981a3bef420bbdb5","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"06b05a8e4dd69bdc4f333ad9509ee8cad3c5c0f5dd48edbe94c1158b60f79ed3","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"101d9a4d9b715268b3a3623fb114473501068b7352d534f324f4a3121b535746","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"18e32965997cdd9967355c6fa5264ed12c0a215989d459ed88d7d6de02865f76","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"1ef3f8313d73a7c14b76ea704cc3f23f015b2ab50034887cf570208a050e9863","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"305bde7d554d0d2810b101d2b8d4e0e15521c2afbf16166555b8e9aa4ed39a3d","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"30c4b39450ec876cfb2b0e66cbea2a74b7bcfafcf83d80a94c503487492e5a48","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"311b1be286674fd5684c9ac59b318287dade9769cfe4aeebd8c88e2dc6b72418","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"319a353672fc7601c875fa3f8b807adf60b64f093f022b2a1c3dfef3ac8cd4f4","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"331dc257e65f55f80700a586f7807093eda7b3d8e7d91215dc3c47731508480c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"35d34d59676c333235d7c9f02273e0380bb39f27cfd30856fedc0f7c0e5f79aa","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3774b789b89cb794db9f2ae5a4e410c6a000c480af86f9e4466977b4dc7de25a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3c0d47082320c9bb02d3788ab2b052c696af91abc2ae438437ae71a26936c7c2","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3d32277ea538e86091b57e14fc6f6582cbe1daa3e7e81223282a75b03a512083","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3dc75fc8307b952a3e873400cf417e90f2861e8a225abec4b22708deb7901db7","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3dd75e19cd66d310c30638e330078972afd6d2d96305f91055bc6a6f363fb8d3","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"4325b2a5e55bf181d1f503f5c3cbce3259c00ca301216d4ea5bc6b962627f1bd","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"4375a0165d777c3dbcac3b90772aafb3ba82b742e01878423b9fb1e122337433","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"452d598a0ad1047944cd02d3654e6793847781ecc87763544a69e05020a86cf3","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"47d4519f979dd8b06fb3b12ecf63e079887e8b64c789a1ff79b4c429f3a6aa2a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"4dc577fd60594d78a4a8bebe396f4b5a928f41bdc3f95c06d717cf1ddc3158b2","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"5c6918972d1a7f8ad5201880b7d6d9c1191ca1f25376682f691def7868e3fd02","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"5fea747cb803a5ee3aeb620187bd9ec74ccccd10a92474ef528215a7ff146c8f","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"630f18b14e5ce0234d4da773011770ac52ec305a1af3397f72696bf5262056bb","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"707878bcd632125ecab845de29fc41570ff2eb882a04dea05a2e77c0ea6d31f9","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"7371c34ce8e4df2309ee8f952c87f921947b289427b6e9ea579dcb9970fc1b86","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"80f10756c0e833d16937036ed66f1daf5bef95559ef05a5e852766b97b9bdaef","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"86cbb62fb4d82d4dc402b3281444539a5625c4bb4c86bbc4912c70e690a2e374","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"888fdad5bc63ac36546012ce97b2af4b7b1a45ef243fd2eba72f12c306f06e3e","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"98b96558d098c10ea5cd4b877712861a71c554909b27785cf9b672cf28954a5a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"98dd9311f361e75de96f77b800598c9f5c79c7fa539cfd493b5f7631f8efab90","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9903213c635804dd416e9f12956f0fa896195627091daaf593a30df64cf640c5","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9bbfc0b2e9e9acadd41342cd7c36a24afa8a5eef942d161782a6adae8411158a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9f3df6834dcf2df14d188decd66432f3940127e3a8261065cd3a44bd9ed1db6d","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"a124e7db3701742524b9534a4ba1eb68cc6d8f337ccc26c3f8f17b958cc795d0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"a394737442ca47bfbcb906bcf34d05c5515587984942470db6d6858608ab543a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"a7740f6e77d024a437502c023fb1d8939cb3cc2b9ed7f4073af7d779e19459eb","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"a89b0896df0d8cd430f1c81b6eb292ddc044daed393537d009a6330718f58d4b","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"b64d1d3a1a41de71c5b05aa58c2da5025409dfbb29fbaa63fe6a7b8fb71bf42e","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"ba8750633b915855593e941d13c912f4f6c6d6c6a659c241b67d178bbe85f188","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"bf72a6316f6ed79299511e58d068836cdc71dbca5e23944f783c9340ffa0aee1","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"c098209e055107073c6ded1d63e221315c2239f3cf17a7d15056a7494c5714fb","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"cc09b530b46a73b0d4ddb40e465580cff15db19d77e93e4903c9737647deeb1a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"cd452b3491b4064e772f38d1a288406bb3889f19efd54af26f6554f07046a8c0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d3b195a61a7f24c6bf1fba40f9f2e2565facb6af92e959c1546ac398a9172618","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d66f5b12bbb76f83ef1cb89313ae7356d9a4c974f276c1405eefa0cb8d66ceda","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"df733b2c652bfe2458c9e19932b1091e939c1a62178d6879462b3b4f73fca4bb","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"e38d76c6f386f12bc12190c87b39e6e77e182be454f85659a9197c301f2cd9be","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"e50f5fdcb9fb7e124557afe69edae9a95d05da488eae1cc4b5c1c7c1220a826a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"e9607d3c9394ff787a7cb9306c470b1007979008e27c6d6c68281553a4653faa","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"edcceb5a2e0cf1edde0fc3ed43068ce5b123a6fdc41949959c2c3b7a5a48bf24","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-27T19:53:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"f9a2a1e13eaadb4f450e63a68a3d05ec02a537019380f832f5992d1c5cdee533","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-27T19:54:20Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:54:20Z","logger":"authorino","msg":"Trace[1034800715]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:54:10.331) (total time: 10002ms):\nTrace[1034800715]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout 10001ms (19:54:20.333)\nTrace[1034800715]: [10.002040731s] [10.002040731s] END\n"} {"level":"error","ts":"2026-07-27T19:54:20Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1beta3.AuthConfig: failed to list *v1beta3.AuthConfig: Get \"https://172.31.0.1:443/apis/authorino.kuadrant.io/v1beta3/authconfigs?resourceVersion=32291\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:54:47Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=32302\": net/http: TLS handshake timeout\n"} {"level":"info","ts":"2026-07-27T19:54:47Z","logger":"authorino","msg":"Trace[2020750878]: \"Reflector ListAndWatch\" name:pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229 (27-Jul-2026 19:54:37.482) (total time: 10002ms):\nTrace[2020750878]: ---\"Objects listed\" error:Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=32302\": net/http: TLS handshake timeout 10002ms (19:54:47.485)\nTrace[2020750878]: [10.002339436s] [10.002339436s] END\n"} {"level":"error","ts":"2026-07-27T19:54:47Z","logger":"authorino","msg":"pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:229: Failed to watch *v1.Secret: failed to list *v1.Secret: Get \"https://172.31.0.1:443/api/v1/secrets?resourceVersion=32302\": net/http: TLS handshake timeout\n","stacktrace":"k8s.io/client-go/tools/cache.DefaultWatchErrorHandler\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:147\nk8s.io/client-go/tools/cache.(*Reflector).Run.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:292\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:226\nk8s.io/apimachinery/pkg/util/wait.BackoffUntil\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/backoff.go:227\nk8s.io/client-go/tools/cache.(*Reflector).Run\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/client-go@v0.28.3/tools/cache/reflector.go:290\nk8s.io/client-go/tools/cache.(*controller).Run.(*Group).StartWithChannel.func2\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:55\nk8s.io/apimachinery/pkg/util/wait.(*Group).Start.func1\n\t/cachi2/output/deps/gomod/pkg/mod/k8s.io/apimachinery@v0.28.3/pkg/util/wait/wait.go:72"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/01918e70442d2cb18c94316131b0e0a241b4a5d12df5b1e1981a3bef420bbdb5"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/06b05a8e4dd69bdc4f333ad9509ee8cad3c5c0f5dd48edbe94c1158b60f79ed3"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/101d9a4d9b715268b3a3623fb114473501068b7352d534f324f4a3121b535746"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/18e32965997cdd9967355c6fa5264ed12c0a215989d459ed88d7d6de02865f76"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/1ef3f8313d73a7c14b76ea704cc3f23f015b2ab50034887cf570208a050e9863"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/305bde7d554d0d2810b101d2b8d4e0e15521c2afbf16166555b8e9aa4ed39a3d"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/30c4b39450ec876cfb2b0e66cbea2a74b7bcfafcf83d80a94c503487492e5a48"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/311b1be286674fd5684c9ac59b318287dade9769cfe4aeebd8c88e2dc6b72418"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/319a353672fc7601c875fa3f8b807adf60b64f093f022b2a1c3dfef3ac8cd4f4"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/331dc257e65f55f80700a586f7807093eda7b3d8e7d91215dc3c47731508480c"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/35d34d59676c333235d7c9f02273e0380bb39f27cfd30856fedc0f7c0e5f79aa"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3774b789b89cb794db9f2ae5a4e410c6a000c480af86f9e4466977b4dc7de25a"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3c0d47082320c9bb02d3788ab2b052c696af91abc2ae438437ae71a26936c7c2"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3d32277ea538e86091b57e14fc6f6582cbe1daa3e7e81223282a75b03a512083"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3dc75fc8307b952a3e873400cf417e90f2861e8a225abec4b22708deb7901db7"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3dd75e19cd66d310c30638e330078972afd6d2d96305f91055bc6a6f363fb8d3"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/4325b2a5e55bf181d1f503f5c3cbce3259c00ca301216d4ea5bc6b962627f1bd"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/4375a0165d777c3dbcac3b90772aafb3ba82b742e01878423b9fb1e122337433"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/452d598a0ad1047944cd02d3654e6793847781ecc87763544a69e05020a86cf3"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/47d4519f979dd8b06fb3b12ecf63e079887e8b64c789a1ff79b4c429f3a6aa2a"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/4dc577fd60594d78a4a8bebe396f4b5a928f41bdc3f95c06d717cf1ddc3158b2"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/5c6918972d1a7f8ad5201880b7d6d9c1191ca1f25376682f691def7868e3fd02"} {"level":"info","ts":"2026-07-27T19:55:17Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/5fea747cb803a5ee3aeb620187bd9ec74ccccd10a92474ef528215a7ff146c8f"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/630f18b14e5ce0234d4da773011770ac52ec305a1af3397f72696bf5262056bb"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/707878bcd632125ecab845de29fc41570ff2eb882a04dea05a2e77c0ea6d31f9"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/7371c34ce8e4df2309ee8f952c87f921947b289427b6e9ea579dcb9970fc1b86"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/80f10756c0e833d16937036ed66f1daf5bef95559ef05a5e852766b97b9bdaef"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/86cbb62fb4d82d4dc402b3281444539a5625c4bb4c86bbc4912c70e690a2e374"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/888fdad5bc63ac36546012ce97b2af4b7b1a45ef243fd2eba72f12c306f06e3e"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/98b96558d098c10ea5cd4b877712861a71c554909b27785cf9b672cf28954a5a"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/98dd9311f361e75de96f77b800598c9f5c79c7fa539cfd493b5f7631f8efab90"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9903213c635804dd416e9f12956f0fa896195627091daaf593a30df64cf640c5"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9bbfc0b2e9e9acadd41342cd7c36a24afa8a5eef942d161782a6adae8411158a"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9f3df6834dcf2df14d188decd66432f3940127e3a8261065cd3a44bd9ed1db6d"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/a124e7db3701742524b9534a4ba1eb68cc6d8f337ccc26c3f8f17b958cc795d0"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/a394737442ca47bfbcb906bcf34d05c5515587984942470db6d6858608ab543a"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/a7740f6e77d024a437502c023fb1d8939cb3cc2b9ed7f4073af7d779e19459eb"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/a89b0896df0d8cd430f1c81b6eb292ddc044daed393537d009a6330718f58d4b"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/b64d1d3a1a41de71c5b05aa58c2da5025409dfbb29fbaa63fe6a7b8fb71bf42e"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ba8750633b915855593e941d13c912f4f6c6d6c6a659c241b67d178bbe85f188"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/bf72a6316f6ed79299511e58d068836cdc71dbca5e23944f783c9340ffa0aee1"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/c098209e055107073c6ded1d63e221315c2239f3cf17a7d15056a7494c5714fb"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/cc09b530b46a73b0d4ddb40e465580cff15db19d77e93e4903c9737647deeb1a"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/cd452b3491b4064e772f38d1a288406bb3889f19efd54af26f6554f07046a8c0"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/d3b195a61a7f24c6bf1fba40f9f2e2565facb6af92e959c1546ac398a9172618"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/d66f5b12bbb76f83ef1cb89313ae7356d9a4c974f276c1405eefa0cb8d66ceda"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/df733b2c652bfe2458c9e19932b1091e939c1a62178d6879462b3b4f73fca4bb"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/e38d76c6f386f12bc12190c87b39e6e77e182be454f85659a9197c301f2cd9be"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/e50f5fdcb9fb7e124557afe69edae9a95d05da488eae1cc4b5c1c7c1220a826a"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/e9607d3c9394ff787a7cb9306c470b1007979008e27c6d6c68281553a4653faa"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/edcceb5a2e0cf1edde0fc3ed43068ce5b123a6fdc41949959c2c3b7a5a48bf24"} {"level":"info","ts":"2026-07-27T19:55:18Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/f9a2a1e13eaadb4f450e63a68a3d05ec02a537019380f832f5992d1c5cdee533"}