{"level":"debug","ts":"2026-07-21T18:44:27Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"d3461568-e681-4e5d-aec9-ac3c2c771e82","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-1VRGiyciMg52tCUe_9Ajwe7Nm3kw7Wk7mryS64gXBWh6spm5p1jNWj5uivYC"} {"level":"debug","ts":"2026-07-21T18:44:27Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"d3461568-e681-4e5d-aec9-ac3c2c771e82","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-b-0be774.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-1VRGiyciMg52tCUe_9Ajwe7Nm3kw7Wk7mryS64gXBWh6spm5p1jNWj5uivYC\"}"} {"level":"debug","ts":"2026-07-21T18:44:27Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"d3461568-e681-4e5d-aec9-ac3c2c771e82","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-0be774.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":"56cffe44-e459-4d4c-b689-13f5146553ca","keyName":"e2e-sub-iso-fa2c83","subscription":"e2e-shared-sub-cae92a","tenant":"e2e-shared-b-0be774","userId":"56cffe44-e459-4d4c-b689-13f5146553ca","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-21T18:44:27Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"d3461568-e681-4e5d-aec9-ac3c2c771e82","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-21T18:44:27Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"d3461568-e681-4e5d-aec9-ac3c2c771e82","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-21T18:44:27Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"d3461568-e681-4e5d-aec9-ac3c2c771e82","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-21T18:44:27Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"d3461568-e681-4e5d-aec9-ac3c2c771e82","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-b-0be774/sub-test-model-0be774\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-b-0be774/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-21T18:44:27Z","logger":"authorino.service.auth.authpipeline.response","msg":"cannot build dynamic response","request id":"d3461568-e681-4e5d-aec9-ac3c2c771e82","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"userid","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"keyId","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"groups","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"keyName","Value":{}}]},"Plain":null},"reason":"no such key: subscription-info"} {"level":"debug","ts":"2026-07-21T18:44:27Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"d3461568-e681-4e5d-aec9-ac3c2c771e82","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-21T18:44:27Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"d3461568-e681-4e5d-aec9-ac3c2c771e82","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-cae92a"} {"level":"debug","ts":"2026-07-21T18:44:27Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"d3461568-e681-4e5d-aec9-ac3c2c771e82","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":"info","ts":"2026-07-21T18:44:27Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"d3461568-e681-4e5d-aec9-ac3c2c771e82","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-21T18:44:27Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"d3461568-e681-4e5d-aec9-ac3c2c771e82","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-21T18:44:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/5200f53a2c76103e66a1be82da17c5aec5e66312f350a13e2dfe2c3a89eeddb8"} {"level":"info","ts":"2026-07-21T18:44:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c"} {"level":"info","ts":"2026-07-21T18:44:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0"} {"level":"info","ts":"2026-07-21T18:44:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/7345a9696fc7b4677281b6ed9cbb086e2887bf0cc1829b3c5f09d659fa0015d3"} {"level":"info","ts":"2026-07-21T18:44:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/1d4385d6e7d3bf1577896b148cacf31ee7f09ed961e067b23a9f56d42982660a"} {"level":"info","ts":"2026-07-21T18:44:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/f41e806609656684fa25d03c0a7b24807c713515db7a7cf801656bb93598ed9b"} {"level":"info","ts":"2026-07-21T18:44:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/f67cf22cf407bf647909b18166c6c158ae89841389dc98fe5a03426c80bd8d59"} {"level":"info","ts":"2026-07-21T18:44:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/b72713f432dcabf0d5815355b26e0a44fcd717eae38422d5c52719e4d893f2f6"} {"level":"info","ts":"2026-07-21T18:44:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/63691086b271d77edeacf23bfc9556e090c7ffdaafa7461e195d9a86ed50e35c"} {"level":"info","ts":"2026-07-21T18:44:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/e6bd5df6f8fce00a8088502ad840a3c6ce73043a6a513f66a05ac798b0bfb571"} {"level":"info","ts":"2026-07-21T18:44:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/ed246f616520caa2bc4a37b69ac0a6bd5ded0a167f1892030d42e66647875793"} {"level":"info","ts":"2026-07-21T18:44:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118"} {"level":"info","ts":"2026-07-21T18:44:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/160f4064f31c3070d9d55c7058b1038870f7340e2d1c956fd64cef45db105943"} {"level":"info","ts":"2026-07-21T18:44:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/6c86cc90d6456e6f19a2c54a1a0d00e126300ceb8a4854e26cf67bf40460ac14"} {"level":"info","ts":"2026-07-21T18:44:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/5183e00337535c6305267c372a96c92f0598e0716589352d66550b2e503bfbef"} {"level":"info","ts":"2026-07-21T18:44:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/18ee19d99151af26731d8e2f2d26f765dfdd29c2316b4c4412bf5ec933c95222"} {"level":"info","ts":"2026-07-21T18:44:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/dde6bc17bb433f7237ef5a95df5c2828177f118fb90bbf837da5d39993b75e85"} {"level":"info","ts":"2026-07-21T18:44:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/9983b1c00928cd1d8eff799fc30fa2cd7803cbf9fb9849361784b647c0c6bb38"} {"level":"info","ts":"2026-07-21T18:44:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/5cd883329aa87aa8b2cbb7384ba5f3190d2a091d2cdfdd343296c542825fac92"} {"level":"info","ts":"2026-07-21T18:44:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/2c925d81d17257bb61330cefd513dc4cdbb0af21eadd5c498412b210267dc023"} {"level":"info","ts":"2026-07-21T18:44:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/922aad3887c3f6cc0228cfd9cf8220a146429ee60a963d2ffec4e44058f7433c"} {"level":"info","ts":"2026-07-21T18:44:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/e17253d070edaf5b2e6c08ff5c85a5e72aaccf404856daca0c377c47700217bf"} {"level":"info","ts":"2026-07-21T18:44:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/06b470a060445ae34be21eb1bebb62becba9eaa134fd9af1c4aff15209a1ddda"} {"level":"info","ts":"2026-07-21T18:44:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/a78afd3a694202d8048aad5379bc11c6a504346a7688c31b99a3c198531b77e2"} {"level":"debug","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"f33ed5b2718f57a12552633f10fef4ba7ed0d5014fb9422c1d433c4dbed9b981","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"f33ed5b2718f57a12552633f10fef4ba7ed0d5014fb9422c1d433c4dbed9b981","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"f33ed5b2718f57a12552633f10fef4ba7ed0d5014fb9422c1d433c4dbed9b981","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"f33ed5b2718f57a12552633f10fef4ba7ed0d5014fb9422c1d433c4dbed9b981","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/f33ed5b2718f57a12552633f10fef4ba7ed0d5014fb9422c1d433c4dbed9b981"} {"level":"debug","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"f33ed5b2718f57a12552633f10fef4ba7ed0d5014fb9422c1d433c4dbed9b981","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/f33ed5b2718f57a12552633f10fef4ba7ed0d5014fb9422c1d433c4dbed9b981"} {"level":"debug","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"f33ed5b2718f57a12552633f10fef4ba7ed0d5014fb9422c1d433c4dbed9b981","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["f33ed5b2718f57a12552633f10fef4ba7ed0d5014fb9422c1d433c4dbed9b981"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"f33ed5b2718f57a12552633f10fef4ba7ed0d5014fb9422c1d433c4dbed9b981","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"f33ed5b2718f57a12552633f10fef4ba7ed0d5014fb9422c1d433c4dbed9b981","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"f33ed5b2718f57a12552633f10fef4ba7ed0d5014fb9422c1d433c4dbed9b981","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"9eddd202d6ef1f4e4d5be95715ba914801f2b88f38544898955693159b3ae3d3","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/f33ed5b2718f57a12552633f10fef4ba7ed0d5014fb9422c1d433c4dbed9b981"} {"level":"info","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"9eddd202d6ef1f4e4d5be95715ba914801f2b88f38544898955693159b3ae3d3","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"f33ed5b2718f57a12552633f10fef4ba7ed0d5014fb9422c1d433c4dbed9b981","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["f33ed5b2718f57a12552633f10fef4ba7ed0d5014fb9422c1d433c4dbed9b981"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"f33ed5b2718f57a12552633f10fef4ba7ed0d5014fb9422c1d433c4dbed9b981","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"9eddd202d6ef1f4e4d5be95715ba914801f2b88f38544898955693159b3ae3d3","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9eddd202d6ef1f4e4d5be95715ba914801f2b88f38544898955693159b3ae3d3"} {"level":"info","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/f33ed5b2718f57a12552633f10fef4ba7ed0d5014fb9422c1d433c4dbed9b981"} {"level":"info","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"9eddd202d6ef1f4e4d5be95715ba914801f2b88f38544898955693159b3ae3d3","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"f33ed5b2718f57a12552633f10fef4ba7ed0d5014fb9422c1d433c4dbed9b981","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9eddd202d6ef1f4e4d5be95715ba914801f2b88f38544898955693159b3ae3d3","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9eddd202d6ef1f4e4d5be95715ba914801f2b88f38544898955693159b3ae3d3","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9eddd202d6ef1f4e4d5be95715ba914801f2b88f38544898955693159b3ae3d3"} {"level":"info","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9eddd202d6ef1f4e4d5be95715ba914801f2b88f38544898955693159b3ae3d3"} {"level":"debug","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"9eddd202d6ef1f4e4d5be95715ba914801f2b88f38544898955693159b3ae3d3","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["9eddd202d6ef1f4e4d5be95715ba914801f2b88f38544898955693159b3ae3d3"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/63691086b271d77edeacf23bfc9556e090c7ffdaafa7461e195d9a86ed50e35c"} {"level":"info","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"9eddd202d6ef1f4e4d5be95715ba914801f2b88f38544898955693159b3ae3d3","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"63691086b271d77edeacf23bfc9556e090c7ffdaafa7461e195d9a86ed50e35c","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["63691086b271d77edeacf23bfc9556e090c7ffdaafa7461e195d9a86ed50e35c"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9eddd202d6ef1f4e4d5be95715ba914801f2b88f38544898955693159b3ae3d3"} {"level":"info","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"63691086b271d77edeacf23bfc9556e090c7ffdaafa7461e195d9a86ed50e35c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9eddd202d6ef1f4e4d5be95715ba914801f2b88f38544898955693159b3ae3d3","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"63691086b271d77edeacf23bfc9556e090c7ffdaafa7461e195d9a86ed50e35c","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/63691086b271d77edeacf23bfc9556e090c7ffdaafa7461e195d9a86ed50e35c"} {"level":"info","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"63691086b271d77edeacf23bfc9556e090c7ffdaafa7461e195d9a86ed50e35c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"63691086b271d77edeacf23bfc9556e090c7ffdaafa7461e195d9a86ed50e35c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:32Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"63691086b271d77edeacf23bfc9556e090c7ffdaafa7461e195d9a86ed50e35c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/63691086b271d77edeacf23bfc9556e090c7ffdaafa7461e195d9a86ed50e35c"} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:32Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"63691086b271d77edeacf23bfc9556e090c7ffdaafa7461e195d9a86ed50e35c","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["63691086b271d77edeacf23bfc9556e090c7ffdaafa7461e195d9a86ed50e35c"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"63691086b271d77edeacf23bfc9556e090c7ffdaafa7461e195d9a86ed50e35c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"63691086b271d77edeacf23bfc9556e090c7ffdaafa7461e195d9a86ed50e35c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/63691086b271d77edeacf23bfc9556e090c7ffdaafa7461e195d9a86ed50e35c"} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c"} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c"} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"e6bd5df6f8fce00a8088502ad840a3c6ce73043a6a513f66a05ac798b0bfb571","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"e6bd5df6f8fce00a8088502ad840a3c6ce73043a6a513f66a05ac798b0bfb571","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/e6bd5df6f8fce00a8088502ad840a3c6ce73043a6a513f66a05ac798b0bfb571"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"e6bd5df6f8fce00a8088502ad840a3c6ce73043a6a513f66a05ac798b0bfb571","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["e6bd5df6f8fce00a8088502ad840a3c6ce73043a6a513f66a05ac798b0bfb571"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"e6bd5df6f8fce00a8088502ad840a3c6ce73043a6a513f66a05ac798b0bfb571","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"e6bd5df6f8fce00a8088502ad840a3c6ce73043a6a513f66a05ac798b0bfb571","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/e6bd5df6f8fce00a8088502ad840a3c6ce73043a6a513f66a05ac798b0bfb571"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052"} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"error","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"failed to update the resource","authconfig":{"name":"9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118","namespace":"kuadrant-system"},"error":"Operation cannot be fulfilled on authconfigs.authorino.kuadrant.io \"9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118\": 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-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118"} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"e17253d070edaf5b2e6c08ff5c85a5e72aaccf404856daca0c377c47700217bf","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"e17253d070edaf5b2e6c08ff5c85a5e72aaccf404856daca0c377c47700217bf","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/e17253d070edaf5b2e6c08ff5c85a5e72aaccf404856daca0c377c47700217bf"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"e17253d070edaf5b2e6c08ff5c85a5e72aaccf404856daca0c377c47700217bf","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["e17253d070edaf5b2e6c08ff5c85a5e72aaccf404856daca0c377c47700217bf"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"e17253d070edaf5b2e6c08ff5c85a5e72aaccf404856daca0c377c47700217bf","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/e17253d070edaf5b2e6c08ff5c85a5e72aaccf404856daca0c377c47700217bf"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"e17253d070edaf5b2e6c08ff5c85a5e72aaccf404856daca0c377c47700217bf","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118"} {"level":"error","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"failed to update the resource","authconfig":{"name":"832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d","namespace":"kuadrant-system"},"error":"Operation cannot be fulfilled on authconfigs.authorino.kuadrant.io \"832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d\": 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-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/e17253d070edaf5b2e6c08ff5c85a5e72aaccf404856daca0c377c47700217bf"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d"} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0"} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0"} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"9dd35e27311c7bb498d7e268fb64ebb5aa17090462b231a958d85df1036c094b","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"9dd35e27311c7bb498d7e268fb64ebb5aa17090462b231a958d85df1036c094b","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"9dd35e27311c7bb498d7e268fb64ebb5aa17090462b231a958d85df1036c094b","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9dd35e27311c7bb498d7e268fb64ebb5aa17090462b231a958d85df1036c094b"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"9dd35e27311c7bb498d7e268fb64ebb5aa17090462b231a958d85df1036c094b","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9dd35e27311c7bb498d7e268fb64ebb5aa17090462b231a958d85df1036c094b","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9dd35e27311c7bb498d7e268fb64ebb5aa17090462b231a958d85df1036c094b"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"9dd35e27311c7bb498d7e268fb64ebb5aa17090462b231a958d85df1036c094b","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["9dd35e27311c7bb498d7e268fb64ebb5aa17090462b231a958d85df1036c094b"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"9dd35e27311c7bb498d7e268fb64ebb5aa17090462b231a958d85df1036c094b","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9dd35e27311c7bb498d7e268fb64ebb5aa17090462b231a958d85df1036c094b","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9dd35e27311c7bb498d7e268fb64ebb5aa17090462b231a958d85df1036c094b"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e"} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0"} {"level":"error","ts":"2026-07-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"failed to update the resource","authconfig":{"name":"26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e","namespace":"kuadrant-system"},"error":"Operation cannot be fulfilled on authconfigs.authorino.kuadrant.io \"26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e\": 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-21T18:45:33Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"a026d5341a00292df29c04a916491e064c693ba173ce5ba94e635fe36485dcd1","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"a026d5341a00292df29c04a916491e064c693ba173ce5ba94e635fe36485dcd1","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ae22ad2f3fa2c8d4d503c596c6ff44b202224abe8c84a3eff8497c5d101c69be","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ae22ad2f3fa2c8d4d503c596c6ff44b202224abe8c84a3eff8497c5d101c69be","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"a026d5341a00292df29c04a916491e064c693ba173ce5ba94e635fe36485dcd1","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-21T18:45:33Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/a026d5341a00292df29c04a916491e064c693ba173ce5ba94e635fe36485dcd1"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ae22ad2f3fa2c8d4d503c596c6ff44b202224abe8c84a3eff8497c5d101c69be"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"a026d5341a00292df29c04a916491e064c693ba173ce5ba94e635fe36485dcd1","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/bf108690e12cde1057d67a8a174cb679c68174bece6035e021fa54528175012c"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/a026d5341a00292df29c04a916491e064c693ba173ce5ba94e635fe36485dcd1"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ae22ad2f3fa2c8d4d503c596c6ff44b202224abe8c84a3eff8497c5d101c69be","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["ae22ad2f3fa2c8d4d503c596c6ff44b202224abe8c84a3eff8497c5d101c69be"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ed246f616520caa2bc4a37b69ac0a6bd5ded0a167f1892030d42e66647875793"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ae22ad2f3fa2c8d4d503c596c6ff44b202224abe8c84a3eff8497c5d101c69be","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"bf108690e12cde1057d67a8a174cb679c68174bece6035e021fa54528175012c","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["bf108690e12cde1057d67a8a174cb679c68174bece6035e021fa54528175012c"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ae22ad2f3fa2c8d4d503c596c6ff44b202224abe8c84a3eff8497c5d101c69be"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/08bab116348f6788540f728986e5a688b2a1fc862e8dbff1c32425f3f0ddf657"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"bf108690e12cde1057d67a8a174cb679c68174bece6035e021fa54528175012c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"a026d5341a00292df29c04a916491e064c693ba173ce5ba94e635fe36485dcd1","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["a026d5341a00292df29c04a916491e064c693ba173ce5ba94e635fe36485dcd1"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/06b470a060445ae34be21eb1bebb62becba9eaa134fd9af1c4aff15209a1ddda"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"a026d5341a00292df29c04a916491e064c693ba173ce5ba94e635fe36485dcd1","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"ed246f616520caa2bc4a37b69ac0a6bd5ded0a167f1892030d42e66647875793","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["ed246f616520caa2bc4a37b69ac0a6bd5ded0a167f1892030d42e66647875793"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/507cc06bc05d606d1c0a77fe236080b613173d35fc3972982d30cd50b5248280"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"ed246f616520caa2bc4a37b69ac0a6bd5ded0a167f1892030d42e66647875793","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"ae22ad2f3fa2c8d4d503c596c6ff44b202224abe8c84a3eff8497c5d101c69be","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"08bab116348f6788540f728986e5a688b2a1fc862e8dbff1c32425f3f0ddf657","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["08bab116348f6788540f728986e5a688b2a1fc862e8dbff1c32425f3f0ddf657"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/e580e42cffb86e1bd3598b53546b8361ff0618b76fe5499214710e1b531c1435"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/bf108690e12cde1057d67a8a174cb679c68174bece6035e021fa54528175012c"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/a026d5341a00292df29c04a916491e064c693ba173ce5ba94e635fe36485dcd1"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"08bab116348f6788540f728986e5a688b2a1fc862e8dbff1c32425f3f0ddf657","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"06b470a060445ae34be21eb1bebb62becba9eaa134fd9af1c4aff15209a1ddda","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["06b470a060445ae34be21eb1bebb62becba9eaa134fd9af1c4aff15209a1ddda"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/7359d910cbe84750877f4d682e6a0c07b654fbe7c5e389ba37150d52e43aa073"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/329c2499cca682510e312701b5a7d8a27306f45ea758b991f1b2105ea077a8c6"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"06b470a060445ae34be21eb1bebb62becba9eaa134fd9af1c4aff15209a1ddda","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"507cc06bc05d606d1c0a77fe236080b613173d35fc3972982d30cd50b5248280","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["507cc06bc05d606d1c0a77fe236080b613173d35fc3972982d30cd50b5248280"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/62c2c37af5689b9dd97346022c847e02a3e51ff00b5db005f21d037bc83176c0"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/ed246f616520caa2bc4a37b69ac0a6bd5ded0a167f1892030d42e66647875793"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9547a3b04581e2a5ea92f07a099b0eac25e279778a4b1e224e30a9b9ef935e90"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"507cc06bc05d606d1c0a77fe236080b613173d35fc3972982d30cd50b5248280","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"e580e42cffb86e1bd3598b53546b8361ff0618b76fe5499214710e1b531c1435","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["e580e42cffb86e1bd3598b53546b8361ff0618b76fe5499214710e1b531c1435"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/08bab116348f6788540f728986e5a688b2a1fc862e8dbff1c32425f3f0ddf657"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/06b470a060445ae34be21eb1bebb62becba9eaa134fd9af1c4aff15209a1ddda"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"e580e42cffb86e1bd3598b53546b8361ff0618b76fe5499214710e1b531c1435","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"bf108690e12cde1057d67a8a174cb679c68174bece6035e021fa54528175012c","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"a026d5341a00292df29c04a916491e064c693ba173ce5ba94e635fe36485dcd1","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"7359d910cbe84750877f4d682e6a0c07b654fbe7c5e389ba37150d52e43aa073","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["7359d910cbe84750877f4d682e6a0c07b654fbe7c5e389ba37150d52e43aa073"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/507cc06bc05d606d1c0a77fe236080b613173d35fc3972982d30cd50b5248280"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/e580e42cffb86e1bd3598b53546b8361ff0618b76fe5499214710e1b531c1435"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"7359d910cbe84750877f4d682e6a0c07b654fbe7c5e389ba37150d52e43aa073","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"329c2499cca682510e312701b5a7d8a27306f45ea758b991f1b2105ea077a8c6","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["329c2499cca682510e312701b5a7d8a27306f45ea758b991f1b2105ea077a8c6"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/7359d910cbe84750877f4d682e6a0c07b654fbe7c5e389ba37150d52e43aa073"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"329c2499cca682510e312701b5a7d8a27306f45ea758b991f1b2105ea077a8c6","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"62c2c37af5689b9dd97346022c847e02a3e51ff00b5db005f21d037bc83176c0","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["62c2c37af5689b9dd97346022c847e02a3e51ff00b5db005f21d037bc83176c0"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/329c2499cca682510e312701b5a7d8a27306f45ea758b991f1b2105ea077a8c6"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"62c2c37af5689b9dd97346022c847e02a3e51ff00b5db005f21d037bc83176c0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"ed246f616520caa2bc4a37b69ac0a6bd5ded0a167f1892030d42e66647875793","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"9547a3b04581e2a5ea92f07a099b0eac25e279778a4b1e224e30a9b9ef935e90","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-21T18:45:34Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["9547a3b04581e2a5ea92f07a099b0eac25e279778a4b1e224e30a9b9ef935e90"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/62c2c37af5689b9dd97346022c847e02a3e51ff00b5db005f21d037bc83176c0"} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"9547a3b04581e2a5ea92f07a099b0eac25e279778a4b1e224e30a9b9ef935e90","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"08bab116348f6788540f728986e5a688b2a1fc862e8dbff1c32425f3f0ddf657","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"06b470a060445ae34be21eb1bebb62becba9eaa134fd9af1c4aff15209a1ddda","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"507cc06bc05d606d1c0a77fe236080b613173d35fc3972982d30cd50b5248280","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"e580e42cffb86e1bd3598b53546b8361ff0618b76fe5499214710e1b531c1435","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"7359d910cbe84750877f4d682e6a0c07b654fbe7c5e389ba37150d52e43aa073","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"329c2499cca682510e312701b5a7d8a27306f45ea758b991f1b2105ea077a8c6","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"62c2c37af5689b9dd97346022c847e02a3e51ff00b5db005f21d037bc83176c0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9547a3b04581e2a5ea92f07a099b0eac25e279778a4b1e224e30a9b9ef935e90","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-21T18:45:34Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9547a3b04581e2a5ea92f07a099b0eac25e279778a4b1e224e30a9b9ef935e90"} {"level":"info","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"556f76cd-a36c-4369-b1e7-2ffe1683b3c9","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:59594","PortSpecifier":{"PortValue":59594}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.64:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"556f76cd-a36c-4369-b1e7-2ffe1683b3c9","method":"POST","path":"/maas-api/v1/api-keys","host":"e2e-shared-a-c1a1f4.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"556f76cd-a36c-4369-b1e7-2ffe1683b3c9","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:59594","PortSpecifier":{"PortValue":59594}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.64:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784659536,"nanos":254128868},"http":{"id":"556f76cd-a36c-4369-b1e7-2ffe1683b3c9","method":"POST","headers":{":authority":"e2e-shared-a-c1a1f4.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.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-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.identity.kubernetesauth","msg":"calling kubernetes token review api","request id":"556f76cd-a36c-4369-b1e7-2ffe1683b3c9","tokenreview":{"name":""}} {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"556f76cd-a36c-4369-b1e7-2ffe1683b3c9","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":"6cf15397-3f7a-48d5-8be3-184cd5b901a7","groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"extra":{"authentication.kubernetes.io/credential-id":["JTI=cb211bb6-ad78-4c4f-a4ea-80ea7f4ba156"]}},"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/dab273b9bd08"]}} {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"556f76cd-a36c-4369-b1e7-2ffe1683b3c9","input":{"auth":{"identity":{"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/dab273b9bd08"],"authenticated":true,"user":{"extra":{"authentication.kubernetes.io/credential-id":["JTI=cb211bb6-ad78-4c4f-a4ea-80ea7f4ba156"]},"groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"uid":"6cf15397-3f7a-48d5-8be3-184cd5b901a7","username":"system:serviceaccount:default:tester-regular-user"}}},"context":{"context_extensions":{"host":"9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118"},"destination":{"address":{"Address":{"SocketAddress":{"PortSpecifier":{"PortValue":443},"address":"10.133.0.64:443"}}}},"metadata_context":{},"request":{"http":{"headers":{":authority":"e2e-shared-a-c1a1f4.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.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-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"556f76cd-a36c-4369-b1e7-2ffe1683b3c9","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-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"556f76cd-a36c-4369-b1e7-2ffe1683b3c9","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-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"556f76cd-a36c-4369-b1e7-2ffe1683b3c9","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-c1a1f4/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-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.response","msg":"cannot build dynamic response","request id":"556f76cd-a36c-4369-b1e7-2ffe1683b3c9","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":"keyName","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"keyId","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"groups","Value":{}}]},"Plain":null},"reason":"no such key: metadata"} {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"556f76cd-a36c-4369-b1e7-2ffe1683b3c9","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-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"556f76cd-a36c-4369-b1e7-2ffe1683b3c9","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-21T18:45:36Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"556f76cd-a36c-4369-b1e7-2ffe1683b3c9","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"556f76cd-a36c-4369-b1e7-2ffe1683b3c9","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"98cf14e1-86d8-4d7a-879c-f9453cd0b901","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:59450","PortSpecifier":{"PortValue":59450}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.65:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"98cf14e1-86d8-4d7a-879c-f9453cd0b901","method":"POST","path":"/maas-api/v1/api-keys","host":"e2e-shared-b-0be774.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"98cf14e1-86d8-4d7a-879c-f9453cd0b901","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:59450","PortSpecifier":{"PortValue":59450}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.65:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784659536,"nanos":298863695},"http":{"id":"98cf14e1-86d8-4d7a-879c-f9453cd0b901","method":"POST","headers":{":authority":"e2e-shared-b-0be774.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.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-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.identity.kubernetesauth","msg":"calling kubernetes token review api","request id":"98cf14e1-86d8-4d7a-879c-f9453cd0b901","tokenreview":{"name":""}} {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"98cf14e1-86d8-4d7a-879c-f9453cd0b901","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":"6cf15397-3f7a-48d5-8be3-184cd5b901a7","groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"extra":{"authentication.kubernetes.io/credential-id":["JTI=cb211bb6-ad78-4c4f-a4ea-80ea7f4ba156"]}},"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/dab273b9bd08"]}} {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"98cf14e1-86d8-4d7a-879c-f9453cd0b901","input":{"auth":{"identity":{"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/dab273b9bd08"],"authenticated":true,"user":{"extra":{"authentication.kubernetes.io/credential-id":["JTI=cb211bb6-ad78-4c4f-a4ea-80ea7f4ba156"]},"groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"uid":"6cf15397-3f7a-48d5-8be3-184cd5b901a7","username":"system:serviceaccount:default:tester-regular-user"}}},"context":{"context_extensions":{"host":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0"},"destination":{"address":{"Address":{"SocketAddress":{"PortSpecifier":{"PortValue":443},"address":"10.133.0.65:443"}}}},"metadata_context":{},"request":{"http":{"headers":{":authority":"e2e-shared-b-0be774.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.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-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"98cf14e1-86d8-4d7a-879c-f9453cd0b901","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-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"98cf14e1-86d8-4d7a-879c-f9453cd0b901","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-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"98cf14e1-86d8-4d7a-879c-f9453cd0b901","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-b-0be774/rate-test-model-0be774\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-b-0be774/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-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.response","msg":"cannot build dynamic response","request id":"98cf14e1-86d8-4d7a-879c-f9453cd0b901","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":"subscription_error_message","Value":{}},{"Name":"groups","Value":{}},{"Name":"keyName","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"userid","Value":{}}]},"Plain":null},"reason":"no such key: metadata"} {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"98cf14e1-86d8-4d7a-879c-f9453cd0b901","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-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"98cf14e1-86d8-4d7a-879c-f9453cd0b901","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-21T18:45:36Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"98cf14e1-86d8-4d7a-879c-f9453cd0b901","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"98cf14e1-86d8-4d7a-879c-f9453cd0b901","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"5eb92825-9616-4454-8935-a30a03918414","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:59596","PortSpecifier":{"PortValue":59596}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.64:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"5eb92825-9616-4454-8935-a30a03918414","method":"POST","path":"/ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4/v1/completions","host":"e2e-shared-a-c1a1f4.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"5eb92825-9616-4454-8935-a30a03918414","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:59596","PortSpecifier":{"PortValue":59596}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.64:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784659536,"nanos":351472641},"http":{"id":"5eb92825-9616-4454-8935-a30a03918414","method":"POST","headers":{":authority":"e2e-shared-a-c1a1f4.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"5eb92825-9616-4454-8935-a30a03918414","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-v1coCbR9pddY5UlR_8V4QP2DdDjMpHrOPTLfgf2yjqo21QY1bIVns1vODbw0"} {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"5eb92825-9616-4454-8935-a30a03918414","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-c1a1f4.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-v1coCbR9pddY5UlR_8V4QP2DdDjMpHrOPTLfgf2yjqo21QY1bIVns1vODbw0\"}"} {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"5eb92825-9616-4454-8935-a30a03918414","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-c1a1f4.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":"697db632-86f3-4e4e-84c4-5c21e83ada56","keyName":"e2e-rate-a-76895f","subscription":"e2e-rate-iso-a-76895f","tenant":"e2e-shared-a-c1a1f4","userId":"697db632-86f3-4e4e-84c4-5c21e83ada56","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"5eb92825-9616-4454-8935-a30a03918414","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-c1a1f4.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-c1a1f4/rate-test-model-c1a1f4\",\"requestedSubscription\":\"e2e-rate-iso-a-76895f\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"5eb92825-9616-4454-8935-a30a03918414","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-c1a1f4.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-c1a1f4","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-76895f","namespace":"ai-tenant-e2e-shared-a-c1a1f4","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4"}} {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"5eb92825-9616-4454-8935-a30a03918414","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"5eb92825-9616-4454-8935-a30a03918414","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-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"5eb92825-9616-4454-8935-a30a03918414","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-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"5eb92825-9616-4454-8935-a30a03918414","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-c1a1f4/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-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"5eb92825-9616-4454-8935-a30a03918414","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-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"5eb92825-9616-4454-8935-a30a03918414","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-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"5eb92825-9616-4454-8935-a30a03918414","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-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"5eb92825-9616-4454-8935-a30a03918414","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-76895f"} {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"5eb92825-9616-4454-8935-a30a03918414","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"keyName","Value":{}},{"Name":"userid","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"groups","Value":{}},{"Name":"keyId","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"subscription_info","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":"697db632-86f3-4e4e-84c4-5c21e83ada56","keyName":"e2e-rate-a-76895f","selected_subscription":"e2e-rate-iso-a-76895f","selected_subscription_key":"ai-tenant-e2e-shared-a-c1a1f4/e2e-rate-iso-a-76895f@ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"name":"rate-test-model-c1a1f4","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-76895f","namespace":"ai-tenant-e2e-shared-a-c1a1f4","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"5eb92825-9616-4454-8935-a30a03918414","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-21T18:45:36Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"5eb92825-9616-4454-8935-a30a03918414","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-21T18:45:37Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:58598","PortSpecifier":{"PortValue":58598}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.64:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","method":"POST","path":"/ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4/v1/completions","host":"e2e-shared-a-c1a1f4.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-21T18:45:37Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:58598","PortSpecifier":{"PortValue":58598}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.64:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784659537,"nanos":420399163},"http":{"id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","method":"POST","headers":{":authority":"e2e-shared-a-c1a1f4.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-21T18:45:37Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-v1coCbR9pddY5UlR_8V4QP2DdDjMpHrOPTLfgf2yjqo21QY1bIVns1vODbw0"} {"level":"debug","ts":"2026-07-21T18:45:37Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-c1a1f4.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-v1coCbR9pddY5UlR_8V4QP2DdDjMpHrOPTLfgf2yjqo21QY1bIVns1vODbw0\"}"} {"level":"debug","ts":"2026-07-21T18:45:37Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","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-c1a1f4.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":"697db632-86f3-4e4e-84c4-5c21e83ada56","keyName":"e2e-rate-a-76895f","subscription":"e2e-rate-iso-a-76895f","tenant":"e2e-shared-a-c1a1f4","userId":"697db632-86f3-4e4e-84c4-5c21e83ada56","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-21T18:45:37Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-c1a1f4.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-c1a1f4/rate-test-model-c1a1f4\",\"requestedSubscription\":\"e2e-rate-iso-a-76895f\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-21T18:45:37Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","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-c1a1f4.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-c1a1f4","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-76895f","namespace":"ai-tenant-e2e-shared-a-c1a1f4","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4"}} {"level":"debug","ts":"2026-07-21T18:45:37Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-21T18:45:37Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","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-21T18:45:37Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","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-21T18:45:37Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-c1a1f4/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-21T18:45:37Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","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-21T18:45:37Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","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-21T18:45:37Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","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-76895f"} {"level":"debug","ts":"2026-07-21T18:45:37Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","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-21T18:45:37Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"keyName","Value":{}},{"Name":"userid","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"groups","Value":{}},{"Name":"keyId","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"subscription_info","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":"697db632-86f3-4e4e-84c4-5c21e83ada56","keyName":"e2e-rate-a-76895f","selected_subscription":"e2e-rate-iso-a-76895f","selected_subscription_key":"ai-tenant-e2e-shared-a-c1a1f4/e2e-rate-iso-a-76895f@ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"name":"rate-test-model-c1a1f4","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-76895f","namespace":"ai-tenant-e2e-shared-a-c1a1f4","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-21T18:45:37Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-21T18:45:37Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"f7ee9230-3c5b-46bf-8df0-502d9ee0cf83","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-21T18:45:38Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:58614","PortSpecifier":{"PortValue":58614}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.64:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","method":"POST","path":"/ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4/v1/completions","host":"e2e-shared-a-c1a1f4.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-21T18:45:38Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:58614","PortSpecifier":{"PortValue":58614}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.64:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784659538,"nanos":462273575},"http":{"id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","method":"POST","headers":{":authority":"e2e-shared-a-c1a1f4.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-21T18:45:38Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-v1coCbR9pddY5UlR_8V4QP2DdDjMpHrOPTLfgf2yjqo21QY1bIVns1vODbw0"} {"level":"debug","ts":"2026-07-21T18:45:38Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-c1a1f4.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-v1coCbR9pddY5UlR_8V4QP2DdDjMpHrOPTLfgf2yjqo21QY1bIVns1vODbw0\"}"} {"level":"debug","ts":"2026-07-21T18:45:38Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","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-c1a1f4.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":"697db632-86f3-4e4e-84c4-5c21e83ada56","keyName":"e2e-rate-a-76895f","subscription":"e2e-rate-iso-a-76895f","tenant":"e2e-shared-a-c1a1f4","userId":"697db632-86f3-4e4e-84c4-5c21e83ada56","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-21T18:45:38Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-c1a1f4.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-c1a1f4/rate-test-model-c1a1f4\",\"requestedSubscription\":\"e2e-rate-iso-a-76895f\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-21T18:45:38Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","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-c1a1f4.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-c1a1f4","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-76895f","namespace":"ai-tenant-e2e-shared-a-c1a1f4","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4"}} {"level":"debug","ts":"2026-07-21T18:45:38Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-21T18:45:38Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","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-21T18:45:38Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","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-21T18:45:38Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-c1a1f4/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-21T18:45:38Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","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-21T18:45:38Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","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-21T18:45:38Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","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-76895f"} {"level":"debug","ts":"2026-07-21T18:45:38Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","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-21T18:45:38Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"keyName","Value":{}},{"Name":"userid","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"groups","Value":{}},{"Name":"keyId","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"subscription_info","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":"697db632-86f3-4e4e-84c4-5c21e83ada56","keyName":"e2e-rate-a-76895f","selected_subscription":"e2e-rate-iso-a-76895f","selected_subscription_key":"ai-tenant-e2e-shared-a-c1a1f4/e2e-rate-iso-a-76895f@ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"name":"rate-test-model-c1a1f4","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-76895f","namespace":"ai-tenant-e2e-shared-a-c1a1f4","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-21T18:45:38Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-21T18:45:38Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"a2486fae-bbfd-48f3-81ea-c738c2a68bd7","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"57cc8f67-c419-4453-aa3c-55eb04d0831f","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:34418","PortSpecifier":{"PortValue":34418}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.64:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"57cc8f67-c419-4453-aa3c-55eb04d0831f","method":"POST","path":"/maas-api/v1/api-keys","host":"e2e-shared-a-c1a1f4.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"57cc8f67-c419-4453-aa3c-55eb04d0831f","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:34418","PortSpecifier":{"PortValue":34418}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.64:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784659551,"nanos":358653480},"http":{"id":"57cc8f67-c419-4453-aa3c-55eb04d0831f","method":"POST","headers":{":authority":"e2e-shared-a-c1a1f4.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.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-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.identity.kubernetesauth","msg":"calling kubernetes token review api","request id":"57cc8f67-c419-4453-aa3c-55eb04d0831f","tokenreview":{"name":""}} {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"57cc8f67-c419-4453-aa3c-55eb04d0831f","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":"6cf15397-3f7a-48d5-8be3-184cd5b901a7","groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"extra":{"authentication.kubernetes.io/credential-id":["JTI=cb211bb6-ad78-4c4f-a4ea-80ea7f4ba156"]}},"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/dab273b9bd08"]}} {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"57cc8f67-c419-4453-aa3c-55eb04d0831f","input":{"auth":{"identity":{"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/dab273b9bd08"],"authenticated":true,"user":{"extra":{"authentication.kubernetes.io/credential-id":["JTI=cb211bb6-ad78-4c4f-a4ea-80ea7f4ba156"]},"groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"uid":"6cf15397-3f7a-48d5-8be3-184cd5b901a7","username":"system:serviceaccount:default:tester-regular-user"}}},"context":{"context_extensions":{"host":"9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118"},"destination":{"address":{"Address":{"SocketAddress":{"PortSpecifier":{"PortValue":443},"address":"10.133.0.64:443"}}}},"metadata_context":{},"request":{"http":{"headers":{":authority":"e2e-shared-a-c1a1f4.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.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-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"57cc8f67-c419-4453-aa3c-55eb04d0831f","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-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"57cc8f67-c419-4453-aa3c-55eb04d0831f","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-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"57cc8f67-c419-4453-aa3c-55eb04d0831f","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-c1a1f4/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-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.response","msg":"cannot build dynamic response","request id":"57cc8f67-c419-4453-aa3c-55eb04d0831f","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":"keyName","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"keyId","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"groups","Value":{}}]},"Plain":null},"reason":"no such key: metadata"} {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"57cc8f67-c419-4453-aa3c-55eb04d0831f","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-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"57cc8f67-c419-4453-aa3c-55eb04d0831f","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-21T18:45:51Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"57cc8f67-c419-4453-aa3c-55eb04d0831f","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"57cc8f67-c419-4453-aa3c-55eb04d0831f","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"1030fb4d-a5c4-424d-981a-9bd93faedfe6","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:43560","PortSpecifier":{"PortValue":43560}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.65:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"1030fb4d-a5c4-424d-981a-9bd93faedfe6","method":"POST","path":"/maas-api/v1/api-keys","host":"e2e-shared-b-0be774.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"1030fb4d-a5c4-424d-981a-9bd93faedfe6","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:43560","PortSpecifier":{"PortValue":43560}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.65:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784659551,"nanos":401897377},"http":{"id":"1030fb4d-a5c4-424d-981a-9bd93faedfe6","method":"POST","headers":{":authority":"e2e-shared-b-0be774.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.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-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.identity.kubernetesauth","msg":"calling kubernetes token review api","request id":"1030fb4d-a5c4-424d-981a-9bd93faedfe6","tokenreview":{"name":""}} {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"1030fb4d-a5c4-424d-981a-9bd93faedfe6","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":"6cf15397-3f7a-48d5-8be3-184cd5b901a7","groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"extra":{"authentication.kubernetes.io/credential-id":["JTI=cb211bb6-ad78-4c4f-a4ea-80ea7f4ba156"]}},"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/dab273b9bd08"]}} {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"1030fb4d-a5c4-424d-981a-9bd93faedfe6","input":{"auth":{"identity":{"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/dab273b9bd08"],"authenticated":true,"user":{"extra":{"authentication.kubernetes.io/credential-id":["JTI=cb211bb6-ad78-4c4f-a4ea-80ea7f4ba156"]},"groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"uid":"6cf15397-3f7a-48d5-8be3-184cd5b901a7","username":"system:serviceaccount:default:tester-regular-user"}}},"context":{"context_extensions":{"host":"3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0"},"destination":{"address":{"Address":{"SocketAddress":{"PortSpecifier":{"PortValue":443},"address":"10.133.0.65:443"}}}},"metadata_context":{},"request":{"http":{"headers":{":authority":"e2e-shared-b-0be774.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.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-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"1030fb4d-a5c4-424d-981a-9bd93faedfe6","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-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"1030fb4d-a5c4-424d-981a-9bd93faedfe6","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-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"1030fb4d-a5c4-424d-981a-9bd93faedfe6","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-b-0be774/rate-test-model-0be774\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-b-0be774/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-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.response","msg":"cannot build dynamic response","request id":"1030fb4d-a5c4-424d-981a-9bd93faedfe6","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":"subscription_error_message","Value":{}},{"Name":"groups","Value":{}},{"Name":"keyName","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"userid","Value":{}}]},"Plain":null},"reason":"no such key: metadata"} {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"1030fb4d-a5c4-424d-981a-9bd93faedfe6","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-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"1030fb4d-a5c4-424d-981a-9bd93faedfe6","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-21T18:45:51Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"1030fb4d-a5c4-424d-981a-9bd93faedfe6","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"1030fb4d-a5c4-424d-981a-9bd93faedfe6","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:34432","PortSpecifier":{"PortValue":34432}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.64:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","method":"POST","path":"/ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4/v1/completions","host":"e2e-shared-a-c1a1f4.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:34432","PortSpecifier":{"PortValue":34432}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.64:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784659551,"nanos":450153511},"http":{"id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","method":"POST","headers":{":authority":"e2e-shared-a-c1a1f4.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-exHprMzcPoI7tfui_WVxeRXNFvkV5kt9lljKbVhg8HbTZRkovMMyTDDxLaAt"} {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-c1a1f4.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-exHprMzcPoI7tfui_WVxeRXNFvkV5kt9lljKbVhg8HbTZRkovMMyTDDxLaAt\"}"} {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","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-c1a1f4.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":"f2ea0978-6cb0-4900-8a65-ccf7aa49c1e3","keyName":"e2e-rate-a-66514a","subscription":"e2e-rate-iso-a-66514a","tenant":"e2e-shared-a-c1a1f4","userId":"f2ea0978-6cb0-4900-8a65-ccf7aa49c1e3","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-c1a1f4.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-c1a1f4/rate-test-model-c1a1f4\",\"requestedSubscription\":\"e2e-rate-iso-a-66514a\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","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-c1a1f4.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-c1a1f4","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-66514a","namespace":"ai-tenant-e2e-shared-a-c1a1f4","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4"}} {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","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-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","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-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","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-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-c1a1f4/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-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","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-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","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-66514a"} {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","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-21T18:45:51Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"keyName","Value":{}},{"Name":"userid","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"groups","Value":{}},{"Name":"keyId","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"subscription_info","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":"f2ea0978-6cb0-4900-8a65-ccf7aa49c1e3","keyName":"e2e-rate-a-66514a","selected_subscription":"e2e-rate-iso-a-66514a","selected_subscription_key":"ai-tenant-e2e-shared-a-c1a1f4/e2e-rate-iso-a-66514a@ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"name":"rate-test-model-c1a1f4","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-66514a","namespace":"ai-tenant-e2e-shared-a-c1a1f4","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-21T18:45:51Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"126d68d9-ac6e-4ad5-a575-42691d49ce44","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-21T18:45:52Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"b67113fe-df81-4ad7-bbf2-e5f799198184","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:34448","PortSpecifier":{"PortValue":34448}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.64:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"b67113fe-df81-4ad7-bbf2-e5f799198184","method":"POST","path":"/ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4/v1/completions","host":"e2e-shared-a-c1a1f4.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-21T18:45:52Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"b67113fe-df81-4ad7-bbf2-e5f799198184","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:34448","PortSpecifier":{"PortValue":34448}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.64:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784659552,"nanos":501711588},"http":{"id":"b67113fe-df81-4ad7-bbf2-e5f799198184","method":"POST","headers":{":authority":"e2e-shared-a-c1a1f4.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-21T18:45:52Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"b67113fe-df81-4ad7-bbf2-e5f799198184","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-exHprMzcPoI7tfui_WVxeRXNFvkV5kt9lljKbVhg8HbTZRkovMMyTDDxLaAt"} {"level":"debug","ts":"2026-07-21T18:45:52Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"b67113fe-df81-4ad7-bbf2-e5f799198184","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-c1a1f4.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-exHprMzcPoI7tfui_WVxeRXNFvkV5kt9lljKbVhg8HbTZRkovMMyTDDxLaAt\"}"} {"level":"debug","ts":"2026-07-21T18:45:52Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"b67113fe-df81-4ad7-bbf2-e5f799198184","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-c1a1f4.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":"f2ea0978-6cb0-4900-8a65-ccf7aa49c1e3","keyName":"e2e-rate-a-66514a","subscription":"e2e-rate-iso-a-66514a","tenant":"e2e-shared-a-c1a1f4","userId":"f2ea0978-6cb0-4900-8a65-ccf7aa49c1e3","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-21T18:45:52Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"b67113fe-df81-4ad7-bbf2-e5f799198184","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-c1a1f4.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-c1a1f4/rate-test-model-c1a1f4\",\"requestedSubscription\":\"e2e-rate-iso-a-66514a\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-21T18:45:52Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"b67113fe-df81-4ad7-bbf2-e5f799198184","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-c1a1f4.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-c1a1f4","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-66514a","namespace":"ai-tenant-e2e-shared-a-c1a1f4","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4"}} {"level":"debug","ts":"2026-07-21T18:45:52Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"b67113fe-df81-4ad7-bbf2-e5f799198184","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-21T18:45:52Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"b67113fe-df81-4ad7-bbf2-e5f799198184","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-21T18:45:52Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"b67113fe-df81-4ad7-bbf2-e5f799198184","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-21T18:45:52Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"b67113fe-df81-4ad7-bbf2-e5f799198184","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-c1a1f4/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-21T18:45:52Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"b67113fe-df81-4ad7-bbf2-e5f799198184","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-21T18:45:52Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"b67113fe-df81-4ad7-bbf2-e5f799198184","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-66514a"} {"level":"debug","ts":"2026-07-21T18:45:52Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"b67113fe-df81-4ad7-bbf2-e5f799198184","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-21T18:45:52Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"b67113fe-df81-4ad7-bbf2-e5f799198184","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-21T18:45:52Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"b67113fe-df81-4ad7-bbf2-e5f799198184","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"keyName","Value":{}},{"Name":"userid","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"groups","Value":{}},{"Name":"keyId","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"subscription_info","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":"f2ea0978-6cb0-4900-8a65-ccf7aa49c1e3","keyName":"e2e-rate-a-66514a","selected_subscription":"e2e-rate-iso-a-66514a","selected_subscription_key":"ai-tenant-e2e-shared-a-c1a1f4/e2e-rate-iso-a-66514a@ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"name":"rate-test-model-c1a1f4","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-66514a","namespace":"ai-tenant-e2e-shared-a-c1a1f4","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-21T18:45:52Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"b67113fe-df81-4ad7-bbf2-e5f799198184","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-21T18:45:52Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"b67113fe-df81-4ad7-bbf2-e5f799198184","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:34464","PortSpecifier":{"PortValue":34464}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.64:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","method":"POST","path":"/ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4/v1/completions","host":"e2e-shared-a-c1a1f4.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:34464","PortSpecifier":{"PortValue":34464}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.64:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784659553,"nanos":541348071},"http":{"id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","method":"POST","headers":{":authority":"e2e-shared-a-c1a1f4.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-exHprMzcPoI7tfui_WVxeRXNFvkV5kt9lljKbVhg8HbTZRkovMMyTDDxLaAt"} {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-c1a1f4.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-exHprMzcPoI7tfui_WVxeRXNFvkV5kt9lljKbVhg8HbTZRkovMMyTDDxLaAt\"}"} {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","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-c1a1f4.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":"f2ea0978-6cb0-4900-8a65-ccf7aa49c1e3","keyName":"e2e-rate-a-66514a","subscription":"e2e-rate-iso-a-66514a","tenant":"e2e-shared-a-c1a1f4","userId":"f2ea0978-6cb0-4900-8a65-ccf7aa49c1e3","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-c1a1f4.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-c1a1f4/rate-test-model-c1a1f4\",\"requestedSubscription\":\"e2e-rate-iso-a-66514a\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","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-c1a1f4.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-c1a1f4","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-66514a","namespace":"ai-tenant-e2e-shared-a-c1a1f4","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4"}} {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","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-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","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-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","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-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-c1a1f4/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-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","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-66514a"} {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","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-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","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-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"keyName","Value":{}},{"Name":"userid","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"groups","Value":{}},{"Name":"keyId","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"subscription_info","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":"f2ea0978-6cb0-4900-8a65-ccf7aa49c1e3","keyName":"e2e-rate-a-66514a","selected_subscription":"e2e-rate-iso-a-66514a","selected_subscription_key":"ai-tenant-e2e-shared-a-c1a1f4/e2e-rate-iso-a-66514a@ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"name":"rate-test-model-c1a1f4","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-66514a","namespace":"ai-tenant-e2e-shared-a-c1a1f4","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-c1a1f4/rate-test-model-c1a1f4"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"9f5ab819-aca8-4c46-ac93-1c55c5df6168","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:43568","PortSpecifier":{"PortValue":43568}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.65:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","method":"POST","path":"/ai-tenant-e2e-shared-b-0be774/rate-test-model-0be774/v1/completions","host":"e2e-shared-b-0be774.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.7:43568","PortSpecifier":{"PortValue":43568}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.133.0.65:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1784659553,"nanos":579891390},"http":{"id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","method":"POST","headers":{":authority":"e2e-shared-b-0be774.apps.09f1e23e-a8d5-467a-b7b2-dab273b9bd08.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-b-0be774/rate-test-model-0be774/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-1Crw5HW4QDUxQ2hbV_lPxk451si0swAlKh3YkwG5diZeqiNj00VCaFAluHQMy"} {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-b-0be774.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-1Crw5HW4QDUxQ2hbV_lPxk451si0swAlKh3YkwG5diZeqiNj00VCaFAluHQMy\"}"} {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","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-0be774.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":"7bc512eb-9165-4062-b88a-f4b3887cf26c","keyName":"e2e-rate-b-66514a","subscription":"e2e-rate-iso-b-66514a","tenant":"e2e-shared-b-0be774","userId":"7bc512eb-9165-4062-b88a-f4b3887cf26c","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-b-0be774.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-0be774/rate-test-model-0be774\",\"requestedSubscription\":\"e2e-rate-iso-b-66514a\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","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-0be774.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-0be774","source":"internal","token_rate_limits":[{"limit":100,"window":"1m"}]}],"name":"e2e-rate-iso-b-66514a","namespace":"ai-tenant-e2e-shared-b-0be774","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-b-0be774/rate-test-model-0be774"}} {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","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-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","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-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-b-0be774/rate-test-model-0be774\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-b-0be774/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-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","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-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","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-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","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-66514a"} {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","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-21T18:45:53Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","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":"keyName","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"groups","Value":{}},{"Name":"keyId","Value":{}},{"Name":"selected_subscription_key","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":"7bc512eb-9165-4062-b88a-f4b3887cf26c","keyName":"e2e-rate-b-66514a","selected_subscription":"e2e-rate-iso-b-66514a","selected_subscription_key":"ai-tenant-e2e-shared-b-0be774/e2e-rate-iso-b-66514a@ai-tenant-e2e-shared-b-0be774/rate-test-model-0be774","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"name":"rate-test-model-0be774","source":"internal","token_rate_limits":[{"limit":100,"window":"1m"}]}],"name":"e2e-rate-iso-b-66514a","namespace":"ai-tenant-e2e-shared-b-0be774","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-b-0be774/rate-test-model-0be774"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-21T18:45:53Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"0c627e51-0540-46f5-a359-cbd78f6a2d7e","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-21T18:46:01Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/06b470a060445ae34be21eb1bebb62becba9eaa134fd9af1c4aff15209a1ddda"} {"level":"info","ts":"2026-07-21T18:46:01Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/9dcf3e6d9216581b05ca972170fc921968d9afb1862d8dc38a6ebfe800c84118"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/bf108690e12cde1057d67a8a174cb679c68174bece6035e021fa54528175012c"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/f33ed5b2718f57a12552633f10fef4ba7ed0d5014fb9422c1d433c4dbed9b981"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/e580e42cffb86e1bd3598b53546b8361ff0618b76fe5499214710e1b531c1435"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/7359d910cbe84750877f4d682e6a0c07b654fbe7c5e389ba37150d52e43aa073"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/e6bd5df6f8fce00a8088502ad840a3c6ce73043a6a513f66a05ac798b0bfb571"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/62c2c37af5689b9dd97346022c847e02a3e51ff00b5db005f21d037bc83176c0"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/329c2499cca682510e312701b5a7d8a27306f45ea758b991f1b2105ea077a8c6"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/507cc06bc05d606d1c0a77fe236080b613173d35fc3972982d30cd50b5248280"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/3449c5baf2e15e1cfdf1f76dd714023fb5e2ee2fee3418464c4643555361a74c"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/832afe522ae9c5394a62282fcb35f1aceff22a93230c9debdc306b3ed997da1d"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/26f6be5bf65f6a58f6fd53c502888dab73a31c749ebc569a43ff7aec7967491e"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/ae22ad2f3fa2c8d4d503c596c6ff44b202224abe8c84a3eff8497c5d101c69be"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/9547a3b04581e2a5ea92f07a099b0eac25e279778a4b1e224e30a9b9ef935e90"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/3e72cb92ee8fa72c7e6dff26622db5fb84022cb35c24e7722010507c12b9a9c0"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/63691086b271d77edeacf23bfc9556e090c7ffdaafa7461e195d9a86ed50e35c"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/a026d5341a00292df29c04a916491e064c693ba173ce5ba94e635fe36485dcd1"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/9dd35e27311c7bb498d7e268fb64ebb5aa17090462b231a958d85df1036c094b"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/dffdf1ef88c607c1f40f8317524a10c061d30f150ee525cb378f69e177f79052"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/9eddd202d6ef1f4e4d5be95715ba914801f2b88f38544898955693159b3ae3d3"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/e17253d070edaf5b2e6c08ff5c85a5e72aaccf404856daca0c377c47700217bf"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/ed246f616520caa2bc4a37b69ac0a6bd5ded0a167f1892030d42e66647875793"} {"level":"info","ts":"2026-07-21T18:46:02Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/08bab116348f6788540f728986e5a688b2a1fc862e8dbff1c32425f3f0ddf657"}