{"level":"debug","ts":"2026-07-28T21:16:24Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"631bd794-144b-4ce5-99ff-1591a0e3715b","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-96b3c5.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-96b3c5/rate-test-model-96b3c5\",\"requestedSubscription\":\"e2e-rate-iso-a-8ef2a0\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-28T21:16:24Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"631bd794-144b-4ce5-99ff-1591a0e3715b","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-96b3c5.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":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"}} {"level":"debug","ts":"2026-07-28T21:16:24Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"631bd794-144b-4ce5-99ff-1591a0e3715b","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:24Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"631bd794-144b-4ce5-99ff-1591a0e3715b","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-28T21:16:24Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"631bd794-144b-4ce5-99ff-1591a0e3715b","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-28T21:16:24Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"631bd794-144b-4ce5-99ff-1591a0e3715b","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-96b3c5/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-28T21:16:24Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"631bd794-144b-4ce5-99ff-1591a0e3715b","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-28T21:16:24Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"631bd794-144b-4ce5-99ff-1591a0e3715b","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-28T21:16:24Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"631bd794-144b-4ce5-99ff-1591a0e3715b","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-28T21:16:24Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"631bd794-144b-4ce5-99ff-1591a0e3715b","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-8ef2a0"} {"level":"debug","ts":"2026-07-28T21:16:24Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"631bd794-144b-4ce5-99ff-1591a0e3715b","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","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"keyId","Value":{}},{"Name":"keyName","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"subscription_error_message","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":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","keyName":"e2e-rate-a-8ef2a0","selected_subscription":"e2e-rate-iso-a-8ef2a0","selected_subscription_key":"ai-tenant-e2e-shared-a-96b3c5/e2e-rate-iso-a-8ef2a0@ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-28T21:16:24Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"631bd794-144b-4ce5-99ff-1591a0e3715b","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-28T21:16:24Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"631bd794-144b-4ce5-99ff-1591a0e3715b","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-28T21:16:25Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:48942","PortSpecifier":{"PortValue":48942}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.59:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","method":"POST","path":"/ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5/v1/completions","host":"e2e-shared-a-96b3c5.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-28T21:16:25Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:48942","PortSpecifier":{"PortValue":48942}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.59:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1785273385,"nanos":51133540},"http":{"id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","method":"POST","headers":{":authority":"e2e-shared-a-96b3c5.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:25Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-MYoviNA9PKrcu1yd_C6HupQAfDHcxIfP53JL4AYx9MvowCxikIXcWqGKDy5Z"} {"level":"debug","ts":"2026-07-28T21:16:25Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-96b3c5.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-MYoviNA9PKrcu1yd_C6HupQAfDHcxIfP53JL4AYx9MvowCxikIXcWqGKDy5Z\"}"} {"level":"debug","ts":"2026-07-28T21:16:25Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","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-96b3c5.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":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","keyName":"e2e-rate-a-8ef2a0","subscription":"e2e-rate-iso-a-8ef2a0","tenant":"e2e-shared-a-96b3c5","userId":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-28T21:16:25Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-96b3c5.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-96b3c5/rate-test-model-96b3c5\",\"requestedSubscription\":\"e2e-rate-iso-a-8ef2a0\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-28T21:16:25Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","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-96b3c5.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":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"}} {"level":"debug","ts":"2026-07-28T21:16:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","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-28T21:16:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","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-28T21:16:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","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-28T21:16:25Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-96b3c5/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-28T21:16:25Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","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-28T21:16:25Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","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-28T21:16:25Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","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-8ef2a0"} {"level":"debug","ts":"2026-07-28T21:16:25Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","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","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"keyId","Value":{}},{"Name":"keyName","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"subscription_error_message","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":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","keyName":"e2e-rate-a-8ef2a0","selected_subscription":"e2e-rate-iso-a-8ef2a0","selected_subscription_key":"ai-tenant-e2e-shared-a-96b3c5/e2e-rate-iso-a-8ef2a0@ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-28T21:16:25Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-28T21:16:25Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"b24fbd3c-84ea-4d27-8788-4dfdc5d9f03d","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-28T21:16:26Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"af8563da-9372-4773-ba31-718a5a4d2045","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:48952","PortSpecifier":{"PortValue":48952}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.59:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"af8563da-9372-4773-ba31-718a5a4d2045","method":"POST","path":"/ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5/v1/completions","host":"e2e-shared-a-96b3c5.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-28T21:16:26Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"af8563da-9372-4773-ba31-718a5a4d2045","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:48952","PortSpecifier":{"PortValue":48952}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.59:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1785273386,"nanos":94989166},"http":{"id":"af8563da-9372-4773-ba31-718a5a4d2045","method":"POST","headers":{":authority":"e2e-shared-a-96b3c5.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:26Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"af8563da-9372-4773-ba31-718a5a4d2045","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-MYoviNA9PKrcu1yd_C6HupQAfDHcxIfP53JL4AYx9MvowCxikIXcWqGKDy5Z"} {"level":"debug","ts":"2026-07-28T21:16:26Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"af8563da-9372-4773-ba31-718a5a4d2045","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-96b3c5.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-MYoviNA9PKrcu1yd_C6HupQAfDHcxIfP53JL4AYx9MvowCxikIXcWqGKDy5Z\"}"} {"level":"debug","ts":"2026-07-28T21:16:26Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"af8563da-9372-4773-ba31-718a5a4d2045","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-96b3c5.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":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","keyName":"e2e-rate-a-8ef2a0","subscription":"e2e-rate-iso-a-8ef2a0","tenant":"e2e-shared-a-96b3c5","userId":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-28T21:16:26Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"af8563da-9372-4773-ba31-718a5a4d2045","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-96b3c5.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-96b3c5/rate-test-model-96b3c5\",\"requestedSubscription\":\"e2e-rate-iso-a-8ef2a0\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-28T21:16:26Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"af8563da-9372-4773-ba31-718a5a4d2045","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-96b3c5.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":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"}} {"level":"debug","ts":"2026-07-28T21:16:26Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"af8563da-9372-4773-ba31-718a5a4d2045","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:26Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"af8563da-9372-4773-ba31-718a5a4d2045","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-28T21:16:26Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"af8563da-9372-4773-ba31-718a5a4d2045","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-28T21:16:26Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"af8563da-9372-4773-ba31-718a5a4d2045","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-96b3c5/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-28T21:16:26Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"af8563da-9372-4773-ba31-718a5a4d2045","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-28T21:16:26Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"af8563da-9372-4773-ba31-718a5a4d2045","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-8ef2a0"} {"level":"debug","ts":"2026-07-28T21:16:26Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"af8563da-9372-4773-ba31-718a5a4d2045","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-28T21:16:26Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"af8563da-9372-4773-ba31-718a5a4d2045","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-28T21:16:26Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"af8563da-9372-4773-ba31-718a5a4d2045","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","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"keyId","Value":{}},{"Name":"keyName","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"subscription_error_message","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":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","keyName":"e2e-rate-a-8ef2a0","selected_subscription":"e2e-rate-iso-a-8ef2a0","selected_subscription_key":"ai-tenant-e2e-shared-a-96b3c5/e2e-rate-iso-a-8ef2a0@ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-28T21:16:26Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"af8563da-9372-4773-ba31-718a5a4d2045","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-28T21:16:26Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"af8563da-9372-4773-ba31-718a5a4d2045","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-28T21:16:27Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"d8aa030e-1929-4b03-a231-e83c76a087dd","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:48968","PortSpecifier":{"PortValue":48968}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.59:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"d8aa030e-1929-4b03-a231-e83c76a087dd","method":"POST","path":"/ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5/v1/completions","host":"e2e-shared-a-96b3c5.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-28T21:16:27Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"d8aa030e-1929-4b03-a231-e83c76a087dd","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:48968","PortSpecifier":{"PortValue":48968}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.59:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1785273387,"nanos":141554085},"http":{"id":"d8aa030e-1929-4b03-a231-e83c76a087dd","method":"POST","headers":{":authority":"e2e-shared-a-96b3c5.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:27Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"d8aa030e-1929-4b03-a231-e83c76a087dd","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-MYoviNA9PKrcu1yd_C6HupQAfDHcxIfP53JL4AYx9MvowCxikIXcWqGKDy5Z"} {"level":"debug","ts":"2026-07-28T21:16:27Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"d8aa030e-1929-4b03-a231-e83c76a087dd","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-96b3c5.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-MYoviNA9PKrcu1yd_C6HupQAfDHcxIfP53JL4AYx9MvowCxikIXcWqGKDy5Z\"}"} {"level":"debug","ts":"2026-07-28T21:16:27Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"d8aa030e-1929-4b03-a231-e83c76a087dd","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-96b3c5.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":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","keyName":"e2e-rate-a-8ef2a0","subscription":"e2e-rate-iso-a-8ef2a0","tenant":"e2e-shared-a-96b3c5","userId":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-28T21:16:27Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"d8aa030e-1929-4b03-a231-e83c76a087dd","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-96b3c5.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-96b3c5/rate-test-model-96b3c5\",\"requestedSubscription\":\"e2e-rate-iso-a-8ef2a0\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-28T21:16:27Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"d8aa030e-1929-4b03-a231-e83c76a087dd","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-96b3c5.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":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"}} {"level":"debug","ts":"2026-07-28T21:16:27Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"d8aa030e-1929-4b03-a231-e83c76a087dd","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:27Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"d8aa030e-1929-4b03-a231-e83c76a087dd","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-28T21:16:27Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"d8aa030e-1929-4b03-a231-e83c76a087dd","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-28T21:16:27Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"d8aa030e-1929-4b03-a231-e83c76a087dd","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-96b3c5/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-28T21:16:27Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"d8aa030e-1929-4b03-a231-e83c76a087dd","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-28T21:16:27Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"d8aa030e-1929-4b03-a231-e83c76a087dd","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-8ef2a0"} {"level":"debug","ts":"2026-07-28T21:16:27Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"d8aa030e-1929-4b03-a231-e83c76a087dd","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-28T21:16:27Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"d8aa030e-1929-4b03-a231-e83c76a087dd","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-28T21:16:27Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"d8aa030e-1929-4b03-a231-e83c76a087dd","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","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"keyId","Value":{}},{"Name":"keyName","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"subscription_error_message","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":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","keyName":"e2e-rate-a-8ef2a0","selected_subscription":"e2e-rate-iso-a-8ef2a0","selected_subscription_key":"ai-tenant-e2e-shared-a-96b3c5/e2e-rate-iso-a-8ef2a0@ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-28T21:16:27Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"d8aa030e-1929-4b03-a231-e83c76a087dd","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-28T21:16:27Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"d8aa030e-1929-4b03-a231-e83c76a087dd","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-28T21:16:28Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:48984","PortSpecifier":{"PortValue":48984}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.59:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","method":"POST","path":"/ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5/v1/completions","host":"e2e-shared-a-96b3c5.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-28T21:16:28Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:48984","PortSpecifier":{"PortValue":48984}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.59:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1785273388,"nanos":185077716},"http":{"id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","method":"POST","headers":{":authority":"e2e-shared-a-96b3c5.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:28Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-MYoviNA9PKrcu1yd_C6HupQAfDHcxIfP53JL4AYx9MvowCxikIXcWqGKDy5Z"} {"level":"debug","ts":"2026-07-28T21:16:28Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-96b3c5.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-MYoviNA9PKrcu1yd_C6HupQAfDHcxIfP53JL4AYx9MvowCxikIXcWqGKDy5Z\"}"} {"level":"debug","ts":"2026-07-28T21:16:28Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","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-96b3c5.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":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","keyName":"e2e-rate-a-8ef2a0","subscription":"e2e-rate-iso-a-8ef2a0","tenant":"e2e-shared-a-96b3c5","userId":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-28T21:16:28Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-96b3c5.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-96b3c5/rate-test-model-96b3c5\",\"requestedSubscription\":\"e2e-rate-iso-a-8ef2a0\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-28T21:16:28Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","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-96b3c5.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":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"}} {"level":"debug","ts":"2026-07-28T21:16:28Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:28Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","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-28T21:16:28Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","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-28T21:16:28Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","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-28T21:16:28Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-96b3c5/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-28T21:16:28Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","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-28T21:16:28Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","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-28T21:16:28Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","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-8ef2a0"} {"level":"debug","ts":"2026-07-28T21:16:28Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","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","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"keyId","Value":{}},{"Name":"keyName","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"subscription_error_message","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":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","keyName":"e2e-rate-a-8ef2a0","selected_subscription":"e2e-rate-iso-a-8ef2a0","selected_subscription_key":"ai-tenant-e2e-shared-a-96b3c5/e2e-rate-iso-a-8ef2a0@ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-28T21:16:28Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-28T21:16:28Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"256f4f6e-c2d0-4ae1-bc74-db1d77743508","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-28T21:16:29Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:48988","PortSpecifier":{"PortValue":48988}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.59:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","method":"POST","path":"/ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5/v1/completions","host":"e2e-shared-a-96b3c5.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-28T21:16:29Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:48988","PortSpecifier":{"PortValue":48988}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.59:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1785273389,"nanos":224187121},"http":{"id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","method":"POST","headers":{":authority":"e2e-shared-a-96b3c5.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:29Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-MYoviNA9PKrcu1yd_C6HupQAfDHcxIfP53JL4AYx9MvowCxikIXcWqGKDy5Z"} {"level":"debug","ts":"2026-07-28T21:16:29Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-96b3c5.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-MYoviNA9PKrcu1yd_C6HupQAfDHcxIfP53JL4AYx9MvowCxikIXcWqGKDy5Z\"}"} {"level":"debug","ts":"2026-07-28T21:16:29Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","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-96b3c5.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":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","keyName":"e2e-rate-a-8ef2a0","subscription":"e2e-rate-iso-a-8ef2a0","tenant":"e2e-shared-a-96b3c5","userId":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-28T21:16:29Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-96b3c5.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-96b3c5/rate-test-model-96b3c5\",\"requestedSubscription\":\"e2e-rate-iso-a-8ef2a0\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-28T21:16:29Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","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-96b3c5.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":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"}} {"level":"debug","ts":"2026-07-28T21:16:29Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:29Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","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-28T21:16:29Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","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-28T21:16:29Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","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-28T21:16:29Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-96b3c5/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-28T21:16:29Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","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-28T21:16:29Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","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-8ef2a0"} {"level":"debug","ts":"2026-07-28T21:16:29Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","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-28T21:16:29Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","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","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"keyId","Value":{}},{"Name":"keyName","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"subscription_error_message","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":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","keyName":"e2e-rate-a-8ef2a0","selected_subscription":"e2e-rate-iso-a-8ef2a0","selected_subscription_key":"ai-tenant-e2e-shared-a-96b3c5/e2e-rate-iso-a-8ef2a0@ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-28T21:16:29Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-28T21:16:29Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"5af1c8d8-bc6f-48c6-ba42-c65db675c67c","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-28T21:16:30Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:48990","PortSpecifier":{"PortValue":48990}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.59:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","method":"POST","path":"/ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5/v1/completions","host":"e2e-shared-a-96b3c5.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-28T21:16:30Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:48990","PortSpecifier":{"PortValue":48990}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.59:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1785273390,"nanos":262569498},"http":{"id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","method":"POST","headers":{":authority":"e2e-shared-a-96b3c5.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:30Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-MYoviNA9PKrcu1yd_C6HupQAfDHcxIfP53JL4AYx9MvowCxikIXcWqGKDy5Z"} {"level":"debug","ts":"2026-07-28T21:16:30Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-96b3c5.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-MYoviNA9PKrcu1yd_C6HupQAfDHcxIfP53JL4AYx9MvowCxikIXcWqGKDy5Z\"}"} {"level":"debug","ts":"2026-07-28T21:16:30Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","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-96b3c5.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":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","keyName":"e2e-rate-a-8ef2a0","subscription":"e2e-rate-iso-a-8ef2a0","tenant":"e2e-shared-a-96b3c5","userId":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-28T21:16:30Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-96b3c5.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-96b3c5/rate-test-model-96b3c5\",\"requestedSubscription\":\"e2e-rate-iso-a-8ef2a0\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-28T21:16:30Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","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-96b3c5.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":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"}} {"level":"debug","ts":"2026-07-28T21:16:30Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:30Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","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-28T21:16:30Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","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-28T21:16:30Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-96b3c5/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-28T21:16:30Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","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-28T21:16:30Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","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-28T21:16:30Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","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-28T21:16:30Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","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-8ef2a0"} {"level":"debug","ts":"2026-07-28T21:16:30Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","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","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"keyId","Value":{}},{"Name":"keyName","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"subscription_error_message","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":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","keyName":"e2e-rate-a-8ef2a0","selected_subscription":"e2e-rate-iso-a-8ef2a0","selected_subscription_key":"ai-tenant-e2e-shared-a-96b3c5/e2e-rate-iso-a-8ef2a0@ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-28T21:16:30Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-28T21:16:30Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"b31a133a-86e9-4fa6-91da-f9a6a06417ae","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-28T21:16:31Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"afb111b3-db65-4f90-bbeb-87854cd127be","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:48998","PortSpecifier":{"PortValue":48998}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.59:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"afb111b3-db65-4f90-bbeb-87854cd127be","method":"POST","path":"/ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5/v1/completions","host":"e2e-shared-a-96b3c5.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-28T21:16:31Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"afb111b3-db65-4f90-bbeb-87854cd127be","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:48998","PortSpecifier":{"PortValue":48998}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.59:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1785273391,"nanos":300521311},"http":{"id":"afb111b3-db65-4f90-bbeb-87854cd127be","method":"POST","headers":{":authority":"e2e-shared-a-96b3c5.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:31Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"afb111b3-db65-4f90-bbeb-87854cd127be","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-MYoviNA9PKrcu1yd_C6HupQAfDHcxIfP53JL4AYx9MvowCxikIXcWqGKDy5Z"} {"level":"debug","ts":"2026-07-28T21:16:31Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"afb111b3-db65-4f90-bbeb-87854cd127be","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-96b3c5.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-MYoviNA9PKrcu1yd_C6HupQAfDHcxIfP53JL4AYx9MvowCxikIXcWqGKDy5Z\"}"} {"level":"debug","ts":"2026-07-28T21:16:31Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"afb111b3-db65-4f90-bbeb-87854cd127be","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-96b3c5.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":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","keyName":"e2e-rate-a-8ef2a0","subscription":"e2e-rate-iso-a-8ef2a0","tenant":"e2e-shared-a-96b3c5","userId":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-28T21:16:31Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"afb111b3-db65-4f90-bbeb-87854cd127be","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-96b3c5.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-96b3c5/rate-test-model-96b3c5\",\"requestedSubscription\":\"e2e-rate-iso-a-8ef2a0\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-28T21:16:31Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"afb111b3-db65-4f90-bbeb-87854cd127be","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-96b3c5.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":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"}} {"level":"debug","ts":"2026-07-28T21:16:31Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"afb111b3-db65-4f90-bbeb-87854cd127be","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:31Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"afb111b3-db65-4f90-bbeb-87854cd127be","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-28T21:16:31Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"afb111b3-db65-4f90-bbeb-87854cd127be","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-28T21:16:31Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"afb111b3-db65-4f90-bbeb-87854cd127be","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-96b3c5/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-28T21:16:31Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"afb111b3-db65-4f90-bbeb-87854cd127be","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-28T21:16:31Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"afb111b3-db65-4f90-bbeb-87854cd127be","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-28T21:16:31Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"afb111b3-db65-4f90-bbeb-87854cd127be","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-8ef2a0"} {"level":"debug","ts":"2026-07-28T21:16:31Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"afb111b3-db65-4f90-bbeb-87854cd127be","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-28T21:16:31Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"afb111b3-db65-4f90-bbeb-87854cd127be","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","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"keyId","Value":{}},{"Name":"keyName","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"subscription_error_message","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":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","keyName":"e2e-rate-a-8ef2a0","selected_subscription":"e2e-rate-iso-a-8ef2a0","selected_subscription_key":"ai-tenant-e2e-shared-a-96b3c5/e2e-rate-iso-a-8ef2a0@ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-28T21:16:31Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"afb111b3-db65-4f90-bbeb-87854cd127be","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-28T21:16:31Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"afb111b3-db65-4f90-bbeb-87854cd127be","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-28T21:16:32Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"893b0976-5da3-4438-ac8d-844784b386bf","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:49002","PortSpecifier":{"PortValue":49002}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.59:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"893b0976-5da3-4438-ac8d-844784b386bf","method":"POST","path":"/ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5/v1/completions","host":"e2e-shared-a-96b3c5.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-28T21:16:32Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"893b0976-5da3-4438-ac8d-844784b386bf","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:49002","PortSpecifier":{"PortValue":49002}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.59:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1785273392,"nanos":337695975},"http":{"id":"893b0976-5da3-4438-ac8d-844784b386bf","method":"POST","headers":{":authority":"e2e-shared-a-96b3c5.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:32Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"893b0976-5da3-4438-ac8d-844784b386bf","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-MYoviNA9PKrcu1yd_C6HupQAfDHcxIfP53JL4AYx9MvowCxikIXcWqGKDy5Z"} {"level":"debug","ts":"2026-07-28T21:16:32Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"893b0976-5da3-4438-ac8d-844784b386bf","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-96b3c5.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-MYoviNA9PKrcu1yd_C6HupQAfDHcxIfP53JL4AYx9MvowCxikIXcWqGKDy5Z\"}"} {"level":"debug","ts":"2026-07-28T21:16:32Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"893b0976-5da3-4438-ac8d-844784b386bf","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-96b3c5.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":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","keyName":"e2e-rate-a-8ef2a0","subscription":"e2e-rate-iso-a-8ef2a0","tenant":"e2e-shared-a-96b3c5","userId":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-28T21:16:32Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"893b0976-5da3-4438-ac8d-844784b386bf","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-96b3c5.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-96b3c5/rate-test-model-96b3c5\",\"requestedSubscription\":\"e2e-rate-iso-a-8ef2a0\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-28T21:16:32Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"893b0976-5da3-4438-ac8d-844784b386bf","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-96b3c5.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":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"}} {"level":"debug","ts":"2026-07-28T21:16:32Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"893b0976-5da3-4438-ac8d-844784b386bf","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:32Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"893b0976-5da3-4438-ac8d-844784b386bf","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-28T21:16:32Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"893b0976-5da3-4438-ac8d-844784b386bf","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-28T21:16:32Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"893b0976-5da3-4438-ac8d-844784b386bf","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-96b3c5/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-28T21:16:32Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"893b0976-5da3-4438-ac8d-844784b386bf","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-28T21:16:32Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"893b0976-5da3-4438-ac8d-844784b386bf","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-28T21:16:32Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"893b0976-5da3-4438-ac8d-844784b386bf","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-28T21:16:32Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"893b0976-5da3-4438-ac8d-844784b386bf","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-8ef2a0"} {"level":"debug","ts":"2026-07-28T21:16:32Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"893b0976-5da3-4438-ac8d-844784b386bf","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","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"keyId","Value":{}},{"Name":"keyName","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"subscription_error_message","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":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","keyName":"e2e-rate-a-8ef2a0","selected_subscription":"e2e-rate-iso-a-8ef2a0","selected_subscription_key":"ai-tenant-e2e-shared-a-96b3c5/e2e-rate-iso-a-8ef2a0@ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-28T21:16:32Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"893b0976-5da3-4438-ac8d-844784b386bf","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-28T21:16:32Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"893b0976-5da3-4438-ac8d-844784b386bf","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"c3227672-b584-4f4a-a95a-487801a8d40a","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:49016","PortSpecifier":{"PortValue":49016}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.59:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"c3227672-b584-4f4a-a95a-487801a8d40a","method":"POST","path":"/ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5/v1/completions","host":"e2e-shared-a-96b3c5.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"c3227672-b584-4f4a-a95a-487801a8d40a","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:49016","PortSpecifier":{"PortValue":49016}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.59:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1785273393,"nanos":383459595},"http":{"id":"c3227672-b584-4f4a-a95a-487801a8d40a","method":"POST","headers":{":authority":"e2e-shared-a-96b3c5.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"c3227672-b584-4f4a-a95a-487801a8d40a","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-MYoviNA9PKrcu1yd_C6HupQAfDHcxIfP53JL4AYx9MvowCxikIXcWqGKDy5Z"} {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"c3227672-b584-4f4a-a95a-487801a8d40a","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-a-96b3c5.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-MYoviNA9PKrcu1yd_C6HupQAfDHcxIfP53JL4AYx9MvowCxikIXcWqGKDy5Z\"}"} {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"c3227672-b584-4f4a-a95a-487801a8d40a","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-96b3c5.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":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","keyName":"e2e-rate-a-8ef2a0","subscription":"e2e-rate-iso-a-8ef2a0","tenant":"e2e-shared-a-96b3c5","userId":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"c3227672-b584-4f4a-a95a-487801a8d40a","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-a-96b3c5.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-96b3c5/rate-test-model-96b3c5\",\"requestedSubscription\":\"e2e-rate-iso-a-8ef2a0\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"c3227672-b584-4f4a-a95a-487801a8d40a","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-96b3c5.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":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"}} {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"c3227672-b584-4f4a-a95a-487801a8d40a","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"c3227672-b584-4f4a-a95a-487801a8d40a","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-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"c3227672-b584-4f4a-a95a-487801a8d40a","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-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"c3227672-b584-4f4a-a95a-487801a8d40a","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-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"c3227672-b584-4f4a-a95a-487801a8d40a","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-a-96b3c5/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-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"c3227672-b584-4f4a-a95a-487801a8d40a","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-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"c3227672-b584-4f4a-a95a-487801a8d40a","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-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"c3227672-b584-4f4a-a95a-487801a8d40a","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-8ef2a0"} {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"c3227672-b584-4f4a-a95a-487801a8d40a","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","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"keyId","Value":{}},{"Name":"keyName","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"subscription_error_message","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":"d5b0c089-0ebb-4333-af38-09354dcb9a2d","keyName":"e2e-rate-a-8ef2a0","selected_subscription":"e2e-rate-iso-a-8ef2a0","selected_subscription_key":"ai-tenant-e2e-shared-a-96b3c5/e2e-rate-iso-a-8ef2a0@ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"model_name":"publishers/ai-tenant-e2e-shared-a-96b3c5/models/facebook/opt-125m","name":"rate-test-model-96b3c5","source":"internal","token_rate_limits":[{"limit":3,"window":"1m"}]}],"name":"e2e-rate-iso-a-8ef2a0","namespace":"ai-tenant-e2e-shared-a-96b3c5","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-a-96b3c5/rate-test-model-96b3c5"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"c3227672-b584-4f4a-a95a-487801a8d40a","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"c3227672-b584-4f4a-a95a-487801a8d40a","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:60888","PortSpecifier":{"PortValue":60888}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.134.0.32:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","method":"POST","path":"/ai-tenant-e2e-shared-b-4e7a7a/rate-test-model-4e7a7a/v1/completions","host":"e2e-shared-b-4e7a7a.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:60888","PortSpecifier":{"PortValue":60888}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.134.0.32:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1785273393,"nanos":426201473},"http":{"id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","method":"POST","headers":{":authority":"e2e-shared-b-4e7a7a.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-shared-b-4e7a7a/rate-test-model-4e7a7a/v1/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-MPtevgfi7j8GSRXw_HgRc2sWXJ2ILE3x8RfdQO5mJWliGOcKQN1JSgr58Nj2"} {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-shared-b-4e7a7a.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-MPtevgfi7j8GSRXw_HgRc2sWXJ2ILE3x8RfdQO5mJWliGOcKQN1JSgr58Nj2\"}"} {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","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-4e7a7a.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":"e385a453-17d6-4992-af2b-c4b9710b2c58","keyName":"e2e-rate-b-8ef2a0","subscription":"e2e-rate-iso-b-8ef2a0","tenant":"e2e-shared-b-4e7a7a","userId":"e385a453-17d6-4992-af2b-c4b9710b2c58","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-shared-b-4e7a7a.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-4e7a7a/rate-test-model-4e7a7a\",\"requestedSubscription\":\"e2e-rate-iso-b-8ef2a0\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","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-4e7a7a.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":[{"model_name":"publishers/ai-tenant-e2e-shared-b-4e7a7a/models/facebook/opt-125m","name":"rate-test-model-4e7a7a","source":"internal","token_rate_limits":[{"limit":100,"window":"1m"}]}],"name":"e2e-rate-iso-b-8ef2a0","namespace":"ai-tenant-e2e-shared-b-4e7a7a","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-b-4e7a7a/rate-test-model-4e7a7a"}} {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","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-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","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-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-shared-b-4e7a7a/rate-test-model-4e7a7a\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-shared-b-4e7a7a/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-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","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-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","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-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","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-8ef2a0"} {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","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-28T21:16:33Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"groups","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"userid","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"keyId","Value":{}},{"Name":"keyName","Value":{}},{"Name":"subscription_error","Value":{}}]},"Plain":null},"object":{"groups":["system:authenticated","system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"groups_str":"system:authenticated,system:serviceaccounts,system:serviceaccounts:default,system:authenticated","keyId":"e385a453-17d6-4992-af2b-c4b9710b2c58","keyName":"e2e-rate-b-8ef2a0","selected_subscription":"e2e-rate-iso-b-8ef2a0","selected_subscription_key":"ai-tenant-e2e-shared-b-4e7a7a/e2e-rate-iso-b-8ef2a0@ai-tenant-e2e-shared-b-4e7a7a/rate-test-model-4e7a7a","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"model_name":"publishers/ai-tenant-e2e-shared-b-4e7a7a/models/facebook/opt-125m","name":"rate-test-model-4e7a7a","source":"internal","token_rate_limits":[{"limit":100,"window":"1m"}]}],"name":"e2e-rate-iso-b-8ef2a0","namespace":"ai-tenant-e2e-shared-b-4e7a7a","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-shared-b-4e7a7a/rate-test-model-4e7a7a"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-28T21:16:33Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"22c9e287-ff3a-4e5b-b563-f09dc6a42e95","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-28T21:16:39Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/d00840b9f5a1d6fab1901799d949b88385fd4bf8fc7a0e42997e33a0afe92ef1"} {"level":"info","ts":"2026-07-28T21:16:40Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/2ed36ed6645150fa8d0d5ecc19e65ab6d7c42d6ccf09b39222c8bc583d318fc8"} {"level":"info","ts":"2026-07-28T21:16:40Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/c7fd94425c4b5acbbad2f16b7b6eb6f47e6349577c14cb4567c9b1e9159de7c8"} {"level":"info","ts":"2026-07-28T21:16:40Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/69becc9bf2f864399f9828d68d9f450359f088e60ce92d4f88b9a7c21c368799"} {"level":"info","ts":"2026-07-28T21:16:40Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/a0c92bd064f4e57745a6c7b709851c13b0250ba7838c4d9244d4ef34dcefa858"} {"level":"info","ts":"2026-07-28T21:16:40Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/1cc523e77ddaa9d8a1dcd5a83c2dd5569811e8d73eddd4173718bcb7d118be4a"} {"level":"info","ts":"2026-07-28T21:16:40Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/2f77bfe3663461aa8cdd331d31cdac7e9a6e167d9d2320c77bdf867b6a8d53f4"} {"level":"info","ts":"2026-07-28T21:16:40Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/ab0ea6bdbd34322e954eaf64008f50445503bc2d95366e6578e5e2acd134a694"} {"level":"info","ts":"2026-07-28T21:16:40Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/ec50e0b5624a6fb184fac63583881422fc3d2b980974a0d6b43eeca177d2f94a"} {"level":"info","ts":"2026-07-28T21:16:40Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/cff6da54f6aaffda25026877e212951326774d3db6a24ff224cff1aaae66d441"} {"level":"info","ts":"2026-07-28T21:16:40Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/830b5e576f0e2b366431fc474ff6021084bad8382cb9c2c57ffd334d9ad868ca"} {"level":"info","ts":"2026-07-28T21:16:40Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/59fea1137008502d5d6bcd7530a194dc5d68ed7e3384912beccc6fe06aafe7ff"} {"level":"info","ts":"2026-07-28T21:16:40Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/a6423663af23087735da1d9dd8de380c425d4206f38800069b9673c572849650"} {"level":"info","ts":"2026-07-28T21:16:40Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/04d92d81e2bd1de1eaa1fe58eaa66b9b9ca6bac8f679c23e9473804092f22875"} {"level":"info","ts":"2026-07-28T21:16:40Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/bc4d7cc0d8ea4f01e69d2e4724bec9303edd5f8f40c1e0cd523faa96152ec068"} {"level":"info","ts":"2026-07-28T21:16:40Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/e3cd4843885a4c88d575b0436b59e4e9d89be41d00146a0595ef05885083103e"} {"level":"info","ts":"2026-07-28T21:16:40Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/bc887eba03b28a5920603bc141451793844aeb42f55dfc4a5cbaea02fa4428e6"} {"level":"info","ts":"2026-07-28T21:16:40Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/d0dab2cdb00d29fface6d2ee62f030a3f3d6f80901021450e53764ccd5ad4ec1"} {"level":"info","ts":"2026-07-28T21:16:41Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/be9eb0e21e6599d3bdd3037a622d53e6dd0da385aeb8141dccb14dc9e4f66176"} {"level":"info","ts":"2026-07-28T21:16:41Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/983db5b0fcd925f8a4c353233af6913aa5a89dcb5d69a1df57553e87375bbdfd"} {"level":"info","ts":"2026-07-28T21:16:41Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/9371173fd19fc39fc611ea7f64b66adb3b4238b887317e698ee1009a731d066c"} {"level":"info","ts":"2026-07-28T21:16:41Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/57dcfc4af809487b2349be6b267e98bfc9cb81c9dffe1ce93d43f1995c8c282c"} {"level":"info","ts":"2026-07-28T21:16:41Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/0eaec8bb8801ed2dbf76515c3488749cff868c19718c12e4f6e97aa45d2b9815"} {"level":"info","ts":"2026-07-28T21:16:41Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/d884a321c21cc83b6dbdda621ac78d3e7c24e03e11f7c1eb37e611911e8f82cd"} {"level":"info","ts":"2026-07-28T21:17:58Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"1aa3a90e-b16a-4979-9f4c-0ef10bbb9dcb","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:51928","PortSpecifier":{"PortValue":51928}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.31:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"1aa3a90e-b16a-4979-9f4c-0ef10bbb9dcb","method":"POST","path":"/maas-api/v1/api-keys","host":"maas.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-28T21:17:58Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"1aa3a90e-b16a-4979-9f4c-0ef10bbb9dcb","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:51928","PortSpecifier":{"PortValue":51928}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.31:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1785273478,"nanos":6191416},"http":{"id":"1aa3a90e-b16a-4979-9f4c-0ef10bbb9dcb","method":"POST","headers":{":authority":"maas.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.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-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.identity.kubernetesauth","msg":"calling kubernetes token review api","request id":"1aa3a90e-b16a-4979-9f4c-0ef10bbb9dcb","tokenreview":{"name":""}} {"level":"debug","ts":"2026-07-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"1aa3a90e-b16a-4979-9f4c-0ef10bbb9dcb","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":"767f29c8-51b6-4fa4-a8d9-73f701692eda","groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"extra":{"authentication.kubernetes.io/credential-id":["JTI=919f7e05-8f15-4e05-8083-6ae7cccc6210"]}},"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/1e6e8ee91e9a"]}} {"level":"debug","ts":"2026-07-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"1aa3a90e-b16a-4979-9f4c-0ef10bbb9dcb","input":{"auth":{"identity":{"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/1e6e8ee91e9a"],"authenticated":true,"user":{"extra":{"authentication.kubernetes.io/credential-id":["JTI=919f7e05-8f15-4e05-8083-6ae7cccc6210"]},"groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"uid":"767f29c8-51b6-4fa4-a8d9-73f701692eda","username":"system:serviceaccount:default:tester-regular-user"}}},"context":{"context_extensions":{"host":"b64d1d3a1a41de71c5b05aa58c2da5025409dfbb29fbaa63fe6a7b8fb71bf42e"},"destination":{"address":{"Address":{"SocketAddress":{"PortSpecifier":{"PortValue":443},"address":"10.132.0.31:443"}}}},"metadata_context":{},"request":{"http":{"headers":{":authority":"maas.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.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-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"1aa3a90e-b16a-4979-9f4c-0ef10bbb9dcb","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-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"1aa3a90e-b16a-4979-9f4c-0ef10bbb9dcb","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-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"1aa3a90e-b16a-4979-9f4c-0ef10bbb9dcb","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"llm/facebook-opt-125m-simulated\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"llm/premium-simulated-simulated-premium\":{\"users\":[\"system:serviceaccount:premium-users-namespace:premium-service-account\"],\"groups\":[\"premium-user\"]},\"publishers/llm/models/facebook/opt-125m\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/llm/models/facebook/opt-125m-premium\":{\"users\":[\"system:serviceaccount:premium-users-namespace:premium-service-account\"],\"groups\":[\"premium-user\"]}}\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-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.response","msg":"cannot build dynamic response","request id":"1aa3a90e-b16a-4979-9f4c-0ef10bbb9dcb","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"subscription_error","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"keyName","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"groups","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"userid","Value":{}},{"Name":"keyId","Value":{}},{"Name":"selected_subscription","Value":{}}]},"Plain":null},"reason":"no such key: metadata"} {"level":"debug","ts":"2026-07-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"1aa3a90e-b16a-4979-9f4c-0ef10bbb9dcb","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-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"1aa3a90e-b16a-4979-9f4c-0ef10bbb9dcb","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-28T21:17:58Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"1aa3a90e-b16a-4979-9f4c-0ef10bbb9dcb","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-28T21:17:58Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"1aa3a90e-b16a-4979-9f4c-0ef10bbb9dcb","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-28T21:17:58Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:51936","PortSpecifier":{"PortValue":51936}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.31:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","method":"POST","path":"/llm/facebook-opt-125m-simulated/v1/chat/completions","host":"maas.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-28T21:17:58Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:51936","PortSpecifier":{"PortValue":51936}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.31:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1785273478,"nanos":53760949},"http":{"id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","method":"POST","headers":{":authority":"maas.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com",":method":"POST",":path":"/llm/facebook-opt-125m-simulated/v1/chat/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-1QZTL1qYMlQC2WJy2_H1I2LfMSd6SGEKVW0sm3l32R7h85N31aGU63c524iZW"} {"level":"debug","ts":"2026-07-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","config":"apiKeyValidation","method":"POST","url":"https://maas-api.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-1QZTL1qYMlQC2WJy2_H1I2LfMSd6SGEKVW0sm3l32R7h85N31aGU63c524iZW\"}"} {"level":"debug","ts":"2026-07-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","config":{"Name":"apiKeyValidation","Priority":0,"Conditions":{"Left":{},"Right":{"Left":null,"Right":null}},"Metrics":false,"Cache":{},"UserInfo":null,"UMA":null,"GenericHTTP":{"Endpoint":"https://maas-api.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":"4c10d572-b327-402e-b929-097e75863c41","keyName":"e2e-ipp-default","subscription":"simulator-subscription","tenant":"models-as-a-service","userId":"4c10d572-b327-402e-b929-097e75863c41","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","config":"subscription-info","method":"POST","url":"https://maas-api.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\":\"llm/facebook-opt-125m-simulated\",\"requestedSubscription\":\"simulator-subscription\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","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.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":{"description":"Free-tier subscription with 100 tokens/min rate limit","displayName":"Simulator Subscription (Free)","modelRefs":[{"description":"A simulated OPT-125M model for free-tier testing","display_name":"Facebook OPT 125M (Simulated)","model_name":"publishers/llm/models/facebook/opt-125m","name":"facebook-opt-125m-simulated","source":"internal","token_rate_limits":[{"limit":100,"window":"1m"}]}],"name":"simulator-subscription","namespace":"models-as-a-service","phase":"Active","priority":10,"ready":true,"resolvedModel":"llm/facebook-opt-125m-simulated"}} {"level":"debug","ts":"2026-07-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","input":{"auth":{"identity":"Bearer **** subscription with 100 tokens/min rate limit","displayName":"Simulator Subscription (Free)","modelRefs":[{"description":"A simulated OPT-125M model for free-tier testing","display_name":"Facebook OPT 125M (Simulated)","model_name":"publishers/llm/models/facebook/opt-125m","name":"facebook-opt-125m-simulated","source":"internal","token_rate_limits":[{"limit":100,"window":"1m"}]}],"name":"simulator-subscription","namespace":"models-as-a-service","phase":"Active","priority":10,"ready":true,"resolvedModel":"llm/facebook-opt-125m-simulated"}}},"context":{"context_extensions":{"host":"311b1be286674fd5684c9ac59b318287dade9769cfe4aeebd8c88e2dc6b72418"},"destination":{"address":{"Address":{"SocketAddress":{"PortSpecifier":{"PortValue":443},"address":"10.132.0.31:443"}}}},"metadata_context":{},"request":{"http":{"headers":{":authority":"maas.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com",":method":"POST",":path":"/llm/facebook-opt-125m-simulated/v1/chat/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","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-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","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-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"llm/facebook-opt-125m-simulated\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"llm/premium-simulated-simulated-premium\":{\"users\":[\"system:serviceaccount:premium-users-namespace:premium-service-account\"],\"groups\":[\"premium-user\"]},\"publishers/llm/models/facebook/opt-125m\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/llm/models/facebook/opt-125m-premium\":{\"users\":[\"system:serviceaccount:premium-users-namespace:premium-service-account\"],\"groups\":[\"premium-user\"]}}\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-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","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-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","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-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","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-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","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":"simulator-subscription"} {"level":"debug","ts":"2026-07-28T21:17:58Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"groups_str","Value":{}},{"Name":"keyName","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"groups","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"userid","Value":{}},{"Name":"keyId","Value":{}},{"Name":"subscription_error","Value":{}}]},"Plain":null},"object":{"groups":["system:authenticated","system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"groups_str":"system:authenticated,system:serviceaccounts,system:serviceaccounts:default,system:authenticated","keyId":"4c10d572-b327-402e-b929-097e75863c41","keyName":"e2e-ipp-default","selected_subscription":"simulator-subscription","selected_subscription_key":"models-as-a-service/simulator-subscription@llm/facebook-opt-125m-simulated","subscription_error":"","subscription_error_message":"","subscription_info":{"description":"Free-tier subscription with 100 tokens/min rate limit","displayName":"Simulator Subscription (Free)","modelRefs":[{"description":"A simulated OPT-125M model for free-tier testing","display_name":"Facebook OPT 125M (Simulated)","model_name":"publishers/llm/models/facebook/opt-125m","name":"facebook-opt-125m-simulated","source":"internal","token_rate_limits":[{"limit":100,"window":"1m"}]}],"name":"simulator-subscription","namespace":"models-as-a-service","phase":"Active","priority":10,"ready":true,"resolvedModel":"llm/facebook-opt-125m-simulated"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-28T21:17:58Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-28T21:17:58Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"c0ff2b4b-3fa8-4a5d-92ee-737b311d7a14","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"9efe533f8d455aeafd16460215715a7bafa34fdf13a8415ebce3c50000428958","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:23Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:23Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"9efe533f8d455aeafd16460215715a7bafa34fdf13a8415ebce3c50000428958","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9efe533f8d455aeafd16460215715a7bafa34fdf13a8415ebce3c50000428958","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"0fecd964866f3f5e7addf75cf441b2fdf107dbdefd94de45a4a39d32239fca89","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:23Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:23Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9efe533f8d455aeafd16460215715a7bafa34fdf13a8415ebce3c50000428958"} {"level":"info","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"0fecd964866f3f5e7addf75cf441b2fdf107dbdefd94de45a4a39d32239fca89","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"9efe533f8d455aeafd16460215715a7bafa34fdf13a8415ebce3c50000428958","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:23Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:23Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["9efe533f8d455aeafd16460215715a7bafa34fdf13a8415ebce3c50000428958"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/0fecd964866f3f5e7addf75cf441b2fdf107dbdefd94de45a4a39d32239fca89"} {"level":"info","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"9efe533f8d455aeafd16460215715a7bafa34fdf13a8415ebce3c50000428958","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"0fecd964866f3f5e7addf75cf441b2fdf107dbdefd94de45a4a39d32239fca89","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:23Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:23Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["0fecd964866f3f5e7addf75cf441b2fdf107dbdefd94de45a4a39d32239fca89"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9efe533f8d455aeafd16460215715a7bafa34fdf13a8415ebce3c50000428958"} {"level":"info","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"0fecd964866f3f5e7addf75cf441b2fdf107dbdefd94de45a4a39d32239fca89","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"9efe533f8d455aeafd16460215715a7bafa34fdf13a8415ebce3c50000428958","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"0fecd964866f3f5e7addf75cf441b2fdf107dbdefd94de45a4a39d32239fca89","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:23Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:23Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"0fecd964866f3f5e7addf75cf441b2fdf107dbdefd94de45a4a39d32239fca89","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"0fecd964866f3f5e7addf75cf441b2fdf107dbdefd94de45a4a39d32239fca89","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"0fecd964866f3f5e7addf75cf441b2fdf107dbdefd94de45a4a39d32239fca89","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/0fecd964866f3f5e7addf75cf441b2fdf107dbdefd94de45a4a39d32239fca89"} {"level":"debug","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"247868e104f008d389e854111cddb555259b1df7b4d30220b452513e000ba89b","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:23Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:23Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/9efe533f8d455aeafd16460215715a7bafa34fdf13a8415ebce3c50000428958"} {"level":"info","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"247868e104f008d389e854111cddb555259b1df7b4d30220b452513e000ba89b","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"0fecd964866f3f5e7addf75cf441b2fdf107dbdefd94de45a4a39d32239fca89","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"247868e104f008d389e854111cddb555259b1df7b4d30220b452513e000ba89b","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:23Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"247868e104f008d389e854111cddb555259b1df7b4d30220b452513e000ba89b","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/0fecd964866f3f5e7addf75cf441b2fdf107dbdefd94de45a4a39d32239fca89"} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"247868e104f008d389e854111cddb555259b1df7b4d30220b452513e000ba89b","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:23Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:23Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/247868e104f008d389e854111cddb555259b1df7b4d30220b452513e000ba89b"} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"247868e104f008d389e854111cddb555259b1df7b4d30220b452513e000ba89b","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"0fecd964866f3f5e7addf75cf441b2fdf107dbdefd94de45a4a39d32239fca89","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["0fecd964866f3f5e7addf75cf441b2fdf107dbdefd94de45a4a39d32239fca89"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"0fecd964866f3f5e7addf75cf441b2fdf107dbdefd94de45a4a39d32239fca89","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"247868e104f008d389e854111cddb555259b1df7b4d30220b452513e000ba89b","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"0fecd964866f3f5e7addf75cf441b2fdf107dbdefd94de45a4a39d32239fca89","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/247868e104f008d389e854111cddb555259b1df7b4d30220b452513e000ba89b"} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"7725a54673389f43a70a7f7716993bfde572a0b6418f88f7c9c6c538afbcb8cf","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/0fecd964866f3f5e7addf75cf441b2fdf107dbdefd94de45a4a39d32239fca89"} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"7725a54673389f43a70a7f7716993bfde572a0b6418f88f7c9c6c538afbcb8cf","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"247868e104f008d389e854111cddb555259b1df7b4d30220b452513e000ba89b","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["247868e104f008d389e854111cddb555259b1df7b4d30220b452513e000ba89b"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"247868e104f008d389e854111cddb555259b1df7b4d30220b452513e000ba89b","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"361691cb3cf7ca2cb6f0f6e3d036f2f916fd7ca76684740f92053c0bdb4aaa3a","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/7725a54673389f43a70a7f7716993bfde572a0b6418f88f7c9c6c538afbcb8cf"} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"361691cb3cf7ca2cb6f0f6e3d036f2f916fd7ca76684740f92053c0bdb4aaa3a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"7725a54673389f43a70a7f7716993bfde572a0b6418f88f7c9c6c538afbcb8cf","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["7725a54673389f43a70a7f7716993bfde572a0b6418f88f7c9c6c538afbcb8cf"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/361691cb3cf7ca2cb6f0f6e3d036f2f916fd7ca76684740f92053c0bdb4aaa3a"} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"7725a54673389f43a70a7f7716993bfde572a0b6418f88f7c9c6c538afbcb8cf","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"247868e104f008d389e854111cddb555259b1df7b4d30220b452513e000ba89b","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"361691cb3cf7ca2cb6f0f6e3d036f2f916fd7ca76684740f92053c0bdb4aaa3a","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["361691cb3cf7ca2cb6f0f6e3d036f2f916fd7ca76684740f92053c0bdb4aaa3a"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/7725a54673389f43a70a7f7716993bfde572a0b6418f88f7c9c6c538afbcb8cf"} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"361691cb3cf7ca2cb6f0f6e3d036f2f916fd7ca76684740f92053c0bdb4aaa3a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"7725a54673389f43a70a7f7716993bfde572a0b6418f88f7c9c6c538afbcb8cf","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"361691cb3cf7ca2cb6f0f6e3d036f2f916fd7ca76684740f92053c0bdb4aaa3a","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/247868e104f008d389e854111cddb555259b1df7b4d30220b452513e000ba89b"} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/361691cb3cf7ca2cb6f0f6e3d036f2f916fd7ca76684740f92053c0bdb4aaa3a"} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/7725a54673389f43a70a7f7716993bfde572a0b6418f88f7c9c6c538afbcb8cf"} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8"} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8"} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8"} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8"} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd"} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd"} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2"} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"error","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"failed to update the resource","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"},"error":"Operation cannot be fulfilled on authconfigs.authorino.kuadrant.io \"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2\": 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-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2"} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd"} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2"} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd"} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd"} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"42ce2474665abaf6a77b1483281e0bf7e355645cb7828fda9efaa2adfb351fb4","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/42ce2474665abaf6a77b1483281e0bf7e355645cb7828fda9efaa2adfb351fb4"} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"42ce2474665abaf6a77b1483281e0bf7e355645cb7828fda9efaa2adfb351fb4","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2"} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"42ce2474665abaf6a77b1483281e0bf7e355645cb7828fda9efaa2adfb351fb4","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["42ce2474665abaf6a77b1483281e0bf7e355645cb7828fda9efaa2adfb351fb4"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd"} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"42ce2474665abaf6a77b1483281e0bf7e355645cb7828fda9efaa2adfb351fb4","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"094265b1680d537439e69761b66e54792ae3d8a2d3b58311353bbc78f397dec0","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/42ce2474665abaf6a77b1483281e0bf7e355645cb7828fda9efaa2adfb351fb4"} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"094265b1680d537439e69761b66e54792ae3d8a2d3b58311353bbc78f397dec0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"42ce2474665abaf6a77b1483281e0bf7e355645cb7828fda9efaa2adfb351fb4","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"094265b1680d537439e69761b66e54792ae3d8a2d3b58311353bbc78f397dec0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"094265b1680d537439e69761b66e54792ae3d8a2d3b58311353bbc78f397dec0","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2"} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/094265b1680d537439e69761b66e54792ae3d8a2d3b58311353bbc78f397dec0"} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"094265b1680d537439e69761b66e54792ae3d8a2d3b58311353bbc78f397dec0","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["094265b1680d537439e69761b66e54792ae3d8a2d3b58311353bbc78f397dec0"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd"} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"094265b1680d537439e69761b66e54792ae3d8a2d3b58311353bbc78f397dec0","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"094265b1680d537439e69761b66e54792ae3d8a2d3b58311353bbc78f397dec0","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/42ce2474665abaf6a77b1483281e0bf7e355645cb7828fda9efaa2adfb351fb4"} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Unknown"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2"} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/094265b1680d537439e69761b66e54792ae3d8a2d3b58311353bbc78f397dec0"} {"level":"debug","ts":"2026-07-28T21:18:24Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:24Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64"} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64"} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758"} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64"} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758"} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64"} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758"} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64"} {"level":"error","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"failed to update the resource","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"},"error":"Operation cannot be fulfilled on authconfigs.authorino.kuadrant.io \"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758\": 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-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758"} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758"} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64"} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"False","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"HostsNotLinked","message":"No hosts linked to the resource"},{"type":"Ready","status":"False","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"Reconciling"}],"summary":{"ready":false,"hostsReady":[],"numHostsReady":"0/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758"} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758"} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758"} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status changed","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"},"authconfig/status":{"conditions":[{"type":"Available","status":"True","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"HostsLinked"},{"type":"Ready","status":"True","lastTransitionTime":"2026-07-28T21:18:25Z","reason":"Reconciled"}],"summary":{"ready":true,"hostsReady":["849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758"],"numHostsReady":"1/1","numIdentitySources":2,"numMetadataSources":2,"numAuthorizationPolicies":4,"numResponseItems":6,"festivalWristbandEnabled":false}}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status updated","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"}} {"level":"debug","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig.statusupdater","msg":"resource status did not change","authconfig":{"name":"849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758","namespace":"kuadrant-system"}} {"level":"info","ts":"2026-07-28T21:18:25Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource reconciled","authconfig":"kuadrant-system/849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758"} {"level":"info","ts":"2026-07-28T21:18:43Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"dc12ae97-edd7-40cb-ac88-fe2557144c2d","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:46746","PortSpecifier":{"PortValue":46746}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.134.0.38:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"dc12ae97-edd7-40cb-ac88-fe2557144c2d","method":"POST","path":"/maas-api/v1/api-keys","host":"e2e-ipp-a-d6ef24.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-28T21:18:43Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"dc12ae97-edd7-40cb-ac88-fe2557144c2d","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:46746","PortSpecifier":{"PortValue":46746}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.134.0.38:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1785273523,"nanos":143136834},"http":{"id":"dc12ae97-edd7-40cb-ac88-fe2557144c2d","method":"POST","headers":{":authority":"e2e-ipp-a-d6ef24.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.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-28T21:18:43Z","logger":"authorino.service.auth.authpipeline.identity.kubernetesauth","msg":"calling kubernetes token review api","request id":"dc12ae97-edd7-40cb-ac88-fe2557144c2d","tokenreview":{"name":""}} {"level":"debug","ts":"2026-07-28T21:18:43Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"dc12ae97-edd7-40cb-ac88-fe2557144c2d","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":"767f29c8-51b6-4fa4-a8d9-73f701692eda","groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"extra":{"authentication.kubernetes.io/credential-id":["JTI=919f7e05-8f15-4e05-8083-6ae7cccc6210"]}},"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/1e6e8ee91e9a"]}} {"level":"debug","ts":"2026-07-28T21:18:43Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"dc12ae97-edd7-40cb-ac88-fe2557144c2d","input":{"auth":{"identity":{"audiences":["https://prod-eaas-bucket.s3.us-east-1.amazonaws.com/1e6e8ee91e9a"],"authenticated":true,"user":{"extra":{"authentication.kubernetes.io/credential-id":["JTI=919f7e05-8f15-4e05-8083-6ae7cccc6210"]},"groups":["system:serviceaccounts","system:serviceaccounts:default","system:authenticated"],"uid":"767f29c8-51b6-4fa4-a8d9-73f701692eda","username":"system:serviceaccount:default:tester-regular-user"}}},"context":{"context_extensions":{"host":"26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2"},"destination":{"address":{"Address":{"SocketAddress":{"PortSpecifier":{"PortValue":443},"address":"10.134.0.38:443"}}}},"metadata_context":{},"request":{"http":{"headers":{":authority":"e2e-ipp-a-d6ef24.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.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-28T21:18:43Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"dc12ae97-edd7-40cb-ac88-fe2557144c2d","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-28T21:18:43Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"dc12ae97-edd7-40cb-ac88-fe2557144c2d","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-28T21:18:43Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"dc12ae97-edd7-40cb-ac88-fe2557144c2d","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-ipp-a-d6ef24/ipp-route-d6ef24\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-ipp-a-d6ef24/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-28T21:18:43Z","logger":"authorino.service.auth.authpipeline.response","msg":"cannot build dynamic response","request id":"dc12ae97-edd7-40cb-ac88-fe2557144c2d","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":"selected_subscription","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"subscription_info","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"subscription_error_message","Value":{}},{"Name":"userid","Value":{}},{"Name":"groups","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"keyId","Value":{}}]},"Plain":null},"reason":"no such key: metadata"} {"level":"debug","ts":"2026-07-28T21:18:43Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"dc12ae97-edd7-40cb-ac88-fe2557144c2d","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-28T21:18:43Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"dc12ae97-edd7-40cb-ac88-fe2557144c2d","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-28T21:18:43Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"dc12ae97-edd7-40cb-ac88-fe2557144c2d","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-28T21:18:43Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"dc12ae97-edd7-40cb-ac88-fe2557144c2d","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-28T21:18:45Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:54398","PortSpecifier":{"PortValue":54398}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.134.0.38:443","PortSpecifier":{"PortValue":443}}}}},"request":{"http":{"id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","method":"POST","path":"/ai-tenant-e2e-ipp-a-d6ef24/ipp-route-d6ef24/v1/chat/completions","host":"e2e-ipp-a-d6ef24.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com","scheme":"https"}}}} {"level":"debug","ts":"2026-07-28T21:18:45Z","logger":"authorino.service.auth","msg":"incoming authorization request","request id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","object":{"source":{"address":{"Address":{"SocketAddress":{"address":"10.132.0.11:54398","PortSpecifier":{"PortValue":54398}}}}},"destination":{"address":{"Address":{"SocketAddress":{"address":"10.134.0.38:443","PortSpecifier":{"PortValue":443}}}}},"request":{"time":{"seconds":1785273525,"nanos":208124508},"http":{"id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","method":"POST","headers":{":authority":"e2e-ipp-a-d6ef24.apps.5c7a9c43-e88f-4a6e-be0f-1e6e8ee91e9a.prod.konfluxeaas.com",":method":"POST",":path":"/ai-tenant-e2e-ipp-a-d6ef24/ipp-route-d6ef24/v1/chat/completions",":scheme":"https","accept":"*/*","accept-encoding":"gzip, deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:18:45Z","logger":"authorino.service.auth.authpipeline.identity","msg":"identity validated","request id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","config":{"Name":"api-keys","Priority":0,"Conditions":{"Left":{"Selector":"request.headers.authorization","Operator":5,"Value":"^Bearer **** sk-oai-K3Cnx5P3CMJ4xSmT_8W8c7z4GTh1svt6x7cdnRGlU9xGfebuyvVx05exoK1e"} {"level":"debug","ts":"2026-07-28T21:18:45Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","config":"apiKeyValidation","method":"POST","url":"https://maas-api-e2e-ipp-a-d6ef24.odh-ai-gateway-infra.svc.cluster.local:8443/internal/v1/api-keys/validate","headers":{"Content-Type":["application/json"]},"body":"{\"key\":\"sk-oai-K3Cnx5P3CMJ4xSmT_8W8c7z4GTh1svt6x7cdnRGlU9xGfebuyvVx05exoK1e\"}"} {"level":"debug","ts":"2026-07-28T21:18:45Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","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-ipp-a-d6ef24.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":"79c31358-ebc4-46de-baa9-e895bfd7842c","keyName":"e2e-ipp-d6ef24","subscription":"ipp-route-d6ef24-sub","tenant":"e2e-ipp-a-d6ef24","userId":"79c31358-ebc4-46de-baa9-e895bfd7842c","username":"system:serviceaccount:default:tester-regular-user","valid":true}} {"level":"debug","ts":"2026-07-28T21:18:45Z","logger":"authorino.service.auth.authpipeline.metadata.http","msg":"sending request","request id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","config":"subscription-info","method":"POST","url":"https://maas-api-e2e-ipp-a-d6ef24.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-ipp-a-d6ef24/ipp-route-d6ef24\",\"requestedSubscription\":\"ipp-route-d6ef24-sub\",\"username\":\"system:serviceaccount:default:tester-regular-user\"}"} {"level":"debug","ts":"2026-07-28T21:18:45Z","logger":"authorino.service.auth.authpipeline.metadata","msg":"fetched auth metadata","request id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","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-ipp-a-d6ef24.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":[{"model_name":"publishers/ai-tenant-e2e-ipp-a-d6ef24/models/facebook/opt-125m","name":"ipp-route-d6ef24","source":"internal","token_rate_limits":[{"limit":100,"window":"1m"}]}],"name":"ipp-route-d6ef24-sub","namespace":"ai-tenant-e2e-ipp-a-d6ef24","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-ipp-a-d6ef24/ipp-route-d6ef24"}} {"level":"debug","ts":"2026-07-28T21:18:45Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"evaluating for input","request id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","input":{"auth":{"identity":"Bearer **** deflate","authorization":"Bearer **** deflate","authorization":"Bearer **** {"level":"debug","ts":"2026-07-28T21:18:45Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","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-28T21:18:45Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","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-28T21:18:45Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","config":{"Name":"require-group-membership","Priority":0,"Conditions":{"Left":null,"Right":null},"Metrics":false,"Cache":{},"OPA":{"Rego":"\nmodel_access := {\"ai-tenant-e2e-ipp-a-d6ef24/ipp-route-d6ef24\":{\"users\":null,\"groups\":[\"system:authenticated\"]},\"publishers/ai-tenant-e2e-ipp-a-d6ef24/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-28T21:18:45Z","logger":"authorino.service.auth.authpipeline.authorization","msg":"access granted","request id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","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-28T21:18:45Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","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-28T21:18:45Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","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-28T21:18:45Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","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":"ipp-route-d6ef24-sub"} {"level":"debug","ts":"2026-07-28T21:18:45Z","logger":"authorino.service.auth.authpipeline.response","msg":"dynamic response built","request id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","config":{"Name":"identity","Priority":0,"Conditions":{"Left":null,"Right":null},"Wrapper":"envoyDynamicMetadata","WrapperKey":"identity","Metrics":true,"Cache":null,"Wristband":null,"DynamicJSON":{"Properties":[{"Name":"subscription_info","Value":{}},{"Name":"userid","Value":{}},{"Name":"groups_str","Value":{}},{"Name":"keyName","Value":{}},{"Name":"selected_subscription_key","Value":{}},{"Name":"groups","Value":{}},{"Name":"keyId","Value":{}},{"Name":"selected_subscription","Value":{}},{"Name":"subscription_error","Value":{}},{"Name":"subscription_error_message","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":"79c31358-ebc4-46de-baa9-e895bfd7842c","keyName":"e2e-ipp-d6ef24","selected_subscription":"ipp-route-d6ef24-sub","selected_subscription_key":"ai-tenant-e2e-ipp-a-d6ef24/ipp-route-d6ef24-sub@ai-tenant-e2e-ipp-a-d6ef24/ipp-route-d6ef24","subscription_error":"","subscription_error_message":"","subscription_info":{"modelRefs":[{"model_name":"publishers/ai-tenant-e2e-ipp-a-d6ef24/models/facebook/opt-125m","name":"ipp-route-d6ef24","source":"internal","token_rate_limits":[{"limit":100,"window":"1m"}]}],"name":"ipp-route-d6ef24-sub","namespace":"ai-tenant-e2e-ipp-a-d6ef24","phase":"Active","ready":true,"resolvedModel":"ai-tenant-e2e-ipp-a-d6ef24/ipp-route-d6ef24"},"userid":"system:serviceaccount:default:tester-regular-user"}} {"level":"info","ts":"2026-07-28T21:18:45Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","authorized":true,"response":"OK"} {"level":"debug","ts":"2026-07-28T21:18:45Z","logger":"authorino.service.auth","msg":"outgoing authorization response","request id":"4a6ad3ac-9e49-4151-9944-8ea549d6db13","authorized":true,"response":"OK"} {"level":"info","ts":"2026-07-28T21:19:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/247868e104f008d389e854111cddb555259b1df7b4d30220b452513e000ba89b"} {"level":"info","ts":"2026-07-28T21:19:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/d82a104b7d5307c4e5dcfbad854f7e61537448c8cd4670ef0552144413a236dd"} {"level":"info","ts":"2026-07-28T21:19:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/9efe533f8d455aeafd16460215715a7bafa34fdf13a8415ebce3c50000428958"} {"level":"info","ts":"2026-07-28T21:19:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/26d1a2330e53510cb94967163ad478b0dd6ec1539bc59404b0d28d13b0d9f2c2"} {"level":"info","ts":"2026-07-28T21:19:50Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/42ce2474665abaf6a77b1483281e0bf7e355645cb7828fda9efaa2adfb351fb4"} {"level":"info","ts":"2026-07-28T21:19:51Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/0fecd964866f3f5e7addf75cf441b2fdf107dbdefd94de45a4a39d32239fca89"} {"level":"info","ts":"2026-07-28T21:19:51Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/04d04b8f16f787f528817893110c766b4fdb2f89b325ef5111a42c28fe0de3e8"} {"level":"info","ts":"2026-07-28T21:19:51Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/849ddd32d54870f8d8b1c46e2545b165913854134916c9fda556e7a8b6fa3758"} {"level":"info","ts":"2026-07-28T21:19:51Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/b2e663fa18561e500bf901cdc747dca77d74cdce34c588055187cd831758ce64"} {"level":"info","ts":"2026-07-28T21:19:51Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/094265b1680d537439e69761b66e54792ae3d8a2d3b58311353bbc78f397dec0"} {"level":"info","ts":"2026-07-28T21:19:51Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/361691cb3cf7ca2cb6f0f6e3d036f2f916fd7ca76684740f92053c0bdb4aaa3a"} {"level":"info","ts":"2026-07-28T21:19:51Z","logger":"authorino.controller-runtime.manager.controller.authconfig","msg":"resource de-indexed","authconfig":"kuadrant-system/7725a54673389f43a70a7f7716993bfde572a0b6418f88f7c9c6c538afbcb8cf"}