{"level":"debug","ts":"2026-07-23T17:00:55Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"88577521-0a7f-411e-a77a-3c2675b1d024","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-r18zIDKJmfV3Lll0_5Q77WjpqGZCT88ZXsJcTiRAeYmLXVG7MVC1XEyECjfv"} {"level":"debug","ts":"2026-07-23T17:00:55Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"88577521-0a7f-411e-a77a-3c2675b1d024","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-b-6a0c6b.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-r18zIDKJmfV3Lll0_5Q77WjpqGZCT88ZXsJcTiRAeYmLXVG7MVC1XEyECjfv\"}"} {"level":"debug","ts":"2026-07-23T17:00:55Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"88577521-0a7f-411e-a77a-3c2675b1d024","config":{"Name":"apiKeyValidation","Priority":0,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Metrics":false,"Cache":{},"UserInfo":null,"UMA":null,"GenericHTTP":{"Endpoint":"https://maas-api-e2e-shared-b-6a0c6b.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","DynamicEndpoint":null,"Method":"POST","Body":{},"Parameters":[],"Headers":[],"ContentType":"application/json","SharedSecret":"","OAuth2":null,"OAuth2TokenForceFetch":false,"AuthCredentials":null}},"object":{"groups":["system:authenticated","system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"keyId":"a31c5fb5-dd0b-4dc0-8dc8-4b001dd5d738","keyName":"e2e-sub-iso-1698a8","subscription":"e2e-shared-sub-a9dbf0","tenant":"e2e-shared-b-6a0c6b","userId":"a31c5fb5-dd0b-4dc0-8dc8-4b001dd5d738","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-23T17:00:55Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"88577521-0a7f-411e-a77a-3c2675b1d024","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:00:55Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"88577521-0a7f-411e-a77a-3c2675b1d024","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-23T17:00:55Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"88577521-0a7f-411e-a77a-3c2675b1d024","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-23T17:00:55Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"88577521-0a7f-411e-a77a-3c2675b1d024","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-b-6a0c6b/sub-test-model-6a0c6b\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-b-6a0c6b/models/facebook/opt-125m\":{\"users\":null,\"groups\":[\"system:authenticated\"]}}\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-23T17:00:55Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"88577521-0a7f-411e-a77a-3c2675b1d024","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:default:tester-regular-user"} {"level":"debug","ts":"2026-07-23T17:00:55Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"88577521-0a7f-411e-a77a-3c2675b1d024","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:default\",\"system:authenticated\"]"} {"level":"debug","ts":"2026-07-23T17:00:55Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"88577521-0a7f-411e-a77a-3c2675b1d024","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-shared-sub-a9dbf0"} {"level":"debug","ts":"2026-07-23T17:00:55Z","logger":"authorino.service.auth.authpipeline.response","msg":"cannot build dynamic response","request id":"88577521-0a7f-411e-a77a-3c2675b1d024","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"userid","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"groups","Value":{}},{"Name":"keyId","Value":{}},{"Name":"keyName","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"subscription_info","Value":{}}]},"Plain":null},"reason":"no such key: subscription-info"} {"level":"info","ts":"2026-07-23T17:00:55Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"88577521-0a7f-411e-a77a-3c2675b1d024","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-23T17:00:55Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"88577521-0a7f-411e-a77a-3c2675b1d024","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-23T17:01:00Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/64bc561ea7be66bfb33e90f8869e55beddd80acb2cfe58e3cdeb5bb32fdc8775"} {"level":"info","ts":"2026-07-23T17:01:00Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/023826862fed48c4ed55a57cc71af123ed3baf4a57b15e0c434c7c325660df9b"} {"level":"info","ts":"2026-07-23T17:01:00Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/9d287c0b2dff92ec8e4bd85c78f1fdf211ec6abd8db0412ce9cc5ea7595269cb"} {"level":"info","ts":"2026-07-23T17:01:00Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/d86803077135a50cc948a97e97f93a0275394edce022b34faf0761b9c81cfe85"} {"level":"info","ts":"2026-07-23T17:01:00Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/64a7ed6692121ca3ea95cfded461a6e845076fe2adc0c31a5e7187a8a4eee308"} {"level":"info","ts":"2026-07-23T17:01:00Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/2a194452bbad1c6346033686b21756862f0baaff19bb7a5c3941d0cc63908d9e"} {"level":"info","ts":"2026-07-23T17:01:00Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/1ee7e0214a10e5a0e22accdabdab55542f017e7e6f621f1360bdbe9159789cac"} {"level":"info","ts":"2026-07-23T17:01:00Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/851c0efe0c973e9fb482aabe7349b4d95d5b030f963a94dd057215f73ab1f1c5"} {"level":"info","ts":"2026-07-23T17:01:00Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/1fe341c41b0c97590e368d3fc3dfc91b9b39534342e7cec6c083eabdaedd4012"} {"level":"info","ts":"2026-07-23T17:01:01Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/3f64a7f17645413913314a417a8bc6f1366883941b72791f2cace3ad64e97bcd"} {"level":"info","ts":"2026-07-23T17:01:01Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/9da65e247cc0eaf27eb8745115125eddcc61e88831914265abfe5d096a7d14c6"} {"level":"info","ts":"2026-07-23T17:01:01Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/f007ef54634459b1a4ef63c97e2365bd1f6efb9ecd33d77bcfe4e5b6f98aa5eb"} {"level":"info","ts":"2026-07-23T17:01:01Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/ed4854d5b8265bfbd36d422ea927cadb3db1db0e66b4c53b66f2197d39dc86de"} {"level":"info","ts":"2026-07-23T17:01:01Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/bbce815098928af920db282254a015015a6e15bccd84dee32d69a233b19287b1"} {"level":"info","ts":"2026-07-23T17:01:01Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/732b6a20f2ea0b4a8e8f79df126543c05d6b44d57b921759045b7d9756190ce2"} {"level":"info","ts":"2026-07-23T17:01:01Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/46e32ec9db80784d33273ea43b308ba89d68238537bb32ed97da9a28e7411283"} {"level":"info","ts":"2026-07-23T17:01:01Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/a77f7df6f63b9167213a37dcb8128535a7f0c0c3924574eaa0705d2bd4d7244e"} {"level":"info","ts":"2026-07-23T17:01:01Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/808609c9c9eb00559b9f29470dbdd88ebc531c3bd453010421f4c01765ce5d57"} {"level":"info","ts":"2026-07-23T17:01:01Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51"} {"level":"info","ts":"2026-07-23T17:01:01Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/4aee511469a362a9e81af3a5fac7e9685f5dfcce491856c7bae2e563e575fc28"} {"level":"info","ts":"2026-07-23T17:01:01Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/43a078a21902422b41868c67c001343845126f752580fa75d1f279f6b4d8fcfe"} {"level":"info","ts":"2026-07-23T17:01:01Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/e6616c7591d8d5edf44a7a5a407bf56e2d8600bac4997ff12187804b7237c636"} {"level":"info","ts":"2026-07-23T17:01:01Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/85885258f77cb16d284f1e0eeda048fcd08bc51aff7891174084c3caca984673"} {"level":"info","ts":"2026-07-23T17:01:01Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/6a5aae2c4e8964147d2359bdf151c6ed583addec2802d2fe0c6aa1ddc89023a3"} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"64bc561ea7be66bfb33e90f8869e55beddd80acb2cfe58e3cdeb5bb32fdc8775","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"64bc561ea7be66bfb33e90f8869e55beddd80acb2cfe58e3cdeb5bb32fdc8775","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"64bc561ea7be66bfb33e90f8869e55beddd80acb2cfe58e3cdeb5bb32fdc8775","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"64bc561ea7be66bfb33e90f8869e55beddd80acb2cfe58e3cdeb5bb32fdc8775","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/64bc561ea7be66bfb33e90f8869e55beddd80acb2cfe58e3cdeb5bb32fdc8775"} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"64bc561ea7be66bfb33e90f8869e55beddd80acb2cfe58e3cdeb5bb32fdc8775","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/64bc561ea7be66bfb33e90f8869e55beddd80acb2cfe58e3cdeb5bb32fdc8775"} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"64bc561ea7be66bfb33e90f8869e55beddd80acb2cfe58e3cdeb5bb32fdc8775","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["64bc561ea7be66bfb33e90f8869e55beddd80acb2cfe58e3cdeb5bb32fdc8775"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"64bc561ea7be66bfb33e90f8869e55beddd80acb2cfe58e3cdeb5bb32fdc8775","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"64bc561ea7be66bfb33e90f8869e55beddd80acb2cfe58e3cdeb5bb32fdc8775","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/64bc561ea7be66bfb33e90f8869e55beddd80acb2cfe58e3cdeb5bb32fdc8775"} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987"} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987"} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51"} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51"} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987"} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51"} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987"} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51"} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7"} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51"} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"error","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"failed to update the resource","authconfig":{"name":"2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7","namespace":"kuadrant-system"},"error":"Operation cannot be fulfilled on authconfigs.authorino.kuadrant.io \"2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7\": the object has been modified; please apply your changes to the latest version and try again","stacktrace":"github.com/kuadrant/authorino/controllers.(*AuthConfigStatusUpdater).updateAuthConfigStatus\n\t/usr/src/authorino/controllers/auth_config_status_updater.go:162\ngithub.com/kuadrant/authorino/controllers.(*AuthConfigStatusUpdater).Reconcile\n\t/usr/src/authorino/controllers/auth_config_status_updater.go:81\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Reconcile\n\t/opt/app-root/src/go/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/internal/controller/controller.go:119\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler\n\t/opt/app-root/src/go/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/internal/controller/controller.go:316\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem\n\t/opt/app-root/src/go/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/internal/controller/controller.go:266\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2\n\t/opt/app-root/src/go/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/internal/controller/controller.go:227"} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987"} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7"} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98"} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7"} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98"} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7"} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98"} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7"} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef"} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98"} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef"} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98"} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"error","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"failed to update the resource","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"},"error":"Operation cannot be fulfilled on authconfigs.authorino.kuadrant.io \"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98\": the object has been modified; please apply your changes to the latest version and try again","stacktrace":"github.com/kuadrant/authorino/controllers.(*AuthConfigStatusUpdater).updateAuthConfigStatus\n\t/usr/src/authorino/controllers/auth_config_status_updater.go:162\ngithub.com/kuadrant/authorino/controllers.(*AuthConfigStatusUpdater).Reconcile\n\t/usr/src/authorino/controllers/auth_config_status_updater.go:81\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Reconcile\n\t/opt/app-root/src/go/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/internal/controller/controller.go:119\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler\n\t/opt/app-root/src/go/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/internal/controller/controller.go:316\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem\n\t/opt/app-root/src/go/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/internal/controller/controller.go:266\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2\n\t/opt/app-root/src/go/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/internal/controller/controller.go:227"} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef"} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98"} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:21Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98"} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:21Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"44d0e17e4dd353c6111913cffec6bb9d716ccd7416d9ce08f79b171147ffc5fe","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"44d0e17e4dd353c6111913cffec6bb9d716ccd7416d9ce08f79b171147ffc5fe","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/44d0e17e4dd353c6111913cffec6bb9d716ccd7416d9ce08f79b171147ffc5fe"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"4e0735074c3a16ccc776766314b79e598dd7b2f83025596c8d2ff341ae2afd0d","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"4e0735074c3a16ccc776766314b79e598dd7b2f83025596c8d2ff341ae2afd0d","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"44d0e17e4dd353c6111913cffec6bb9d716ccd7416d9ce08f79b171147ffc5fe","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["44d0e17e4dd353c6111913cffec6bb9d716ccd7416d9ce08f79b171147ffc5fe"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/4e0735074c3a16ccc776766314b79e598dd7b2f83025596c8d2ff341ae2afd0d"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/44d0e17e4dd353c6111913cffec6bb9d716ccd7416d9ce08f79b171147ffc5fe"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"44d0e17e4dd353c6111913cffec6bb9d716ccd7416d9ce08f79b171147ffc5fe","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/4e0735074c3a16ccc776766314b79e598dd7b2f83025596c8d2ff341ae2afd0d"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/44d0e17e4dd353c6111913cffec6bb9d716ccd7416d9ce08f79b171147ffc5fe"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"4e0735074c3a16ccc776766314b79e598dd7b2f83025596c8d2ff341ae2afd0d","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["4e0735074c3a16ccc776766314b79e598dd7b2f83025596c8d2ff341ae2afd0d"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/69f1603cf17cd7fc684c7f533f41a2cc83d94680a0fa265d66986f182775bd92"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"4e0735074c3a16ccc776766314b79e598dd7b2f83025596c8d2ff341ae2afd0d","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"44d0e17e4dd353c6111913cffec6bb9d716ccd7416d9ce08f79b171147ffc5fe","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"69f1603cf17cd7fc684c7f533f41a2cc83d94680a0fa265d66986f182775bd92","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["69f1603cf17cd7fc684c7f533f41a2cc83d94680a0fa265d66986f182775bd92"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/54d793a8ffd33592356dbe52e3686b3f58c6c993ac11e14d58a2e44bc8aeb887"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"69f1603cf17cd7fc684c7f533f41a2cc83d94680a0fa265d66986f182775bd92","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"54d793a8ffd33592356dbe52e3686b3f58c6c993ac11e14d58a2e44bc8aeb887","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["54d793a8ffd33592356dbe52e3686b3f58c6c993ac11e14d58a2e44bc8aeb887"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/88c17c36ca4fd6109a5248e6a5eed270752c3bf278e80f4ad1f62ca0f7e6271e"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"54d793a8ffd33592356dbe52e3686b3f58c6c993ac11e14d58a2e44bc8aeb887","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"88c17c36ca4fd6109a5248e6a5eed270752c3bf278e80f4ad1f62ca0f7e6271e","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["88c17c36ca4fd6109a5248e6a5eed270752c3bf278e80f4ad1f62ca0f7e6271e"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/2120700904e6eb3479fc918047309d484744312cf1f7b188aa20418970999aa4"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/4e0735074c3a16ccc776766314b79e598dd7b2f83025596c8d2ff341ae2afd0d"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/4aee511469a362a9e81af3a5fac7e9685f5dfcce491856c7bae2e563e575fc28"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"88c17c36ca4fd6109a5248e6a5eed270752c3bf278e80f4ad1f62ca0f7e6271e","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/2a194452bbad1c6346033686b21756862f0baaff19bb7a5c3941d0cc63908d9e"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/1ee7e0214a10e5a0e22accdabdab55542f017e7e6f621f1360bdbe9159789cac"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"2120700904e6eb3479fc918047309d484744312cf1f7b188aa20418970999aa4","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["2120700904e6eb3479fc918047309d484744312cf1f7b188aa20418970999aa4"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/69f1603cf17cd7fc684c7f533f41a2cc83d94680a0fa265d66986f182775bd92"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/d86803077135a50cc948a97e97f93a0275394edce022b34faf0761b9c81cfe85"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"2120700904e6eb3479fc918047309d484744312cf1f7b188aa20418970999aa4","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"4e0735074c3a16ccc776766314b79e598dd7b2f83025596c8d2ff341ae2afd0d","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"4aee511469a362a9e81af3a5fac7e9685f5dfcce491856c7bae2e563e575fc28","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["4aee511469a362a9e81af3a5fac7e9685f5dfcce491856c7bae2e563e575fc28"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9da65e247cc0eaf27eb8745115125eddcc61e88831914265abfe5d096a7d14c6"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/54d793a8ffd33592356dbe52e3686b3f58c6c993ac11e14d58a2e44bc8aeb887"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/023826862fed48c4ed55a57cc71af123ed3baf4a57b15e0c434c7c325660df9b"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"4aee511469a362a9e81af3a5fac7e9685f5dfcce491856c7bae2e563e575fc28","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"2a194452bbad1c6346033686b21756862f0baaff19bb7a5c3941d0cc63908d9e","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["2a194452bbad1c6346033686b21756862f0baaff19bb7a5c3941d0cc63908d9e"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/5d0c9145b342fe15ffb041b38a607cced4deba40a9621021c6fe731511b9600f"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/2383ef7c246bbce29ba59420198fe34ccca0fe5bb94f35c37b4bd75693e04b8c"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"2a194452bbad1c6346033686b21756862f0baaff19bb7a5c3941d0cc63908d9e","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"1ee7e0214a10e5a0e22accdabdab55542f017e7e6f621f1360bdbe9159789cac","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["1ee7e0214a10e5a0e22accdabdab55542f017e7e6f621f1360bdbe9159789cac"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/94a977116207d78e1b97c8f0224b811c39bf39c0ecc885517e9c448bf6cd2f58"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/88c17c36ca4fd6109a5248e6a5eed270752c3bf278e80f4ad1f62ca0f7e6271e"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/31958d352e33f6b01fa513ca4ca9ac376c3ac073702480197e1b27d4e159e834"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"1ee7e0214a10e5a0e22accdabdab55542f017e7e6f621f1360bdbe9159789cac","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"69f1603cf17cd7fc684c7f533f41a2cc83d94680a0fa265d66986f182775bd92","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"d86803077135a50cc948a97e97f93a0275394edce022b34faf0761b9c81cfe85","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["d86803077135a50cc948a97e97f93a0275394edce022b34faf0761b9c81cfe85"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"d86803077135a50cc948a97e97f93a0275394edce022b34faf0761b9c81cfe85","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"9da65e247cc0eaf27eb8745115125eddcc61e88831914265abfe5d096a7d14c6","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["9da65e247cc0eaf27eb8745115125eddcc61e88831914265abfe5d096a7d14c6"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/2120700904e6eb3479fc918047309d484744312cf1f7b188aa20418970999aa4"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/4aee511469a362a9e81af3a5fac7e9685f5dfcce491856c7bae2e563e575fc28"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/2a194452bbad1c6346033686b21756862f0baaff19bb7a5c3941d0cc63908d9e"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"9da65e247cc0eaf27eb8745115125eddcc61e88831914265abfe5d096a7d14c6","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"54d793a8ffd33592356dbe52e3686b3f58c6c993ac11e14d58a2e44bc8aeb887","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"023826862fed48c4ed55a57cc71af123ed3baf4a57b15e0c434c7c325660df9b","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["023826862fed48c4ed55a57cc71af123ed3baf4a57b15e0c434c7c325660df9b"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/1ee7e0214a10e5a0e22accdabdab55542f017e7e6f621f1360bdbe9159789cac"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/d86803077135a50cc948a97e97f93a0275394edce022b34faf0761b9c81cfe85"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"023826862fed48c4ed55a57cc71af123ed3baf4a57b15e0c434c7c325660df9b","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"5d0c9145b342fe15ffb041b38a607cced4deba40a9621021c6fe731511b9600f","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["5d0c9145b342fe15ffb041b38a607cced4deba40a9621021c6fe731511b9600f"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9da65e247cc0eaf27eb8745115125eddcc61e88831914265abfe5d096a7d14c6"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/023826862fed48c4ed55a57cc71af123ed3baf4a57b15e0c434c7c325660df9b"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"5d0c9145b342fe15ffb041b38a607cced4deba40a9621021c6fe731511b9600f","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"2383ef7c246bbce29ba59420198fe34ccca0fe5bb94f35c37b4bd75693e04b8c","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["2383ef7c246bbce29ba59420198fe34ccca0fe5bb94f35c37b4bd75693e04b8c"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/5d0c9145b342fe15ffb041b38a607cced4deba40a9621021c6fe731511b9600f"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"2383ef7c246bbce29ba59420198fe34ccca0fe5bb94f35c37b4bd75693e04b8c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"94a977116207d78e1b97c8f0224b811c39bf39c0ecc885517e9c448bf6cd2f58","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["94a977116207d78e1b97c8f0224b811c39bf39c0ecc885517e9c448bf6cd2f58"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/2383ef7c246bbce29ba59420198fe34ccca0fe5bb94f35c37b4bd75693e04b8c"} {"level":"info","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"94a977116207d78e1b97c8f0224b811c39bf39c0ecc885517e9c448bf6cd2f58","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"88c17c36ca4fd6109a5248e6a5eed270752c3bf278e80f4ad1f62ca0f7e6271e","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:22Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"31958d352e33f6b01fa513ca4ca9ac376c3ac073702480197e1b27d4e159e834","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:22Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["31958d352e33f6b01fa513ca4ca9ac376c3ac073702480197e1b27d4e159e834"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/94a977116207d78e1b97c8f0224b811c39bf39c0ecc885517e9c448bf6cd2f58"} {"level":"info","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"31958d352e33f6b01fa513ca4ca9ac376c3ac073702480197e1b27d4e159e834","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:23Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:23Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/31958d352e33f6b01fa513ca4ca9ac376c3ac073702480197e1b27d4e159e834"} {"level":"info","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"2120700904e6eb3479fc918047309d484744312cf1f7b188aa20418970999aa4","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"4aee511469a362a9e81af3a5fac7e9685f5dfcce491856c7bae2e563e575fc28","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"2a194452bbad1c6346033686b21756862f0baaff19bb7a5c3941d0cc63908d9e","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"1ee7e0214a10e5a0e22accdabdab55542f017e7e6f621f1360bdbe9159789cac","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d86803077135a50cc948a97e97f93a0275394edce022b34faf0761b9c81cfe85","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9da65e247cc0eaf27eb8745115125eddcc61e88831914265abfe5d096a7d14c6","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"023826862fed48c4ed55a57cc71af123ed3baf4a57b15e0c434c7c325660df9b","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"5d0c9145b342fe15ffb041b38a607cced4deba40a9621021c6fe731511b9600f","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"2383ef7c246bbce29ba59420198fe34ccca0fe5bb94f35c37b4bd75693e04b8c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"94a977116207d78e1b97c8f0224b811c39bf39c0ecc885517e9c448bf6cd2f58","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"31958d352e33f6b01fa513ca4ca9ac376c3ac073702480197e1b27d4e159e834","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:23Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:23Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6"} {"level":"info","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6"} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:23Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:23Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-23T17:02:23Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-23T17:02:23Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6"} {"level":"info","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:23Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:23Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6"} {"level":"info","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-23T17:02:23Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-23T17:02:23Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6"} {"level":"error","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"failed to update the resource","authconfig":{"name":"347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6","namespace":"kuadrant-system"},"error":"Operation cannot be fulfilled on authconfigs.authorino.kuadrant.io \"347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6\": the object has been modified; please apply your changes to the latest version and try again","stacktrace":"github.com/kuadrant/authorino/controllers.(*AuthConfigStatusUpdater).updateAuthConfigStatus\n\t/usr/src/authorino/controllers/auth_config_status_updater.go:162\ngithub.com/kuadrant/authorino/controllers.(*AuthConfigStatusUpdater).Reconcile\n\t/usr/src/authorino/controllers/auth_config_status_updater.go:81\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Reconcile\n\t/opt/app-root/src/go/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/internal/controller/controller.go:119\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).reconcileHandler\n\t/opt/app-root/src/go/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/internal/controller/controller.go:316\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).processNextWorkItem\n\t/opt/app-root/src/go/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/internal/controller/controller.go:266\nsigs.k8s.io/controller-runtime/pkg/internal/controller.(*Controller).Start.func2.2\n\t/opt/app-root/src/go/pkg/mod/sigs.k8s.io/controller-runtime@v0.16.3/pkg/internal/controller/controller.go:227"} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-23T17:02:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"2b23500d-9804-41e6-97ec-115ef877a931","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:57966","PortSpecifier":{"PortValue":57966}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.67:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"2b23500d-9804-41e6-97ec-115ef877a931","method":"POST","path":"/maas-api/v1/api-keys","host":"e2e-shared-a-dc9a69.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"2b23500d-9804-41e6-97ec-115ef877a931","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:57966","PortSpecifier":{"PortValue":57966}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.67:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784826145,"nanos":232894731},"http":{"id":"2b23500d-9804-41e6-97ec-115ef877a931","method":"POST","headers":{":authority":"e2e-shared-a-dc9a69.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com",":method":"POST",":path":"/maas-api/v1/api-keys",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.identity.kubernetesauth","msg":"calling kubernetes token review api","request id":"2b23500d-9804-41e6-97ec-115ef877a931","tokenreview":{"name":""}} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"2b23500d-9804-41e6-97ec-115ef877a931","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":{"authenticated":true,"user":{"username":"system:serviceaccount:default:tester-regular-user","uid":"090e2b71-8985-4113-90af-4281f2c814cc","groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"extra":{"authentication.kubernetes.io/credential-id":["JTI=52c9676d-c1ff-4789-b31c-012be99a01c4"]}},"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/6ddd0b07eee1"]}} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"2b23500d-9804-41e6-97ec-115ef877a931","input":{"auth":{"identity":{"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/6ddd0b07eee1"],"authenticated":true,"user":{"extra":{"authentication.kubernetes.io/credential-id":["JTI=52c9676d-c1ff-4789-b31c-012be99a01c4"]},"groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"uid":"090e2b71-8985-4113-90af-4281f2c814cc","username":"system:serviceaccount:default:tester-regular-user"}}},"context":{"context_extensions":{"host":"1ee7e0214a10e5a0e22accdabdab55542f017e7e6f621f1360bdbe9159789cac"},"destination":{"address":{"Address":{"SocketAddress":{"PortSpecifier":{"PortValue":443},"address":"10.132.0.67:443"}}}},"metadata_context":{},"request":{"http":{"headers":{":authority":"e2e-shared-a-dc9a69.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com",":method":"POST",":path":"/maas-api/v1/api-keys",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"2b23500d-9804-41e6-97ec-115ef877a931","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-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"2b23500d-9804-41e6-97ec-115ef877a931","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-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"2b23500d-9804-41e6-97ec-115ef877a931","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-dc9a69/models/facebook/opt-125m\":{\"users\":null,\"groups\":[\"system:authenticated\"]}}\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-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.response","msg":"cannot build dynamic response","request id":"2b23500d-9804-41e6-97ec-115ef877a931","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"groups_str","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"userid","Value":{}},{"Name":"keyId","Value":{}},{"Name":"keyName","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"groups","Value":{}}]},"Plain":null},"reason":"no such key: metadata"} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"2b23500d-9804-41e6-97ec-115ef877a931","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-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"2b23500d-9804-41e6-97ec-115ef877a931","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-23T17:02:25Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"2b23500d-9804-41e6-97ec-115ef877a931","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"2b23500d-9804-41e6-97ec-115ef877a931","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"1389ccf9-9c3a-414e-9da7-1fff063a4aa7","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:51030","PortSpecifier":{"PortValue":51030}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.68:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"1389ccf9-9c3a-414e-9da7-1fff063a4aa7","method":"POST","path":"/maas-api/v1/api-keys","host":"e2e-shared-b-6a0c6b.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"1389ccf9-9c3a-414e-9da7-1fff063a4aa7","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:51030","PortSpecifier":{"PortValue":51030}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.68:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784826145,"nanos":284683613},"http":{"id":"1389ccf9-9c3a-414e-9da7-1fff063a4aa7","method":"POST","headers":{":authority":"e2e-shared-b-6a0c6b.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com",":method":"POST",":path":"/maas-api/v1/api-keys",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.identity.kubernetesauth","msg":"calling kubernetes token review api","request id":"1389ccf9-9c3a-414e-9da7-1fff063a4aa7","tokenreview":{"name":""}} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"1389ccf9-9c3a-414e-9da7-1fff063a4aa7","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":{"authenticated":true,"user":{"username":"system:serviceaccount:default:tester-regular-user","uid":"090e2b71-8985-4113-90af-4281f2c814cc","groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"extra":{"authentication.kubernetes.io/credential-id":["JTI=52c9676d-c1ff-4789-b31c-012be99a01c4"]}},"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/6ddd0b07eee1"]}} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"1389ccf9-9c3a-414e-9da7-1fff063a4aa7","input":{"auth":{"identity":{"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/6ddd0b07eee1"],"authenticated":true,"user":{"extra":{"authentication.kubernetes.io/credential-id":["JTI=52c9676d-c1ff-4789-b31c-012be99a01c4"]},"groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"uid":"090e2b71-8985-4113-90af-4281f2c814cc","username":"system:serviceaccount:default:tester-regular-user"}}},"context":{"context_extensions":{"host":"2a194452bbad1c6346033686b21756862f0baaff19bb7a5c3941d0cc63908d9e"},"destination":{"address":{"Address":{"SocketAddress":{"PortSpecifier":{"PortValue":443},"address":"10.132.0.68:443"}}}},"metadata_context":{},"request":{"http":{"headers":{":authority":"e2e-shared-b-6a0c6b.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com",":method":"POST",":path":"/maas-api/v1/api-keys",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"1389ccf9-9c3a-414e-9da7-1fff063a4aa7","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-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"1389ccf9-9c3a-414e-9da7-1fff063a4aa7","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-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"1389ccf9-9c3a-414e-9da7-1fff063a4aa7","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-b-6a0c6b/rate-test-model-6a0c6b\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-b-6a0c6b/models/facebook/opt-125m\":{\"users\":null,\"groups\":[\"system:authenticated\"]}}\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-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.response","msg":"cannot build dynamic response","request id":"1389ccf9-9c3a-414e-9da7-1fff063a4aa7","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_key","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"userid","Value":{}},{"Name":"keyId","Value":{}},{"Name":"keyName","Value":{}}]},"Plain":null},"reason":"no such key: metadata"} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"1389ccf9-9c3a-414e-9da7-1fff063a4aa7","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-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"1389ccf9-9c3a-414e-9da7-1fff063a4aa7","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-23T17:02:25Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"1389ccf9-9c3a-414e-9da7-1fff063a4aa7","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"1389ccf9-9c3a-414e-9da7-1fff063a4aa7","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:57978","PortSpecifier":{"PortValue":57978}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.67:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","method":"POST","path":"/ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69/v1/completions","host":"e2e-shared-a-dc9a69.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:57978","PortSpecifier":{"PortValue":57978}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.67:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784826145,"nanos":329421256},"http":{"id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","method":"POST","headers":{":authority":"e2e-shared-a-dc9a69.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-pYKeZVC8wwMX4iqD_ECFY3Ycc92w4BydvQbCT6YTkrsUdLZJqb3tr80ykkTj"} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-pYKeZVC8wwMX4iqD_ECFY3Ycc92w4BydvQbCT6YTkrsUdLZJqb3tr80ykkTj\"}"} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","config":{"Name":"apiKeyValidation","Priority":0,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Metrics":false,"Cache":{},"UserInfo":null,"UMA":null,"GenericHTTP":{"Endpoint":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","DynamicEndpoint":null,"Method":"POST","Body":{},"Parameters":[],"Headers":[],"ContentType":"application/json","SharedSecret":"","OAuth2":null,"OAuth2TokenForceFetch":false,"AuthCredentials":null}},"object":{"groups":["system:authenticated","system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"keyId":"93f7a9be-7194-4b4a-b3cc-bf14c98928e2","keyName":"e2e-rate-a-7d53f1","subscription":"e2e-rate-iso-a-7d53f1","tenant":"e2e-shared-a-dc9a69","userId":"93f7a9be-7194-4b4a-b3cc-bf14c98928e2","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/subscriptions/select","headers":{"Content-Type":["application/json"]},"body":"{\"groups\":[\"system:authenticated\",\"system:serviceaccounts\",\"system:serviceaccounts:default\",\"system:authenticated\"],\"requestedModel\":\"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69\",\"requestedSubscription\":\"e2e-rate-iso-a-7d53f1\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","config":{"Name":"subscription-info","Priority":1,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Metrics":false,"Cache":{},"UserInfo":null,"UMA":null,"GenericHTTP":{"Endpoint":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/subscriptions/select","DynamicEndpoint":null,"Method":"POST","Body":{},"Parameters":[],"Headers":[],"ContentType":"application/json","SharedSecret":"","OAuth2":null,"OAuth2TokenForceFetch":false,"AuthCredentials":null}},"object":{"modelRefs":[{"name":"rate-test-model-dc9a69","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-7d53f1","namespace":"ai-tenant-e2e-shared-a-dc9a69","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69"}} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","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-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","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-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-dc9a69/models/facebook/opt-125m\":{\"users\":null,\"groups\":[\"system:authenticated\"]}}\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-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","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-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","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:default:tester-regular-user"} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","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-rate-iso-a-7d53f1"} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","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:default\",\"system:authenticated\"]"} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"keyId","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"userid","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"groups","Value":{}},{"Name":"keyName","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"groups_str","Value":{}}]},"Plain":null},"object":{"groups":["system:authenticated","system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"groups_str":"system:authenticated,system:serviceaccounts,system:serviceaccounts:default,system:authenticated","keyId":"93f7a9be-7194-4b4a-b3cc-bf14c98928e2","keyName":"e2e-rate-a-7d53f1","selected_subscription":"e2e-rate-iso-a-7d53f1","selected_subscription_key":"ai-tenant-e2e-shared-a-dc9a69/e2e-rate-iso-a-7d53f1@ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"name":"rate-test-model-dc9a69","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-7d53f1","namespace":"ai-tenant-e2e-shared-a-dc9a69","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-23T17:02:25Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"f8a9371d-63c9-4073-bbfd-7f4a2b86f8aa","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-23T17:02:26Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"69792126-2a2d-40eb-a041-6157936c5b4c","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:57992","PortSpecifier":{"PortValue":57992}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.67:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"69792126-2a2d-40eb-a041-6157936c5b4c","method":"POST","path":"/ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69/v1/completions","host":"e2e-shared-a-dc9a69.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-23T17:02:26Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"69792126-2a2d-40eb-a041-6157936c5b4c","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:57992","PortSpecifier":{"PortValue":57992}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.67:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784826146,"nanos":400434562},"http":{"id":"69792126-2a2d-40eb-a041-6157936c5b4c","method":"POST","headers":{":authority":"e2e-shared-a-dc9a69.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:26Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"69792126-2a2d-40eb-a041-6157936c5b4c","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-pYKeZVC8wwMX4iqD_ECFY3Ycc92w4BydvQbCT6YTkrsUdLZJqb3tr80ykkTj"} {"level":"debug","ts":"2026-07-23T17:02:26Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"69792126-2a2d-40eb-a041-6157936c5b4c","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-pYKeZVC8wwMX4iqD_ECFY3Ycc92w4BydvQbCT6YTkrsUdLZJqb3tr80ykkTj\"}"} {"level":"debug","ts":"2026-07-23T17:02:26Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"69792126-2a2d-40eb-a041-6157936c5b4c","config":{"Name":"apiKeyValidation","Priority":0,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Metrics":false,"Cache":{},"UserInfo":null,"UMA":null,"GenericHTTP":{"Endpoint":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","DynamicEndpoint":null,"Method":"POST","Body":{},"Parameters":[],"Headers":[],"ContentType":"application/json","SharedSecret":"","OAuth2":null,"OAuth2TokenForceFetch":false,"AuthCredentials":null}},"object":{"groups":["system:authenticated","system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"keyId":"93f7a9be-7194-4b4a-b3cc-bf14c98928e2","keyName":"e2e-rate-a-7d53f1","subscription":"e2e-rate-iso-a-7d53f1","tenant":"e2e-shared-a-dc9a69","userId":"93f7a9be-7194-4b4a-b3cc-bf14c98928e2","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-23T17:02:26Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"69792126-2a2d-40eb-a041-6157936c5b4c","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/subscriptions/select","headers":{"Content-Type":["application/json"]},"body":"{\"groups\":[\"system:authenticated\",\"system:serviceaccounts\",\"system:serviceaccounts:default\",\"system:authenticated\"],\"requestedModel\":\"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69\",\"requestedSubscription\":\"e2e-rate-iso-a-7d53f1\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-23T17:02:26Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"69792126-2a2d-40eb-a041-6157936c5b4c","config":{"Name":"subscription-info","Priority":1,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Metrics":false,"Cache":{},"UserInfo":null,"UMA":null,"GenericHTTP":{"Endpoint":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/subscriptions/select","DynamicEndpoint":null,"Method":"POST","Body":{},"Parameters":[],"Headers":[],"ContentType":"application/json","SharedSecret":"","OAuth2":null,"OAuth2TokenForceFetch":false,"AuthCredentials":null}},"object":{"modelRefs":[{"name":"rate-test-model-dc9a69","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-7d53f1","namespace":"ai-tenant-e2e-shared-a-dc9a69","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69"}} {"level":"debug","ts":"2026-07-23T17:02:26Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"69792126-2a2d-40eb-a041-6157936c5b4c","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:26Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"69792126-2a2d-40eb-a041-6157936c5b4c","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-23T17:02:26Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"69792126-2a2d-40eb-a041-6157936c5b4c","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-23T17:02:26Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"69792126-2a2d-40eb-a041-6157936c5b4c","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-23T17:02:26Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"69792126-2a2d-40eb-a041-6157936c5b4c","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-dc9a69/models/facebook/opt-125m\":{\"users\":null,\"groups\":[\"system:authenticated\"]}}\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-23T17:02:26Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"69792126-2a2d-40eb-a041-6157936c5b4c","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:default:tester-regular-user"} {"level":"debug","ts":"2026-07-23T17:02:26Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"69792126-2a2d-40eb-a041-6157936c5b4c","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-rate-iso-a-7d53f1"} {"level":"debug","ts":"2026-07-23T17:02:26Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"69792126-2a2d-40eb-a041-6157936c5b4c","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:default\",\"system:authenticated\"]"} {"level":"debug","ts":"2026-07-23T17:02:26Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"69792126-2a2d-40eb-a041-6157936c5b4c","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"keyId","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"userid","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"groups","Value":{}},{"Name":"keyName","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"groups_str","Value":{}}]},"Plain":null},"object":{"groups":["system:authenticated","system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"groups_str":"system:authenticated,system:serviceaccounts,system:serviceaccounts:default,system:authenticated","keyId":"93f7a9be-7194-4b4a-b3cc-bf14c98928e2","keyName":"e2e-rate-a-7d53f1","selected_subscription":"e2e-rate-iso-a-7d53f1","selected_subscription_key":"ai-tenant-e2e-shared-a-dc9a69/e2e-rate-iso-a-7d53f1@ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"name":"rate-test-model-dc9a69","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-7d53f1","namespace":"ai-tenant-e2e-shared-a-dc9a69","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-23T17:02:26Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"69792126-2a2d-40eb-a041-6157936c5b4c","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-23T17:02:26Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"69792126-2a2d-40eb-a041-6157936c5b4c","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-23T17:02:27Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:55346","PortSpecifier":{"PortValue":55346}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.67:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","method":"POST","path":"/ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69/v1/completions","host":"e2e-shared-a-dc9a69.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-23T17:02:27Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:55346","PortSpecifier":{"PortValue":55346}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.67:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784826147,"nanos":439149413},"http":{"id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","method":"POST","headers":{":authority":"e2e-shared-a-dc9a69.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:27Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-pYKeZVC8wwMX4iqD_ECFY3Ycc92w4BydvQbCT6YTkrsUdLZJqb3tr80ykkTj"} {"level":"debug","ts":"2026-07-23T17:02:27Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-pYKeZVC8wwMX4iqD_ECFY3Ycc92w4BydvQbCT6YTkrsUdLZJqb3tr80ykkTj\"}"} {"level":"debug","ts":"2026-07-23T17:02:27Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","config":{"Name":"apiKeyValidation","Priority":0,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Metrics":false,"Cache":{},"UserInfo":null,"UMA":null,"GenericHTTP":{"Endpoint":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","DynamicEndpoint":null,"Method":"POST","Body":{},"Parameters":[],"Headers":[],"ContentType":"application/json","SharedSecret":"","OAuth2":null,"OAuth2TokenForceFetch":false,"AuthCredentials":null}},"object":{"groups":["system:authenticated","system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"keyId":"93f7a9be-7194-4b4a-b3cc-bf14c98928e2","keyName":"e2e-rate-a-7d53f1","subscription":"e2e-rate-iso-a-7d53f1","tenant":"e2e-shared-a-dc9a69","userId":"93f7a9be-7194-4b4a-b3cc-bf14c98928e2","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-23T17:02:27Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/subscriptions/select","headers":{"Content-Type":["application/json"]},"body":"{\"groups\":[\"system:authenticated\",\"system:serviceaccounts\",\"system:serviceaccounts:default\",\"system:authenticated\"],\"requestedModel\":\"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69\",\"requestedSubscription\":\"e2e-rate-iso-a-7d53f1\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-23T17:02:27Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","config":{"Name":"subscription-info","Priority":1,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Metrics":false,"Cache":{},"UserInfo":null,"UMA":null,"GenericHTTP":{"Endpoint":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/subscriptions/select","DynamicEndpoint":null,"Method":"POST","Body":{},"Parameters":[],"Headers":[],"ContentType":"application/json","SharedSecret":"","OAuth2":null,"OAuth2TokenForceFetch":false,"AuthCredentials":null}},"object":{"modelRefs":[{"name":"rate-test-model-dc9a69","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-7d53f1","namespace":"ai-tenant-e2e-shared-a-dc9a69","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69"}} {"level":"debug","ts":"2026-07-23T17:02:27Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:27Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","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-23T17:02:27Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","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-23T17:02:27Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","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-23T17:02:27Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-dc9a69/models/facebook/opt-125m\":{\"users\":null,\"groups\":[\"system:authenticated\"]}}\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-23T17:02:27Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","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:default:tester-regular-user"} {"level":"debug","ts":"2026-07-23T17:02:27Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","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-rate-iso-a-7d53f1"} {"level":"debug","ts":"2026-07-23T17:02:27Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","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:default\",\"system:authenticated\"]"} {"level":"debug","ts":"2026-07-23T17:02:27Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"keyId","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"userid","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"groups","Value":{}},{"Name":"keyName","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"groups_str","Value":{}}]},"Plain":null},"object":{"groups":["system:authenticated","system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"groups_str":"system:authenticated,system:serviceaccounts,system:serviceaccounts:default,system:authenticated","keyId":"93f7a9be-7194-4b4a-b3cc-bf14c98928e2","keyName":"e2e-rate-a-7d53f1","selected_subscription":"e2e-rate-iso-a-7d53f1","selected_subscription_key":"ai-tenant-e2e-shared-a-dc9a69/e2e-rate-iso-a-7d53f1@ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"name":"rate-test-model-dc9a69","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-7d53f1","namespace":"ai-tenant-e2e-shared-a-dc9a69","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-23T17:02:27Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-23T17:02:27Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"0f26697e-d4b4-42b0-ac9e-60423e0651d0","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"0849542a-12c8-42fd-b1f8-7c4e2013ba2e","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:41878","PortSpecifier":{"PortValue":41878}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.67:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"0849542a-12c8-42fd-b1f8-7c4e2013ba2e","method":"POST","path":"/maas-api/v1/api-keys","host":"e2e-shared-a-dc9a69.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"0849542a-12c8-42fd-b1f8-7c4e2013ba2e","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:41878","PortSpecifier":{"PortValue":41878}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.67:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784826158,"nanos":416924094},"http":{"id":"0849542a-12c8-42fd-b1f8-7c4e2013ba2e","method":"POST","headers":{":authority":"e2e-shared-a-dc9a69.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com",":method":"POST",":path":"/maas-api/v1/api-keys",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.identity.kubernetesauth","msg":"calling kubernetes token review api","request id":"0849542a-12c8-42fd-b1f8-7c4e2013ba2e","tokenreview":{"name":""}} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"0849542a-12c8-42fd-b1f8-7c4e2013ba2e","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":{"authenticated":true,"user":{"username":"system:serviceaccount:default:tester-regular-user","uid":"090e2b71-8985-4113-90af-4281f2c814cc","groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"extra":{"authentication.kubernetes.io/credential-id":["JTI=52c9676d-c1ff-4789-b31c-012be99a01c4"]}},"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/6ddd0b07eee1"]}} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"0849542a-12c8-42fd-b1f8-7c4e2013ba2e","input":{"auth":{"identity":{"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/6ddd0b07eee1"],"authenticated":true,"user":{"extra":{"authentication.kubernetes.io/credential-id":["JTI=52c9676d-c1ff-4789-b31c-012be99a01c4"]},"groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"uid":"090e2b71-8985-4113-90af-4281f2c814cc","username":"system:serviceaccount:default:tester-regular-user"}}},"context":{"context_extensions":{"host":"1ee7e0214a10e5a0e22accdabdab55542f017e7e6f621f1360bdbe9159789cac"},"destination":{"address":{"Address":{"SocketAddress":{"PortSpecifier":{"PortValue":443},"address":"10.132.0.67:443"}}}},"metadata_context":{},"request":{"http":{"headers":{":authority":"e2e-shared-a-dc9a69.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com",":method":"POST",":path":"/maas-api/v1/api-keys",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"0849542a-12c8-42fd-b1f8-7c4e2013ba2e","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-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"0849542a-12c8-42fd-b1f8-7c4e2013ba2e","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-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"0849542a-12c8-42fd-b1f8-7c4e2013ba2e","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-dc9a69/models/facebook/opt-125m\":{\"users\":null,\"groups\":[\"system:authenticated\"]}}\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-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.response","msg":"cannot build dynamic response","request id":"0849542a-12c8-42fd-b1f8-7c4e2013ba2e","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"groups_str","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"userid","Value":{}},{"Name":"keyId","Value":{}},{"Name":"keyName","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"groups","Value":{}}]},"Plain":null},"reason":"no such key: metadata"} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"0849542a-12c8-42fd-b1f8-7c4e2013ba2e","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-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"0849542a-12c8-42fd-b1f8-7c4e2013ba2e","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-23T17:02:38Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"0849542a-12c8-42fd-b1f8-7c4e2013ba2e","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"0849542a-12c8-42fd-b1f8-7c4e2013ba2e","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"9185435a-60e4-4c57-98b4-3b48e2082925","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:33000","PortSpecifier":{"PortValue":33000}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.68:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"9185435a-60e4-4c57-98b4-3b48e2082925","method":"POST","path":"/maas-api/v1/api-keys","host":"e2e-shared-b-6a0c6b.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"9185435a-60e4-4c57-98b4-3b48e2082925","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:33000","PortSpecifier":{"PortValue":33000}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.68:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784826158,"nanos":458157444},"http":{"id":"9185435a-60e4-4c57-98b4-3b48e2082925","method":"POST","headers":{":authority":"e2e-shared-b-6a0c6b.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com",":method":"POST",":path":"/maas-api/v1/api-keys",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.identity.kubernetesauth","msg":"calling kubernetes token review api","request id":"9185435a-60e4-4c57-98b4-3b48e2082925","tokenreview":{"name":""}} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"9185435a-60e4-4c57-98b4-3b48e2082925","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":{"authenticated":true,"user":{"username":"system:serviceaccount:default:tester-regular-user","uid":"090e2b71-8985-4113-90af-4281f2c814cc","groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"extra":{"authentication.kubernetes.io/credential-id":["JTI=52c9676d-c1ff-4789-b31c-012be99a01c4"]}},"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/6ddd0b07eee1"]}} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"9185435a-60e4-4c57-98b4-3b48e2082925","input":{"auth":{"identity":{"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/6ddd0b07eee1"],"authenticated":true,"user":{"extra":{"authentication.kubernetes.io/credential-id":["JTI=52c9676d-c1ff-4789-b31c-012be99a01c4"]},"groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"uid":"090e2b71-8985-4113-90af-4281f2c814cc","username":"system:serviceaccount:default:tester-regular-user"}}},"context":{"context_extensions":{"host":"2a194452bbad1c6346033686b21756862f0baaff19bb7a5c3941d0cc63908d9e"},"destination":{"address":{"Address":{"SocketAddress":{"PortSpecifier":{"PortValue":443},"address":"10.132.0.68:443"}}}},"metadata_context":{},"request":{"http":{"headers":{":authority":"e2e-shared-b-6a0c6b.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com",":method":"POST",":path":"/maas-api/v1/api-keys",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"9185435a-60e4-4c57-98b4-3b48e2082925","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-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"9185435a-60e4-4c57-98b4-3b48e2082925","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-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"9185435a-60e4-4c57-98b4-3b48e2082925","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-b-6a0c6b/rate-test-model-6a0c6b\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-b-6a0c6b/models/facebook/opt-125m\":{\"users\":null,\"groups\":[\"system:authenticated\"]}}\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-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.response","msg":"cannot build dynamic response","request id":"9185435a-60e4-4c57-98b4-3b48e2082925","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_key","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"userid","Value":{}},{"Name":"keyId","Value":{}},{"Name":"keyName","Value":{}}]},"Plain":null},"reason":"no such key: metadata"} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"9185435a-60e4-4c57-98b4-3b48e2082925","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":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"9185435a-60e4-4c57-98b4-3b48e2082925","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":"info","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"9185435a-60e4-4c57-98b4-3b48e2082925","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"9185435a-60e4-4c57-98b4-3b48e2082925","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"40276548-7367-4f48-a22a-e3ac0eaa6453","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:41886","PortSpecifier":{"PortValue":41886}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.67:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"40276548-7367-4f48-a22a-e3ac0eaa6453","method":"POST","path":"/ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69/v1/completions","host":"e2e-shared-a-dc9a69.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"40276548-7367-4f48-a22a-e3ac0eaa6453","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:41886","PortSpecifier":{"PortValue":41886}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.67:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784826158,"nanos":498638130},"http":{"id":"40276548-7367-4f48-a22a-e3ac0eaa6453","method":"POST","headers":{":authority":"e2e-shared-a-dc9a69.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"40276548-7367-4f48-a22a-e3ac0eaa6453","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-RKsajkJe74wtehfA_T06SrbQK6CZbW38ISWHzXgWi3iSMPGp5u2QIveVv221"} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"40276548-7367-4f48-a22a-e3ac0eaa6453","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-RKsajkJe74wtehfA_T06SrbQK6CZbW38ISWHzXgWi3iSMPGp5u2QIveVv221\"}"} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"40276548-7367-4f48-a22a-e3ac0eaa6453","config":{"Name":"apiKeyValidation","Priority":0,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Metrics":false,"Cache":{},"UserInfo":null,"UMA":null,"GenericHTTP":{"Endpoint":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","DynamicEndpoint":null,"Method":"POST","Body":{},"Parameters":[],"Headers":[],"ContentType":"application/json","SharedSecret":"","OAuth2":null,"OAuth2TokenForceFetch":false,"AuthCredentials":null}},"object":{"groups":["system:authenticated","system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"keyId":"fc63bb86-2302-422b-a4ba-d5a91af333a0","keyName":"e2e-rate-a-740042","subscription":"e2e-rate-iso-a-740042","tenant":"e2e-shared-a-dc9a69","userId":"fc63bb86-2302-422b-a4ba-d5a91af333a0","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"40276548-7367-4f48-a22a-e3ac0eaa6453","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/subscriptions/select","headers":{"Content-Type":["application/json"]},"body":"{\"groups\":[\"system:authenticated\",\"system:serviceaccounts\",\"system:serviceaccounts:default\",\"system:authenticated\"],\"requestedModel\":\"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69\",\"requestedSubscription\":\"e2e-rate-iso-a-740042\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"40276548-7367-4f48-a22a-e3ac0eaa6453","config":{"Name":"subscription-info","Priority":1,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Metrics":false,"Cache":{},"UserInfo":null,"UMA":null,"GenericHTTP":{"Endpoint":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/subscriptions/select","DynamicEndpoint":null,"Method":"POST","Body":{},"Parameters":[],"Headers":[],"ContentType":"application/json","SharedSecret":"","OAuth2":null,"OAuth2TokenForceFetch":false,"AuthCredentials":null}},"object":{"modelRefs":[{"name":"rate-test-model-dc9a69","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-740042","namespace":"ai-tenant-e2e-shared-a-dc9a69","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69"}} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"40276548-7367-4f48-a22a-e3ac0eaa6453","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"40276548-7367-4f48-a22a-e3ac0eaa6453","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-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"40276548-7367-4f48-a22a-e3ac0eaa6453","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-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"40276548-7367-4f48-a22a-e3ac0eaa6453","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-dc9a69/models/facebook/opt-125m\":{\"users\":null,\"groups\":[\"system:authenticated\"]}}\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-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"40276548-7367-4f48-a22a-e3ac0eaa6453","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-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"40276548-7367-4f48-a22a-e3ac0eaa6453","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:default:tester-regular-user"} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"40276548-7367-4f48-a22a-e3ac0eaa6453","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:default\",\"system:authenticated\"]"} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"40276548-7367-4f48-a22a-e3ac0eaa6453","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-rate-iso-a-740042"} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"40276548-7367-4f48-a22a-e3ac0eaa6453","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"keyId","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"userid","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"groups","Value":{}},{"Name":"keyName","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"groups_str","Value":{}}]},"Plain":null},"object":{"groups":["system:authenticated","system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"groups_str":"system:authenticated,system:serviceaccounts,system:serviceaccounts:default,system:authenticated","keyId":"fc63bb86-2302-422b-a4ba-d5a91af333a0","keyName":"e2e-rate-a-740042","selected_subscription":"e2e-rate-iso-a-740042","selected_subscription_key":"ai-tenant-e2e-shared-a-dc9a69/e2e-rate-iso-a-740042@ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"name":"rate-test-model-dc9a69","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-740042","namespace":"ai-tenant-e2e-shared-a-dc9a69","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"40276548-7367-4f48-a22a-e3ac0eaa6453","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-23T17:02:38Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"40276548-7367-4f48-a22a-e3ac0eaa6453","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-23T17:02:39Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"c3522124-2e40-4b90-8e31-faa1923a2d51","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:41898","PortSpecifier":{"PortValue":41898}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.67:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"c3522124-2e40-4b90-8e31-faa1923a2d51","method":"POST","path":"/ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69/v1/completions","host":"e2e-shared-a-dc9a69.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-23T17:02:39Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"c3522124-2e40-4b90-8e31-faa1923a2d51","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:41898","PortSpecifier":{"PortValue":41898}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.67:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784826159,"nanos":545677196},"http":{"id":"c3522124-2e40-4b90-8e31-faa1923a2d51","method":"POST","headers":{":authority":"e2e-shared-a-dc9a69.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:39Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"c3522124-2e40-4b90-8e31-faa1923a2d51","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-RKsajkJe74wtehfA_T06SrbQK6CZbW38ISWHzXgWi3iSMPGp5u2QIveVv221"} {"level":"debug","ts":"2026-07-23T17:02:39Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"c3522124-2e40-4b90-8e31-faa1923a2d51","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-RKsajkJe74wtehfA_T06SrbQK6CZbW38ISWHzXgWi3iSMPGp5u2QIveVv221\"}"} {"level":"debug","ts":"2026-07-23T17:02:39Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"c3522124-2e40-4b90-8e31-faa1923a2d51","config":{"Name":"apiKeyValidation","Priority":0,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Metrics":false,"Cache":{},"UserInfo":null,"UMA":null,"GenericHTTP":{"Endpoint":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","DynamicEndpoint":null,"Method":"POST","Body":{},"Parameters":[],"Headers":[],"ContentType":"application/json","SharedSecret":"","OAuth2":null,"OAuth2TokenForceFetch":false,"AuthCredentials":null}},"object":{"groups":["system:authenticated","system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"keyId":"fc63bb86-2302-422b-a4ba-d5a91af333a0","keyName":"e2e-rate-a-740042","subscription":"e2e-rate-iso-a-740042","tenant":"e2e-shared-a-dc9a69","userId":"fc63bb86-2302-422b-a4ba-d5a91af333a0","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-23T17:02:39Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"c3522124-2e40-4b90-8e31-faa1923a2d51","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/subscriptions/select","headers":{"Content-Type":["application/json"]},"body":"{\"groups\":[\"system:authenticated\",\"system:serviceaccounts\",\"system:serviceaccounts:default\",\"system:authenticated\"],\"requestedModel\":\"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69\",\"requestedSubscription\":\"e2e-rate-iso-a-740042\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-23T17:02:39Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"c3522124-2e40-4b90-8e31-faa1923a2d51","config":{"Name":"subscription-info","Priority":1,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Metrics":false,"Cache":{},"UserInfo":null,"UMA":null,"GenericHTTP":{"Endpoint":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/subscriptions/select","DynamicEndpoint":null,"Method":"POST","Body":{},"Parameters":[],"Headers":[],"ContentType":"application/json","SharedSecret":"","OAuth2":null,"OAuth2TokenForceFetch":false,"AuthCredentials":null}},"object":{"modelRefs":[{"name":"rate-test-model-dc9a69","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-740042","namespace":"ai-tenant-e2e-shared-a-dc9a69","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69"}} {"level":"debug","ts":"2026-07-23T17:02:39Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"c3522124-2e40-4b90-8e31-faa1923a2d51","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:39Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"c3522124-2e40-4b90-8e31-faa1923a2d51","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-23T17:02:39Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"c3522124-2e40-4b90-8e31-faa1923a2d51","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-23T17:02:39Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"c3522124-2e40-4b90-8e31-faa1923a2d51","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-dc9a69/models/facebook/opt-125m\":{\"users\":null,\"groups\":[\"system:authenticated\"]}}\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-23T17:02:39Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"c3522124-2e40-4b90-8e31-faa1923a2d51","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-23T17:02:39Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"c3522124-2e40-4b90-8e31-faa1923a2d51","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:default:tester-regular-user"} {"level":"debug","ts":"2026-07-23T17:02:39Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"c3522124-2e40-4b90-8e31-faa1923a2d51","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-rate-iso-a-740042"} {"level":"debug","ts":"2026-07-23T17:02:39Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"c3522124-2e40-4b90-8e31-faa1923a2d51","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:default\",\"system:authenticated\"]"} {"level":"debug","ts":"2026-07-23T17:02:39Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"c3522124-2e40-4b90-8e31-faa1923a2d51","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"keyId","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"userid","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"groups","Value":{}},{"Name":"keyName","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"groups_str","Value":{}}]},"Plain":null},"object":{"groups":["system:authenticated","system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"groups_str":"system:authenticated,system:serviceaccounts,system:serviceaccounts:default,system:authenticated","keyId":"fc63bb86-2302-422b-a4ba-d5a91af333a0","keyName":"e2e-rate-a-740042","selected_subscription":"e2e-rate-iso-a-740042","selected_subscription_key":"ai-tenant-e2e-shared-a-dc9a69/e2e-rate-iso-a-740042@ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"name":"rate-test-model-dc9a69","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-740042","namespace":"ai-tenant-e2e-shared-a-dc9a69","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-23T17:02:39Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"c3522124-2e40-4b90-8e31-faa1923a2d51","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-23T17:02:39Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"c3522124-2e40-4b90-8e31-faa1923a2d51","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:41902","PortSpecifier":{"PortValue":41902}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.67:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","method":"POST","path":"/ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69/v1/completions","host":"e2e-shared-a-dc9a69.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:41902","PortSpecifier":{"PortValue":41902}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.67:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784826160,"nanos":582363009},"http":{"id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","method":"POST","headers":{":authority":"e2e-shared-a-dc9a69.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-RKsajkJe74wtehfA_T06SrbQK6CZbW38ISWHzXgWi3iSMPGp5u2QIveVv221"} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-RKsajkJe74wtehfA_T06SrbQK6CZbW38ISWHzXgWi3iSMPGp5u2QIveVv221\"}"} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","config":{"Name":"apiKeyValidation","Priority":0,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Metrics":false,"Cache":{},"UserInfo":null,"UMA":null,"GenericHTTP":{"Endpoint":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","DynamicEndpoint":null,"Method":"POST","Body":{},"Parameters":[],"Headers":[],"ContentType":"application/json","SharedSecret":"","OAuth2":null,"OAuth2TokenForceFetch":false,"AuthCredentials":null}},"object":{"groups":["system:authenticated","system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"keyId":"fc63bb86-2302-422b-a4ba-d5a91af333a0","keyName":"e2e-rate-a-740042","subscription":"e2e-rate-iso-a-740042","tenant":"e2e-shared-a-dc9a69","userId":"fc63bb86-2302-422b-a4ba-d5a91af333a0","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/subscriptions/select","headers":{"Content-Type":["application/json"]},"body":"{\"groups\":[\"system:authenticated\",\"system:serviceaccounts\",\"system:serviceaccounts:default\",\"system:authenticated\"],\"requestedModel\":\"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69\",\"requestedSubscription\":\"e2e-rate-iso-a-740042\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","config":{"Name":"subscription-info","Priority":1,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Metrics":false,"Cache":{},"UserInfo":null,"UMA":null,"GenericHTTP":{"Endpoint":"https://maas-api-e2e-shared-a-dc9a69.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/subscriptions/select","DynamicEndpoint":null,"Method":"POST","Body":{},"Parameters":[],"Headers":[],"ContentType":"application/json","SharedSecret":"","OAuth2":null,"OAuth2TokenForceFetch":false,"AuthCredentials":null}},"object":{"modelRefs":[{"name":"rate-test-model-dc9a69","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-740042","namespace":"ai-tenant-e2e-shared-a-dc9a69","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69"}} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","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-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","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-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-dc9a69/models/facebook/opt-125m\":{\"users\":null,\"groups\":[\"system:authenticated\"]}}\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-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","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-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","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:default:tester-regular-user"} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","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-rate-iso-a-740042"} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","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:default\",\"system:authenticated\"]"} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"keyId","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"userid","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"groups","Value":{}},{"Name":"keyName","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"groups_str","Value":{}}]},"Plain":null},"object":{"groups":["system:authenticated","system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"groups_str":"system:authenticated,system:serviceaccounts,system:serviceaccounts:default,system:authenticated","keyId":"fc63bb86-2302-422b-a4ba-d5a91af333a0","keyName":"e2e-rate-a-740042","selected_subscription":"e2e-rate-iso-a-740042","selected_subscription_key":"ai-tenant-e2e-shared-a-dc9a69/e2e-rate-iso-a-740042@ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"name":"rate-test-model-dc9a69","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-740042","namespace":"ai-tenant-e2e-shared-a-dc9a69","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-dc9a69/rate-test-model-dc9a69"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"9d706c76-3771-4ff5-9ad7-c06a732a7d97","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"4a97ac97-ef40-454b-8e7d-8902467695be","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:33002","PortSpecifier":{"PortValue":33002}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.68:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"4a97ac97-ef40-454b-8e7d-8902467695be","method":"POST","path":"/ai-tenant-e2e-shared-b-6a0c6b/rate-test-model-6a0c6b/v1/completions","host":"e2e-shared-b-6a0c6b.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"4a97ac97-ef40-454b-8e7d-8902467695be","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.15:33002","PortSpecifier":{"PortValue":33002}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.68:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784826160,"nanos":616605864},"http":{"id":"4a97ac97-ef40-454b-8e7d-8902467695be","method":"POST","headers":{":authority":"e2e-shared-b-6a0c6b.apps.651c39ba-0242-48d4-a65a-6ddd0b07eee1.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-b-6a0c6b/rate-test-model-6a0c6b/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"4a97ac97-ef40-454b-8e7d-8902467695be","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-F9MfgUwlzXpBNid3_M7nyH4x4UaxwYqoJcYf5RwZbopJbr7QdcP0B455i7xG"} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"4a97ac97-ef40-454b-8e7d-8902467695be","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-b-6a0c6b.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-F9MfgUwlzXpBNid3_M7nyH4x4UaxwYqoJcYf5RwZbopJbr7QdcP0B455i7xG\"}"} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"4a97ac97-ef40-454b-8e7d-8902467695be","config":{"Name":"apiKeyValidation","Priority":0,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Metrics":false,"Cache":{},"UserInfo":null,"UMA":null,"GenericHTTP":{"Endpoint":"https://maas-api-e2e-shared-b-6a0c6b.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","DynamicEndpoint":null,"Method":"POST","Body":{},"Parameters":[],"Headers":[],"ContentType":"application/json","SharedSecret":"","OAuth2":null,"OAuth2TokenForceFetch":false,"AuthCredentials":null}},"object":{"groups":["system:authenticated","system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"keyId":"be5c8e75-afca-4b5a-a238-518601397901","keyName":"e2e-rate-b-740042","subscription":"e2e-rate-iso-b-740042","tenant":"e2e-shared-b-6a0c6b","userId":"be5c8e75-afca-4b5a-a238-518601397901","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"4a97ac97-ef40-454b-8e7d-8902467695be","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-b-6a0c6b.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/subscriptions/select","headers":{"Content-Type":["application/json"]},"body":"{\"groups\":[\"system:authenticated\",\"system:serviceaccounts\",\"system:serviceaccounts:default\",\"system:authenticated\"],\"requestedModel\":\"ai-tenant-e2e-shared-b-6a0c6b/rate-test-model-6a0c6b\",\"requestedSubscription\":\"e2e-rate-iso-b-740042\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"4a97ac97-ef40-454b-8e7d-8902467695be","config":{"Name":"subscription-info","Priority":1,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Metrics":false,"Cache":{},"UserInfo":null,"UMA":null,"GenericHTTP":{"Endpoint":"https://maas-api-e2e-shared-b-6a0c6b.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/subscriptions/select","DynamicEndpoint":null,"Method":"POST","Body":{},"Parameters":[],"Headers":[],"ContentType":"application/json","SharedSecret":"","OAuth2":null,"OAuth2TokenForceFetch":false,"AuthCredentials":null}},"object":{"modelRefs":[{"name":"rate-test-model-6a0c6b","source":"internal","token_rate_limits":[{"limit":100,"window":"1m"}]}],"name":"e2e-rate-iso-b-740042","namespace":"ai-tenant-e2e-shared-b-6a0c6b","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-b-6a0c6b/rate-test-model-6a0c6b"}} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"4a97ac97-ef40-454b-8e7d-8902467695be","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"4a97ac97-ef40-454b-8e7d-8902467695be","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-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"4a97ac97-ef40-454b-8e7d-8902467695be","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-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"4a97ac97-ef40-454b-8e7d-8902467695be","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-b-6a0c6b/rate-test-model-6a0c6b\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-b-6a0c6b/models/facebook/opt-125m\":{\"users\":null,\"groups\":[\"system:authenticated\"]}}\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-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"4a97ac97-ef40-454b-8e7d-8902467695be","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-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"4a97ac97-ef40-454b-8e7d-8902467695be","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:default\",\"system:authenticated\"]"} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"4a97ac97-ef40-454b-8e7d-8902467695be","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-rate-iso-b-740042"} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"4a97ac97-ef40-454b-8e7d-8902467695be","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:default:tester-regular-user"} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"4a97ac97-ef40-454b-8e7d-8902467695be","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"subscription_info","Value":{}},{"Name":"userid","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"keyId","Value":{}},{"Name":"keyName","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"groups","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"subscription_error","Value":{}}]},"Plain":null},"object":{"groups":["system:authenticated","system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"groups_str":"system:authenticated,system:serviceaccounts,system:serviceaccounts:default,system:authenticated","keyId":"be5c8e75-afca-4b5a-a238-518601397901","keyName":"e2e-rate-b-740042","selected_subscription":"e2e-rate-iso-b-740042","selected_subscription_key":"ai-tenant-e2e-shared-b-6a0c6b/e2e-rate-iso-b-740042@ai-tenant-e2e-shared-b-6a0c6b/rate-test-model-6a0c6b","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"name":"rate-test-model-6a0c6b","source":"internal","token_rate_limits":[{"limit":100,"window":"1m"}]}],"name":"e2e-rate-iso-b-740042","namespace":"ai-tenant-e2e-shared-b-6a0c6b","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-b-6a0c6b/rate-test-model-6a0c6b"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"4a97ac97-ef40-454b-8e7d-8902467695be","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-23T17:02:40Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"4a97ac97-ef40-454b-8e7d-8902467695be","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-23T17:02:44Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/1ee7e0214a10e5a0e22accdabdab55542f017e7e6f621f1360bdbe9159789cac"} {"level":"info","ts":"2026-07-23T17:02:44Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/64bc561ea7be66bfb33e90f8869e55beddd80acb2cfe58e3cdeb5bb32fdc8775"} {"level":"info","ts":"2026-07-23T17:02:44Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/9da65e247cc0eaf27eb8745115125eddcc61e88831914265abfe5d096a7d14c6"} {"level":"info","ts":"2026-07-23T17:02:44Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/023826862fed48c4ed55a57cc71af123ed3baf4a57b15e0c434c7c325660df9b"} {"level":"info","ts":"2026-07-23T17:02:44Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/587e0f654f8d1d9200509f5fe018e4c0e07397aa2f784bcfc4e827906cd92d51"} {"level":"info","ts":"2026-07-23T17:02:44Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/2383ef7c246bbce29ba59420198fe34ccca0fe5bb94f35c37b4bd75693e04b8c"} {"level":"info","ts":"2026-07-23T17:02:45Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/d1f42c4c6da8cd428a163b2e5d5bff44331dfde670997e17151923494946f1ef"} {"level":"info","ts":"2026-07-23T17:02:45Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/ca7901116abeccd2b6093cc36f8e831b08982cc919c663d164f1f82f51da2f98"} {"level":"info","ts":"2026-07-23T17:02:45Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/2a194452bbad1c6346033686b21756862f0baaff19bb7a5c3941d0cc63908d9e"} {"level":"info","ts":"2026-07-23T17:02:45Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/5d0c9145b342fe15ffb041b38a607cced4deba40a9621021c6fe731511b9600f"} {"level":"info","ts":"2026-07-23T17:02:45Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/31958d352e33f6b01fa513ca4ca9ac376c3ac073702480197e1b27d4e159e834"} {"level":"info","ts":"2026-07-23T17:02:45Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/94a977116207d78e1b97c8f0224b811c39bf39c0ecc885517e9c448bf6cd2f58"} {"level":"info","ts":"2026-07-23T17:02:45Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/44d0e17e4dd353c6111913cffec6bb9d716ccd7416d9ce08f79b171147ffc5fe"} {"level":"info","ts":"2026-07-23T17:02:45Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/88c17c36ca4fd6109a5248e6a5eed270752c3bf278e80f4ad1f62ca0f7e6271e"} {"level":"info","ts":"2026-07-23T17:02:45Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/347aed159f7fe9ed1c29e3c1d38464c2a1b4ac853de372810b7005dfec62fbb6"} {"level":"info","ts":"2026-07-23T17:02:45Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/ab061265d0d3c24544062044aa1af231b86da14b2ca0de8870002d748c2660d1"} {"level":"info","ts":"2026-07-23T17:02:45Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/d86803077135a50cc948a97e97f93a0275394edce022b34faf0761b9c81cfe85"} {"level":"info","ts":"2026-07-23T17:02:45Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/2120700904e6eb3479fc918047309d484744312cf1f7b188aa20418970999aa4"} {"level":"info","ts":"2026-07-23T17:02:45Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/b701b7f68eba2bbe23ca83ae9fb68945673dee706c3e70364abda398005f3987"} {"level":"info","ts":"2026-07-23T17:02:45Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/69f1603cf17cd7fc684c7f533f41a2cc83d94680a0fa265d66986f182775bd92"} {"level":"info","ts":"2026-07-23T17:02:45Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/4e0735074c3a16ccc776766314b79e598dd7b2f83025596c8d2ff341ae2afd0d"} {"level":"info","ts":"2026-07-23T17:02:45Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/2cc20a3cf534e1730e86063d66d18edf9912209ff0f39c1842e78788a509bdb7"} {"level":"info","ts":"2026-07-23T17:02:45Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/4aee511469a362a9e81af3a5fac7e9685f5dfcce491856c7bae2e563e575fc28"} {"level":"info","ts":"2026-07-23T17:02:45Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/54d793a8ffd33592356dbe52e3686b3f58c6c993ac11e14d58a2e44bc8aeb887"}