Hi @noorbasha534 ,
To restrict developers from selecting Photon in job clusters, you need to define a cluster policy that enforces constraints on the "runtime_engine" field.
{
"runtime_engine": {
"type": "fixed",
"value": "STANDARD",
"hidden": true
}
}
โขThe "type": "fixed" ensures that users cannot modify this value.
โข The "value": "STANDARD" forces clusters to only use the Standard runtime, effectively blocking Photon.
โขThe "hidden": true prevents developers from even seeing this option in the UI.
โI created a new policy called โtestโ to verify the restrictions, and as you can see, the option doesnโt appear in the menu! ๐ โ (Without hidden It will appear but you cant select it)

Hope this helps ๐
Isi