@@ -97,6 +97,7 @@ class DeployableDetails(abc.ABC):
9797 has_db : bool = field (default = False , hash = False )
9898 has_image : bool = field (default = None , hash = False ) # type: ignore[assignment]
9999 has_ingress : bool = field (default = True , hash = False )
100+ has_automount_service_account_token : bool = field (default = False , hash = False )
100101 has_workloads : bool = field (default = True , hash = False )
101102 has_replicas : bool = field (default = None , hash = False ) # type: ignore[assignment]
102103 has_service_monitor : bool = field (default = None , hash = False ) # type: ignore[assignment]
@@ -410,6 +411,7 @@ def make_synapse_worker_sub_component(worker_name: str, worker_type: str) -> Sub
410411 },
411412 has_image = False ,
412413 has_ingress = False ,
414+ has_automount_service_account_token = True ,
413415 has_replicas = False ,
414416 has_service_monitor = False ,
415417 has_topology_spread_constraints = False ,
@@ -429,6 +431,7 @@ def make_synapse_worker_sub_component(worker_name: str, worker_type: str) -> Sub
429431 },
430432 has_image = False ,
431433 has_ingress = False ,
434+ has_automount_service_account_token = True ,
432435 has_replicas = False ,
433436 has_service_monitor = False ,
434437 has_topology_spread_constraints = False ,
@@ -531,6 +534,7 @@ def make_synapse_worker_sub_component(worker_name: str, worker_type: str) -> Sub
531534 PropertyType .StartupProbe : ValuesFilePath .not_supported (),
532535 },
533536 has_ingress = False ,
537+ has_automount_service_account_token = True ,
534538 has_replicas = False ,
535539 has_service_monitor = False ,
536540 has_topology_spread_constraints = False ,
0 commit comments